/* ============================================
   INTELIDO — Brand System
   Colors from official brand: Navy #1A3E5C, Teal #36B0B6, 
   Orange #F9A826, Yellow #FFEB3B
   ============================================ */

:root {
  /* Brand */
  --navy: #1A3E5C;
  --navy-dark: #0F2B43;
  --navy-50: #F3F7FA;
  --teal: #36B0B6;
  --teal-dark: #2A8A8F;
  --teal-soft: #E6F7F8;
  --orange: #F9A826;
  --orange-soft: #FFF4E0;
  --yellow: #FFEB3B;
  --yellow-soft: #FFFBEA;
  
  /* Neutrals */
  --white: #FFFFFF;
  --gray-50: #F9FAFB;
  --gray-100: #F4F6F8;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --text: #1A1A1A;
  --text-soft: #4B5563;
  --border: #E5E7EB;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26, 62, 92, 0.04);
  --shadow: 0 4px 16px rgba(26, 62, 92, 0.06);
  --shadow-md: 0 8px 24px rgba(26, 62, 92, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 62, 92, 0.10);
  --shadow-xl: 0 24px 60px rgba(26, 62, 92, 0.14);
  --shadow-2xl: 0 40px 80px rgba(26, 62, 92, 0.18);
  
  /* Fonts */
  --sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;
  --serif: 'Instrument Serif', Georgia, serif;
  
  /* Radii */
  --radius-sm: 8px;
  --radius: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;
  
  /* Spacing */
  --container: 1280px;
  --nav-height: 72px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; color: var(--navy); }
h1 { font-size: clamp(2.25rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.accent { color: var(--teal); font-style: italic; font-family: var(--serif); font-weight: 400; }
.orange { color: var(--orange); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  padding: 6px 14px;
  background: var(--teal-soft);
  border-radius: var(--radius-full);
  margin-bottom: 20px;
}

/* ============================================
   Navigation
   ============================================ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.2);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  transition: all 0.3s ease;
}
nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(255, 255, 255, 0.95); }
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.nav-logo img { height: 32px; width: auto; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--gray-700); transition: color 0.2s; }
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  background: var(--navy);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
}
.nav-cta:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* Language switcher */
.lang-switch { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  background: white;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s;
}
.lang-btn:hover { border-color: var(--teal); color: var(--navy); }
.lang-btn svg { width: 10px; height: 10px; transition: transform 0.2s; }
.lang-switch.open .lang-btn svg { transform: rotate(180deg); }
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.2s;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: flex;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: all 0.15s;
}
.lang-menu a:hover { background: var(--navy-50); color: var(--navy); }
.lang-menu a.active { background: var(--teal-soft); color: var(--teal-dark); font-weight: 600; }

.mobile-menu-btn { display: none; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    background: white;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  .mobile-menu-btn {
    display: flex;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--navy);
  }
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy-50) 0%, white 80%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(54, 176, 182, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(249, 168, 38, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-600);
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  font-weight: 700;
}
.hero-title .line { display: block; }
.hero-title .line:nth-child(2) { color: var(--teal); font-family: var(--serif); font-style: italic; font-weight: 400; }
.hero-title .line:nth-child(3) { color: var(--navy); }
.hero-subtitle {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 40px;
  max-width: 680px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-secondary {
  background: white;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: white;
  transform: translateY(-2px);
}
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  max-width: 680px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stat .stat-value {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
}
.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 0.02em;
}

@media (max-width: 640px) {
  .hero { padding: calc(var(--nav-height) + 60px) 0 80px; }
  .hero-stats { grid-template-columns: 1fr; gap: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
}

/* ============================================
   Sections - Shared
   ============================================ */
section { padding: 100px 0; position: relative; }
@media (max-width: 640px) { section { padding: 60px 0; } }

.section-header { text-align: center; max-width: 800px; margin: 0 auto 60px; }
.section-header.left { text-align: left; margin-left: 0; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-soft); font-size: 1.1rem; line-height: 1.6; }

