/* ========================================
   TRANQUIL BASE - TECH FUTURISTIC DESIGN
   Comprehensive CSS Styles
   ======================================== */

/* ========================================
   CSS RESET & BASE STYLES
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0A0F1C 0%, #1A1F2E 50%, #0F1419 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ========================================
   TYPOGRAPHY - TECH FUTURISTIC
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #00FFFF 0%, #00D4FF 50%, #0099FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  color: #00FFFF;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  color: #00D4FF;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  color: #FFFFFF;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #B0B8C0;
  line-height: 1.8;
}

a {
  color: #00FFFF;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00D4FF;
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

strong {
  color: #FFFFFF;
  font-weight: 600;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #B0B8C0;
}

/* ========================================
   CONTAINER & LAYOUT
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */
header {
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 255, 255, 0.2);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 255, 255, 0.1);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
  transition: all 0.3s ease;
}

.logo:hover img {
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.8));
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #E0E0E0;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: block;
  position: relative;
  border: 1px solid transparent;
}

.nav-menu a:hover {
  color: #00FFFF;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
  color: #0A0F1C;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 255, 255, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0F1C 0%, #1A1F2E 100%);
  z-index: 1999;
  padding: 80px 24px 24px;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  border-left: 2px solid rgba(0, 255, 255, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 0, 100, 0.8);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 0, 100, 0.4);
}

.mobile-menu-close:hover {
  background: rgba(255, 0, 100, 1);
  transform: rotate(90deg) scale(1.1);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav a {
  color: #E0E0E0;
  font-size: 18px;
  font-weight: 500;
  padding: 16px;
  border-radius: 8px;
  background: rgba(0, 255, 255, 0.05);
  border: 1px solid rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(0, 255, 255, 0.15);
  border-color: rgba(0, 255, 255, 0.5);
  color: #00FFFF;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
  transform: translateX(8px);
}

/* ========================================
   BUTTONS - TECH FUTURISTIC
   ======================================== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
  color: #0A0F1C;
  border-color: #00FFFF;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.6);
  color: #0A0F1C;
}

.btn-secondary {
  background: rgba(0, 255, 255, 0.1);
  color: #00FFFF;
  border: 2px solid #00FFFF;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.2);
}

.btn-secondary:hover {
  background: rgba(0, 255, 255, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.4);
  color: #00FFFF;
}

.btn-link {
  background: transparent;
  color: #00FFFF;
  padding: 8px 16px;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.btn-link:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00FFFF;
}

.btn-large {
  padding: 18px 48px;
  font-size: 18px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);
  border-bottom: 2px solid rgba(0, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subheadline {
  font-size: 20px;
  color: #B0B8C0;
  margin-bottom: 32px;
  line-height: 1.6;
}

/* ========================================
   PAGE HERO
   ======================================== */
.page-hero {
  padding: 60px 20px 40px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 153, 255, 0.05) 100%);
  border-bottom: 2px solid rgba(0, 255, 255, 0.2);
  margin-bottom: 40px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: #00FFFF;
}

.breadcrumb span {
  color: #B0B8C0;
}

.last-updated {
  font-size: 14px;
  color: #808890;
  font-style: italic;
}

/* ========================================
   CARDS & GRIDS - FLEXBOX ONLY
   ======================================== */
.value-grid,
.service-cards,
.benefits-grid,
.collection-grid,
.tip-cards,
.principles-grid,
.tips-grid,
.cta-options,
.values-grid,
.stats-grid,
.contact-grid,
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.value-card,
.service-card,
.benefit-card,
.collection-card,
.tip-card,
.principle-card,
.tip-item,
.cta-option,
.value-card,
.stat-card,
.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: rgba(26, 31, 46, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  backdrop-filter: blur(10px);
}

.value-card:hover,
.service-card:hover,
.benefit-card:hover,
.collection-card:hover,
.tip-card:hover,
.principle-card:hover,
.cta-option:hover,
.contact-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
  background: rgba(26, 31, 46, 0.95);
}

.value-card img,
.benefit-card img,
.principle-card img,
.contact-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.service-card h3,
.value-card h3,
.benefit-card h3 {
  margin-bottom: 12px;
}

