@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --bg:       #F6F4EB; /* Hueso / Crema */
  --bg2:      #FFFFFF; /* Superficie pura */
  --bg3:      #FDFCF7; /* Card header cálido */
  --blue:     #1E5FA3; /* Azul Zafiro */
  --indigo:   #2B6CB0; /* Azul profundo */
  --cyan:     #3182CE;
  --green:    #059669; /* Verde esmeralda intenso */
  --orange:   #D95A11; /* Arcilla quemada */
  --text:     #1E293B; /* Pizarra oscuro / casi negro */
  --text2:    #475569; /* Gris oscuro */
  --text3:    #64748B; /* Gris medio */
  --border:   rgba(30, 41, 59, 0.12); /* Borde pizarra translúcido */
  --glass:    rgba(255, 255, 255, 0.75); /* Vidrio esmerilado blanco */
  --glass2:   rgba(255, 255, 255, 0.95); /* Vidrio muy opaco */
  --radius:   20px;
  --radius-lg:32px;
  --shadow:   0 15px 40px rgba(30, 41, 59, 0.08); /* Sombra oscura pero súper suave */
  --glow:     0 0 40px rgba(30, 95, 163, 0.15); /* Glow azul oscuro sutil */
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
ul { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── GLOW ORBS BACKGROUND ── */
body::before, body::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
body::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30, 95, 163,0.12) 0%, transparent 70%);
  top: -200px; right: -100px;
}
body::after {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43, 108, 176,0.1) 0%, transparent 70%);
  bottom: 200px; left: -150px;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 76px;
  display: flex; align-items: center;
  background: rgba(246, 244, 235, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(246, 244, 235, 0.98);
  box-shadow: 0 4px 30px rgba(30, 41, 59, 0.08);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 20px; color: #fff;
  box-shadow: 0 8px 20px rgba(30, 95, 163,0.4);
  transition: transform 0.3s ease;
}
.nav-logo:hover .nav-logo-icon { transform: rotate(-5deg) scale(1.1); }
.nav-logo-text { font-size: 20px; font-weight: 800; letter-spacing: -0.04em; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--text2); }
.nav-links a:hover { color: var(--text); }

.btn-primary {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #ffffff !important; padding: 11px 24px;
  border-radius: 12px; font-size: 14px; font-weight: 600;
  box-shadow: 0 4px 15px rgba(30, 95, 163,0.35);
  transition: all 0.3s ease;
}
.btn-primary::after {
  content: ''; position: absolute; top: -50%; left: -60%; width: 50px; height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  transition: all 0.5s ease;
}
.btn-primary:hover::after { left: 120%; }

.btn-driver {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--green), #047857);
  color: #ffffff !important; padding: 11px 20px;
  border-radius: 12px; font-size: 14px; font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
  transition: all 0.3s ease;
}
.btn-driver::after {
  content: ''; position: absolute; top: -50%; left: -60%; width: 50px; height: 200%;
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(30deg);
  transition: all 0.5s ease;
}
.btn-driver:hover::after { left: 120%; }

.btn-secondary {
  background: var(--glass2);
  color: var(--text); padding: 11px 24px;
  border-radius: 12px; font-size: 14px; font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}
.btn-secondary:hover { background: var(--glass); border-color: rgba(30, 95, 163,0.3); }

.nav-toggle {
  display: none; background: none; border: none;
  color: var(--text); cursor: pointer; padding: 8px;
}
.nav-toggle svg { display: block; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}

.hero-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 80px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(30, 95, 163,0.12);
  border: 1px solid rgba(30, 95, 163,0.25);
  color: var(--blue); padding: 6px 16px;
  border-radius: 100px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 28px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(5, 150, 105,0.8);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--blue) 0%, var(--indigo) 50%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px; color: var(--text2);
  line-height: 1.7; margin-bottom: 44px;
  max-width: 520px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-actions .btn-primary { padding: 16px 32px; font-size: 16px; border-radius: 14px; }