/* ============================================
   Truth Section
   ============================================ */
.truth {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}
.truth h2 { color: white; max-width: 900px; }
.truth .accent { color: var(--teal); }
.truth-body {
  max-width: 800px;
  margin: 48px 0 0;
  font-size: clamp(1.1rem, 1.6vw, 1.25rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.truth-body p { margin-bottom: 24px; }
.truth-body p:last-child { color: var(--orange); font-weight: 500; }
.truth::before {
  content: '';
  position: absolute;
  top: 50%; right: -300px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(54, 176, 182, 0.3) 0%, transparent 70%);
  transform: translateY(-50%);
  pointer-events: none;
}

/* ============================================
   Products
   ============================================ */
.products { background: var(--gray-50); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 1024px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal);
}
.product-card.featured {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  border-color: var(--navy);
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}
.product-card.featured:hover { transform: scale(1.02) translateY(-6px); }
.product-card.featured h3 { color: white; }
.product-card.featured .product-tagline { color: rgba(255, 255, 255, 0.75); }
.product-card.featured .product-desc { color: rgba(255, 255, 255, 0.8); }
.product-card.featured .product-features li { color: rgba(255, 255, 255, 0.9); }
.product-card.featured .product-features svg { color: var(--teal); }
.product-card.featured .product-price-wrap { border-top-color: rgba(255, 255, 255, 0.15); }
.product-card.featured .product-price .currency { color: rgba(255, 255, 255, 0.6); }
.product-card.featured .product-price .amount { color: var(--teal); }
.product-card.featured .product-price-note { color: rgba(255, 255, 255, 0.6); }
.product-card.featured .product-cta { background: var(--teal); color: var(--navy-dark); }
.product-card.featured .product-cta:hover { background: white; }

.product-badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 6px 14px;
  background: var(--orange);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow);
}
.product-card.featured .product-badge { background: var(--yellow); }

.product-name {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
}
.product-tagline {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 24px;
}
.product-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 28px;
}
.product-features {
  list-style: none;
  margin-bottom: 32px;
  flex-grow: 1;
}
.product-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--text);
}
.product-features svg {
  width: 18px; height: 18px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.product-price-wrap {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  margin-bottom: 20px;
}
.product-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 4px;
}
.product-price .currency { font-size: 1.25rem; color: var(--gray-500); font-weight: 500; }
.product-price .amount { font-size: 3rem; font-weight: 700; color: var(--navy); letter-spacing: -0.03em; line-height: 1; }
.product-price .original {
  font-size: 1.1rem;
  color: var(--gray-400);
  text-decoration: line-through;
  margin-left: 10px;
  font-weight: 500;
}
.product-price-note {
  font-size: 0.8rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-cta {
  display: block;
  width: 100%;
  padding: 14px 24px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.2s;
}
.product-cta:hover { background: var(--navy-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.vat-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 32px;
  font-style: italic;
}

/* ============================================
   How It Works
   ============================================ */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; gap: 24px; } }

.how-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s ease;
}
.how-step:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  margin-bottom: 16px;
}
.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-time {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.step-desc { font-size: 0.95rem; color: var(--text-soft); line-height: 1.6; }

/* ============================================
   Languages / Locales
   ============================================ */
.languages {
  background: linear-gradient(135deg, var(--teal-soft) 0%, var(--navy-50) 100%);
  text-align: center;
}
.lang-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 48px auto 0;
}
.lang-pill {
  background: white;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
  cursor: default;
}
.lang-pill:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ============================================
   Reviews
   ============================================ */