.service-card .price,
.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #00FFFF;
  margin: 16px 0;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.service-card .price span,
.pricing-card .price span {
  font-size: 18px;
  color: #B0B8C0;
}

.service-card .features,
.pricing-card .features-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.service-card .features li,
.pricing-card .features-list li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #B0B8C0;
}

.service-card .features li::before,
.pricing-card .features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00FFFF;
  font-weight: bold;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: 60px 20px;
  background: rgba(26, 31, 46, 0.5);
  margin-bottom: 60px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background: rgba(42, 47, 62, 0.9);
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  backdrop-filter: blur(10px);
}

.testimonial-card p {
  font-size: 16px;
  font-style: italic;
  color: #E0E0E0;
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
}

.testimonial-author strong {
  color: #00FFFF;
  font-size: 16px;
}

.testimonial-author span {
  color: #808890;
  font-size: 14px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
}

.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: rgba(0, 255, 255, 0.1);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  min-width: 150px;
}

.badge strong {
  font-size: 32px;
  color: #00FFFF;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.badge span {
  font-size: 14px;
  color: #B0B8C0;
  text-align: center;
}

/* ========================================
   STEPS & TIMELINE
   ======================================== */
.steps,
.steps-timeline,
.timeline {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: space-between;
}

.step,
.step-item,
.timeline-step {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  text-align: center;
  padding: 32px 24px;
  background: rgba(26, 31, 46, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  position: relative;
  transition: all 0.3s ease;
}

.step:hover,
.step-item:hover,
.timeline-step:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
  color: #0A0F1C;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0, 255, 255, 0.4);
}

.step h3,
.step-item h3,
.timeline-step h3 {
  margin: 16px 0 8px;
}

/* ========================================
   PRICING
   ======================================== */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  justify-content: center;
}

.pricing-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 300px;
  max-width: 380px;
  background: rgba(26, 31, 46, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
}

.pricing-card.featured {
  border-color: #00FFFF;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.4);
  background: rgba(26, 31, 46, 0.95);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00FFFF 0%, #0099FF 100%);
  border-radius: 12px 12px 0 0;
}

.pricing-card .badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
  color: #0A0F1C;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
  min-width: auto;
  flex-direction: row;
}

.payment-info,
.guarantee,
.trial-offer {
  text-align: center;
  margin-top: 24px;
  font-size: 14px;
  color: #B0B8C0;
}

/* ========================================
   CTA SECTIONS
   ======================================== */
.cta-banner,
.cta-next-steps,
.signup-cta,
.cta-invest,
.contact-cta {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 16px;
  text-align: center;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cta-banner h2,
.signup-cta h2 {
  position: relative;
  z-index: 1;
}

.cta-banner p,
.signup-cta p {
  position: relative;
  z-index: 1;
}

.cta-banner .cta-buttons,
.signup-cta .cta-buttons {
  position: relative;
  z-index: 1;
  justify-content: center;
}

.trust-element {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 16px;
  background: rgba(0, 255, 255, 0.1);
  border: 1px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  font-size: 14px;
  color: #00FFFF;
}

.benefit-summary {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.benefit-summary li {
  padding-left: 32px;
  position: relative;
  color: #E0E0E0;
  font-size: 16px;
}

.benefit-summary li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00FFFF;
  font-weight: bold;
  font-size: 20px;
}

/* ========================================
   LEGAL CONTENT
   ======================================== */
.legal-content {
  padding: 40px 20px;
}

.text-section {
  margin-bottom: 40px;
  padding: 32px;
  background: rgba(26, 31, 46, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  border-left: 4px solid #00FFFF;
}

.text-section h2 {
  margin-top: 0;
}

.text-section ul {
  margin: 16px 0;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.benefits-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #E0E0E0;
  font-size: 16px;
}

.benefits-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #00FFFF;
  font-weight: bold;
  font-size: 20px;
}

/* ========================================
   THANK YOU PAGE
   ======================================== */
.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
  color: #0A0F1C;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: bold;
  margin: 0 auto 24px;
  box-shadow: 0 8px 30px rgba(0, 255, 255, 0.5);
  animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.subheadline {
  font-size: 24px;
  color: #00FFFF;
  margin-bottom: 16px;
}

.confirmation-text {
  font-size: 16px;
  color: #B0B8C0;
  max-width: 600px;
  margin: 0 auto;
}

.suggestion-cards,
.nav-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.suggestion-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 350px;
  background: rgba(26, 31, 46, 0.8);
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 255, 255, 0.6);
  box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
}