.hero-actions .btn-secondary { padding: 16px 28px; font-size: 16px; border-radius: 14px; }

.hero-visual {
  position: relative; display: flex;
  justify-content: center; align-items: center;
}
.hero-card-mockup {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  width: 100%; max-width: 380px;
  position: relative;
}
.hero-card-mockup::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(30, 95, 163,0.3), transparent, rgba(43, 108, 176,0.2));
  z-index: -1;
}
.mockup-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 28px;
}
.mockup-title { font-weight: 700; font-size: 16px; }
.mockup-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--green); font-weight: 600;
}
.mockup-status .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: pulse 2s infinite; }

.mockup-services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.mockup-service {
  background: var(--glass2); border-radius: 14px;
  padding: 16px; border: 1px solid var(--border);
  text-align: center; cursor: pointer;
  transition: all 0.3s ease;
}
.mockup-service:hover { background: rgba(30, 95, 163,0.1); border-color: rgba(30, 95, 163,0.3); transform: translateY(-2px); }
.mockup-service .icon { font-size: 28px; margin-bottom: 8px; display: block; }
.mockup-service span { font-size: 12px; font-weight: 600; color: var(--text2); }

.mockup-btn {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff; padding: 14px;
  border-radius: 14px; font-weight: 700; font-size: 14px;
}

.floating-badge {
  position: absolute;
  background: var(--glass2);
  border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 16px;
  backdrop-filter: blur(20px);
  font-size: 13px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  animation: float 4s ease-in-out infinite;
  z-index: 10;
}
.floating-badge.top { top: -20px; right: -20px; animation-delay: 0s; }
.floating-badge.bottom { bottom: -20px; left: -20px; animation-delay: 2s; }
.floating-badge .fb-icon { font-size: 20px; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ── STATS ── */
.stats-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative; z-index: 1;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 48px; }
.stat-item { text-align: center; }
.stat-number {
  font-size: 48px; font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text2); font-weight: 500; }

/* ── SECTIONS ── */
section { position: relative; z-index: 1; }
.section { padding: 120px 0; }
.section-tag {
  display: inline-block;
  background: rgba(43, 108, 176,0.12);
  border: 1px solid rgba(43, 108, 176,0.25);
  color: var(--indigo); padding: 5px 14px;
  border-radius: 100px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.5px; margin-bottom: 20px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800; letter-spacing: -0.04em;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px; color: var(--text2);
  max-width: 580px; line-height: 1.7;
  margin-bottom: 64px;
}
.centered { text-align: center; }
.centered .section-sub { margin-left: auto; margin-right: auto; }