.reviews { background: white; }
.review-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.review-rating { display: flex; align-items: center; gap: 12px; }
.review-rating .stars {
  display: inline-flex;
  gap: 2px;
}
.review-rating .stars svg { width: 24px; height: 24px; color: var(--orange); fill: var(--orange); }
.review-rating .avg { font-family: var(--serif); font-size: 2.5rem; color: var(--navy); }
.review-rating .count { color: var(--gray-500); font-size: 0.9rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.review-card {
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all 0.2s;
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  background: var(--teal);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}
.review-name { font-weight: 600; font-size: 0.95rem; color: var(--navy); }
.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--teal-dark);
  font-weight: 500;
}
.review-verified svg { width: 14px; height: 14px; }
.review-stars svg { width: 16px; height: 16px; color: var(--orange); fill: var(--orange); }
.review-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
  margin: 12px 0;
}
.review-date { font-size: 0.8rem; color: var(--gray-500); }
.review-product {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--navy);
  background: var(--teal-soft);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-top: 8px;
  font-weight: 500;
}

.reviews-empty {
  text-align: center;
  padding: 60px 32px;
  background: var(--gray-50);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto 32px;
  color: var(--text-soft);
}

.reviews-cta {
  text-align: center;
}

/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--gray-50); }
.faq-list {
  max-width: 840px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
}
.faq-item:hover { border-color: var(--teal); }
.faq-item[open] { border-color: var(--teal); box-shadow: var(--shadow); }
.faq-summary {
  list-style: none;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  color: var(--navy);
  font-size: 1rem;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--teal);
  transition: transform 0.2s;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] .faq-summary::after { transform: rotate(45deg); }
.faq-content {
  padding: 0 24px 20px;
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ============================================
   Final CTA
   ============================================ */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(54, 176, 182, 0.25) 0%, transparent 60%);
  transform: translateX(-50%);
  pointer-events: none;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: white; max-width: 800px; margin: 0 auto 24px; }
.final-cta .accent { color: var(--teal); }
.final-cta-sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.final-cta .btn-primary {
  background: var(--teal);
  color: var(--navy-dark);
}
.final-cta .btn-primary:hover { background: white; }

/* ============================================
   Footer
   ============================================ */
footer {
  background: var(--navy-dark);
  color: white;
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer-brand img { height: 36px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-tagline { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; line-height: 1.6; max-width: 320px; }
.footer-col h4 {
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   Cookie Consent
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  margin: 0 auto;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-2xl);
  padding: 24px;
  z-index: 200;
  transform: translateY(200%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show { transform: translateY(0); opacity: 1; }
.cookie-banner h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-actions button {
  flex: 1;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all 0.2s;
  white-space: nowrap;
}
.cookie-accept { background: var(--navy); color: white; }
.cookie-accept:hover { background: var(--navy-dark); }
.cookie-reject { background: var(--gray-100); color: var(--gray-700); }
.cookie-reject:hover { background: var(--gray-200); }
.cookie-customize { background: transparent; color: var(--gray-700); border: 1px solid var(--border) !important; }
.cookie-customize:hover { background: var(--gray-50); }

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.cookie-modal.show { opacity: 1; visibility: visible; }
.cookie-modal-content {
  background: white;
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: var(--radius-lg);
  padding: 32px;
}
.cookie-modal h3 { margin-bottom: 24px; }
.cookie-option {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cookie-option:last-of-type { border-bottom: none; }
.cookie-option-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.cookie-option-name { font-weight: 600; color: var(--navy); }
.cookie-option-desc { font-size: 0.85rem; color: var(--text-soft); }
.toggle {
  position: relative;
  width: 44px; height: 24px;
  background: var(--gray-300);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s;
}
.toggle.on { background: var(--teal); }
.toggle.disabled { background: var(--gray-400); cursor: not-allowed; }
.toggle::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 20px;
  background: white;
  border-radius: 50%;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle.on::after { transform: translateX(20px); }
.cookie-save {
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: white;
  border-radius: var(--radius-full);
  font-weight: 600;
  margin-top: 20px;
}
.cookie-save:hover { background: var(--navy-dark); }

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 0;
  animation: fadeInUp 0.6s ease forwards;
}
.animate-in.delay-1 { animation-delay: 0.1s; }
.animate-in.delay-2 { animation-delay: 0.2s; }
.animate-in.delay-3 { animation-delay: 0.3s; }

/* Screen reader only */
.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;
}