.next-steps,
.while-you-wait,
.explore-more,
.return-navigation,
.navigation-back {
  padding: 40px 20px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-options,
.office-info {
  padding: 40px 20px;
}

.office-details {
  background: rgba(26, 31, 46, 0.6);
  border: 2px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto;
}

.office-text p {
  margin-bottom: 16px;
}

.appointment-note,
.response-time,
.note {
  font-size: 14px;
  color: #808890;
  font-style: italic;
  margin-top: 8px;
}

/* ========================================
   PREMIUM TEASER
   ======================================== */
.premium-teaser {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 153, 255, 0.1) 100%);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 16px;
  margin: 60px 0;
}

.teaser-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.price-display {
  font-size: 36px;
  font-weight: 700;
  color: #00FFFF;
  margin: 24px 0;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* ========================================
   FOOTER
   ======================================== */
footer {
  background: rgba(10, 15, 28, 0.95);
  border-top: 2px solid rgba(0, 255, 255, 0.2);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.5));
}

.tagline {
  font-size: 14px;
  color: #B0B8C0;
  line-height: 1.6;
}

.footer-col h4 {
  color: #00FFFF;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #B0B8C0;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: #00FFFF;
  padding-left: 4px;
}

.footer-col p {
  font-size: 14px;
  color: #B0B8C0;
  margin-bottom: 8px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(0, 255, 255, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.legal-links a {
  color: #808890;
  font-size: 13px;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: #00FFFF;
}

.copyright {
  font-size: 13px;
  color: #808890;
  text-align: center;
}

/* ========================================
   COOKIE CONSENT BANNER
   ======================================== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 15, 28, 0.98);
  backdrop-filter: blur(10px);
  border-top: 2px solid rgba(0, 255, 255, 0.3);
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-text {
  flex: 1 1 300px;
  color: #B0B8C0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
  color: #0A0F1C;
}

.cookie-btn-accept:hover {
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.4);
  transform: translateY(-2px);
}

.cookie-btn-reject {
  background: rgba(255, 0, 100, 0.2);
  color: #FF0064;
  border: 1px solid rgba(255, 0, 100, 0.4);
}

.cookie-btn-reject:hover {
  background: rgba(255, 0, 100, 0.3);
}

.cookie-btn-settings {
  background: rgba(0, 255, 255, 0.1);
  color: #00FFFF;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.cookie-btn-settings:hover {
  background: rgba(0, 255, 255, 0.2);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #0A0F1C 0%, #1A1F2E 100%);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 0, 100, 0.8);
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: rgba(255, 0, 100, 1);
  transform: rotate(90deg);
}

.cookie-category {
  margin: 24px 0;
  padding: 20px;
  background: rgba(26, 31, 46, 0.6);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 8px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.cookie-category h4 {
  margin: 0;
  color: #00FFFF;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(128, 136, 144, 0.3);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: linear-gradient(135deg, #00FFFF 0%, #0099FF 100%);
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cookie-toggle.active::after {
  transform: translateX(24px);
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: #B0B8C0;
  margin: 0;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/* ========================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ======================================== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .value-card,
  .service-card,
  .benefit-card,
  .collection-card,
  .tip-card,
  .principle-card,
  .tip-item,
  .cta-option,
  .stat-card,
  .contact-card,
  .pricing-card,
  .suggestion-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  .step,
  .step-item,
  .timeline-step {
    flex: 1 1 100%;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .service-card,
  .benefit-card,
  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step,
  .step-item,
  .timeline-step {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.section {
  animation: fadeIn 0.6s ease-out;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 32px;
}

.mb-4 {
  margin-bottom: 32px;
}

.pt-4 {
  padding-top: 32px;
}

.pb-4 {
  padding-bottom: 32px;
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
:focus-visible {
  outline: 2px solid #00FFFF;
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ========================================
   PRINT STYLES
   ======================================== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: black;
    text-shadow: none;
  }
}