/* ── WHY CARDS ── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  opacity: 0; transition: opacity 0.3s ease;
}
.why-card:hover { border-color: rgba(30, 95, 163,0.25); transform: translateY(-8px); background: var(--glass2); }
.why-card:hover::before { opacity: 1; }
.why-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 26px;
}
.why-icon.blue { background: rgba(30, 95, 163,0.15); }
.why-icon.green { background: rgba(5, 150, 105,0.15); }
.why-icon.orange { background: rgba(217, 90, 17,0.15); }
.why-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.why-card p { color: var(--text2); font-size: 15px; line-height: 1.7; }

/* ── SERVICES ── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  display: flex; flex-direction: column; gap: 16px;
  transition: all 0.4s ease;
  position: relative; overflow: hidden;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card-top { display: flex; align-items: center; gap: 20px; }
.service-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; flex-shrink: 0;
}
.service-icon-wrap.taxi { background: rgba(30, 95, 163,0.15); border: 1px solid rgba(30, 95, 163,0.2); }
.service-icon-wrap.grua { background: rgba(217, 90, 17,0.15); border: 1px solid rgba(217, 90, 17,0.2); }
.service-icon-wrap.mudanza { background: rgba(5, 150, 105,0.15); border: 1px solid rgba(5, 150, 105,0.2); }
.service-icon-wrap.reserva { background: rgba(43, 108, 176,0.15); border: 1px solid rgba(43, 108, 176,0.2); }
.service-name { font-size: 22px; font-weight: 700; }
.service-tag { font-size: 12px; color: var(--text2); font-weight: 500; }
.service-desc { font-size: 15px; color: var(--text2); line-height: 1.7; }
.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; color: var(--blue);
  margin-top: auto;
}
.service-link:hover { gap: 10px; }
.service-card.featured {
  background: linear-gradient(135deg, rgba(30, 95, 163,0.1), rgba(43, 108, 176,0.1));
  border-color: rgba(30, 95, 163,0.25);
}

/* ── CALCULATOR ── */
.calc-section { padding: 120px 0; }
.calc-wrapper {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: center;
  position: relative; overflow: hidden;
}
.calc-wrapper::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30, 95, 163,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.calc-label { font-size: 13px; font-weight: 600; color: var(--text2); margin-bottom: 10px; display: flex; justify-content: space-between; }
.calc-label strong { color: var(--blue); font-size: 14px; }
.range-slider {
  -webkit-appearance: none; width: 100%; height: 6px;
  border-radius: 10px; background: var(--border);
  outline: none; margin-bottom: 28px;
}
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px;
  border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--indigo));
  cursor: pointer; box-shadow: 0 4px 12px rgba(30, 95, 163,0.5);
}
.calc-result {
  background: linear-gradient(135deg, rgba(30, 95, 163,0.1), rgba(43, 108, 176,0.1));
  border: 1px solid rgba(30, 95, 163,0.2);
  border-radius: var(--radius);
  padding: 44px;
}
.calc-result-label { font-size: 12px; color: var(--text2); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.calc-amount {
  font-size: 60px; font-weight: 900; letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin: 8px 0 4px;
}
.calc-period { font-size: 13px; color: var(--text3); margin-bottom: 28px; }
.calc-breakdown {
  display: flex; gap: 32px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.calc-item span { font-size: 12px; color: var(--text2); display: block; margin-bottom: 4px; }
.calc-item strong { font-size: 20px; font-weight: 700; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all 0.3s ease;
}
.testimonial-card:hover { border-color: rgba(30, 95, 163,0.25); transform: translateY(-4px); }
.stars { color: var(--orange); margin-bottom: 20px; font-size: 16px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text2); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.avatar.blue { background: linear-gradient(135deg, var(--blue), var(--indigo)); }
.avatar.green { background: linear-gradient(135deg, var(--green), #059669); }
.avatar.orange { background: linear-gradient(135deg, var(--orange), #D97706); }
.author-name { font-size: 14px; font-weight: 700; }
.author-role { font-size: 12px; color: var(--text3); margin-top: 2px; }

/* ── CTA DESCARGA ── */
.cta-section {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(30, 95, 163,0.08), rgba(43, 108, 176,0.08));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(36px,4vw,56px); font-weight: 900; letter-spacing: -0.04em; margin-bottom: 20px; }
.cta-inner p { font-size: 18px; color: var(--text2); margin-bottom: 48px; line-height: 1.7; }
.download-buttons { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.dl-btn {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  color: #fff;
  border: none;
  border-radius: 16px; padding: 16px 32px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(30, 95, 163,0.35);
}
.dl-btn:hover { 
  transform: translateY(-3px); 
  box-shadow: 0 12px 35px rgba(30, 95, 163,0.5); 
}
.dl-btn svg { width: 32px; height: 32px; flex-shrink: 0; }
.dl-btn-text { text-align: left; }
.dl-btn-text small { display: block; font-size: 12px; color: rgba(255,255,255,0.8); }
.dl-btn-text strong { font-size: 19px; font-weight: 800; }

/* ── FOOTER ── */
footer {
  padding: 80px 0 40px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand p { font-size: 14px; color: var(--text2); margin-top: 16px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 20px; }
.footer-col li + li { margin-top: 12px; }
.footer-col a { font-size: 14px; color: var(--text2); }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 13px; color: var(--text3); }

/* ── WHATSAPP FLOTANTE ── */
.whatsapp-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 999;
  width: 60px; height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 30px rgba(37,211,102,0.35);
  transition: all 0.3s ease;
}
.whatsapp-float:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 15px 40px rgba(37,211,102,0.45); }

/* ── SCROLL REVEAL ── */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.9s cubic-bezier(0.2,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .calc-wrapper { padding: 40px; gap: 40px; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .calc-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 76px; left: 0; right: 0;
    background: rgba(246, 244, 235, 0.98);
    backdrop-filter: blur(20px);
    padding: 32px; gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .stat-number { font-size: 36px; }
  .calc-wrapper { padding: 28px; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ── CONDUCTOR TEASER (index.html) ── */
.conductor-teaser {
  padding: 120px 0;
  border-top: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(5, 150, 105,0.04), transparent);
}
.conductor-teaser-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.teaser-benefits {
  list-style: none; display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px;
}
.teaser-benefits li {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px; font-weight: 500; color: var(--text);
}
.tb-icon { font-size: 22px; flex-shrink: 0; }
.conductor-teaser-card {
  background: var(--glass);
  border: 1px solid rgba(5, 150, 105,0.2);
  border-radius: var(--radius-lg); padding: 40px;
  display: flex; flex-direction: column; gap: 18px;
}
.ctc-header { display: flex; justify-content: space-between; align-items: center; }
.ctc-result {
  background: linear-gradient(135deg, rgba(5, 150, 105,0.1), rgba(5, 150, 105,0.05));
  border: 1px solid rgba(5, 150, 105,0.2);
  border-radius: var(--radius); padding: 24px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.ctc-breakdown { display: flex; flex-direction: column; gap: 10px; text-align: right; }
.ctc-breakdown div { display: flex; flex-direction: column; }
.ctc-breakdown span { font-size: 11px; color: var(--text3); }
.ctc-breakdown strong { font-size: 16px; font-weight: 700; color: var(--green); }

@media (max-width: 768px) {
  .conductor-teaser-inner { grid-template-columns: 1fr; gap: 48px; }
}

/* ── FAQ ── */
.faq-grid { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: var(--glass); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; transition: all 0.3s ease; }
.faq-item.active { border-color: rgba(30, 95, 163,0.3); background: var(--glass2); }
.faq-question { width: 100%; padding: 24px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; color: var(--text); font-size: 16px; font-weight: 600; cursor: pointer; text-align: left; }
.faq-question svg { width: 20px; height: 20px; color: var(--blue); transition: transform 0.3s ease; }
.faq-item.active .faq-question svg { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 24px; color: var(--text2); font-size: 15px; line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 200px; padding: 0 24px 24px; }

/* ── LEGAL PAGES ── */
.legal-container { max-width: 800px; margin: 120px auto 60px; padding: 0 20px; }
.legal-card { background: var(--glass); border: 1px solid var(--border); border-radius: 20px; padding: 48px; box-shadow: var(--shadow); }
.legal-card h1 { font-size: 32px; font-weight: 800; margin-bottom: 12px; color: var(--text); }
.legal-card .updated { color: var(--text2); font-size: 14px; margin-bottom: 32px; border-bottom: 1px solid var(--border); padding-bottom: 24px; }
.legal-card h2 { font-size: 20px; color: var(--blue); margin: 32px 0 16px; font-weight: 700; }
.legal-card h3 { font-size: 16px; color: var(--text); margin: 24px 0 12px; font-weight: 600; }
.legal-card p, .legal-card ul { color: var(--text2); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.legal-card ul { padding-left: 24px; }
.legal-card a { color: var(--blue); text-decoration: none; }
.legal-card a:hover { text-decoration: underline; }
.hl { background: rgba(30, 95, 163,0.1); border-left: 4px solid var(--blue); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 24px 0; }
.hl p { color: var(--text); margin: 0; font-weight: 500; }
@media (max-width: 768px) { .legal-card { padding: 28px 20px; } .legal-card h1 { font-size: 26px; } }
