:root {
  --bg: #0A2540;
  --bg-light: #F8FAFC;
  --fg: #ffffff;
  --fg-dark: #1E293B;
  --accent: #4A90E2;
  --accent-warm: #F5C842;
  --muted: #64748B;
  --muted-fg: #94A3B8;
  --secondary: #1E3A5F;
  --whatsapp: #25D366;
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font-family: inherit; }

.font-display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.01em; }
.italic { font-style: italic; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* Liquid glass */
.liquid-glass {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.1), 0 8px 32px rgba(10, 37, 64, 0.4);
}
.liquid-glass-dark {
  background: rgba(10, 37, 64, 0.6);
  backdrop-filter: blur(14px) saturate(180%);
  -webkit-backdrop-filter: blur(14px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 28px; border-radius: 999px; font-weight: 500; font-size: 15px; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; white-space: nowrap; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 24px rgba(74,144,226,.35); }
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 30px rgba(74,144,226,.5); }
.btn-glass { color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(12px) saturate(180%); border: 1px solid rgba(255,255,255,.16); }
.btn-glass:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }
.btn-whatsapp { background: var(--whatsapp); color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.btn-whatsapp:hover { transform: translateY(-2px) scale(1.02); }
.btn-warm { background: var(--accent-warm); color: var(--fg-dark); }

/* Eyebrow */
.eyebrow { font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500; opacity: .7; }
.eyebrow-accent { color: var(--accent); opacity: 1; }

/* Headings */
h1.display, h2.display, h3.display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.02em; line-height: 1.05; }

/* Sections */
section { position: relative; }
.bg-navy { background: var(--bg); color: var(--fg); }
.bg-secondary { background: var(--secondary); color: var(--fg); }
.bg-light { background: var(--bg-light); color: var(--fg-dark); }

.py-24 { padding-top: 96px; padding-bottom: 96px; }
.py-32 { padding-top: 128px; padding-bottom: 128px; }
@media (max-width: 767px) {
  .py-24, .py-32 { padding-top: 64px; padding-bottom: 64px; }
}

/* Fade rise */
.fade-rise { opacity: 0; transform: translateY(24px); transition: opacity .8s ease-out, transform .8s ease-out; }
.fade-rise.in { opacity: 1; transform: translateY(0); }

/* Navbar */
.nav { position: fixed; top: 16px; left: 50%; transform: translateX(-50%); z-index: 50; width: calc(100% - 32px); max-width: 1180px; border-radius: 999px; padding: 10px 14px 10px 22px; display: flex; align-items: center; justify-content: space-between; gap: 16px; transition: padding .3s ease, top .3s ease; }
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.nav-logo .lg-title { font-family: var(--font-display); font-size: 20px; }
.nav-logo .lg-sub { font-size: 10px; letter-spacing: .15em; text-transform: uppercase; opacity: .6; margin-top: 2px; }
.nav-items { display: none; gap: 28px; font-size: 14px; }
.nav-items a { opacity: .8; transition: opacity .2s; }
.nav-items a:hover { opacity: 1; }
@media (min-width: 900px) { .nav-items { display: flex; } }
.nav-cta { padding: 10px 18px; font-size: 14px; }
.hamburger { display: flex; flex-direction: column; gap: 4px; padding: 12px; border-radius: 999px; }
.hamburger span { width: 18px; height: 1.5px; background: #fff; display: block; }
@media (min-width: 900px) { .hamburger { display: none; } }
.mobile-drawer { position: fixed; top: 80px; left: 16px; right: 16px; padding: 24px; border-radius: 24px; z-index: 49; display: flex; flex-direction: column; gap: 12px; }
.mobile-drawer a { padding: 12px; font-size: 16px; }

/* Hero */
.hero { position: relative; min-height: 100vh; overflow: hidden; display: flex; align-items: center; padding-top: 120px; padding-bottom: 80px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,37,64,.45) 0%, rgba(10,37,64,.15) 35%, rgba(10,37,64,.55) 75%, rgba(10,37,64,.92) 100%); }
.hero-vignette { position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at 70% 50%, transparent 0%, rgba(10,37,64,.4) 80%); }
.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero h1 { font-family: var(--font-display); font-weight: 400; line-height: 0.96; letter-spacing: -0.025em; font-size: clamp(2.5rem, 7vw, 6rem); max-width: 16ch; }
.hero h1 em { font-style: italic; color: rgba(245,200,66,0.95); display: block; }
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.2rem); color: rgba(255,255,255,.78); max-width: 56ch; margin-top: 28px; line-height: 1.6; text-wrap: pretty; }
.hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.hero-trust { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 24px; align-items: center; color: rgba(255,255,255,.55); font-size: 13px; }
.hero-trust .dot { width: 4px; height: 4px; border-radius: 999px; background: rgba(255,255,255,.3); }
.eyebrow-hero { color: rgba(255,255,255,.7); margin-bottom: 28px; display: inline-flex; gap: 10px; align-items: center; padding: 8px 14px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; backdrop-filter: blur(8px); }

/* Cotizador */
.quoter-card { background: #fff; border-radius: 28px; padding: 32px; box-shadow: 0 20px 60px rgba(10,37,64,.08), 0 1px 0 rgba(10,37,64,.04); }
.quoter-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.quoter-select { width: 100%; padding: 18px 20px; border: 1.5px solid #E2E8F0; border-radius: 16px; font-size: 16px; color: var(--fg-dark); background: #fff; margin-top: 12px; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%2364748B' stroke-width='1.5' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 20px center; transition: border-color .2s; }
.quoter-select:focus { outline: none; border-color: var(--accent); }
.price-display { font-family: var(--font-display); font-size: clamp(3rem, 7vw, 4.5rem); color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
.price-sub { color: var(--muted); font-size: 14px; margin-top: 8px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border-radius: 999px; background: #F1F5F9; color: var(--fg-dark); font-size: 13px; font-weight: 500; }
.chip-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }

/* Trust band */
.trust-band { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
@media (min-width: 768px) { .trust-band { grid-template-columns: repeat(5, 1fr); gap: 0; } }
.trust-stat { text-align: center; padding: 0 12px; position: relative; }
@media (min-width: 768px) { .trust-stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 20%; bottom: 20%; width: 1px; background: rgba(255,255,255,.12); } }
.trust-num { font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 3rem); color: var(--accent-warm); line-height: 1; }
.trust-label { font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.65); margin-top: 12px; }

/* Reasons */
.reasons-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 768px) { .reasons-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.reason-card { background: #fff; border-radius: 24px; padding: 36px 32px; box-shadow: 0 12px 40px rgba(10,37,64,.06); transition: transform .3s; }
.reason-card:hover { transform: translateY(-4px); }
.reason-icon { width: 56px; height: 56px; border-radius: 16px; background: var(--bg); color: var(--accent-warm); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.reason-card h3 { font-family: var(--font-display); font-size: 28px; line-height: 1.1; margin-bottom: 12px; color: var(--fg-dark); letter-spacing: -0.01em; }
.reason-card p { color: var(--muted); line-height: 1.6; }

/* Products */
.product-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 700px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.product-card { padding: 28px; border-radius: 24px; transition: transform .3s; position: relative; min-height: 240px; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); }
.product-card .pc-tag { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.product-card h3 { font-family: var(--font-display); font-size: 26px; margin: 14px 0 12px; color: #fff; line-height: 1.1; }
.product-card p { color: rgba(255,255,255,.7); font-size: 14.5px; line-height: 1.55; flex-grow: 1; }
.product-card .pc-link { margin-top: 18px; color: var(--accent); font-size: 14px; font-weight: 500; display: inline-flex; gap: 6px; align-items: center; transition: gap .2s; }
.product-card:hover .pc-link { gap: 10px; }
.popular-badge { position: absolute; top: -10px; right: 18px; background: var(--accent-warm); color: var(--fg-dark); font-size: 11px; font-weight: 600; padding: 6px 14px; border-radius: 999px; letter-spacing: .05em; }

/* How it works */
.steps { display: grid; gap: 32px; grid-template-columns: 1fr; position: relative; }
@media (min-width: 900px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 48px; } }
.step { position: relative; }
.step-num { font-family: var(--font-display); font-style: italic; font-size: 80px; color: var(--accent); line-height: 0.9; opacity: .9; }
.step h3 { font-family: var(--font-display); font-size: 28px; color: var(--fg-dark); margin: 12px 0 12px; line-height: 1.15; }
.step p { color: var(--muted); }
.step-connector { display: none; }
@media (min-width: 900px) { .step-connector { display: block; position: absolute; top: 50px; right: -32px; width: 64px; border-top: 1.5px dashed rgba(74,144,226,0.35); } }

/* Quiz */
.quiz-card { max-width: 760px; margin: 0 auto; padding: 40px; border-radius: 28px; }
.quiz-progress { display: flex; gap: 6px; margin-bottom: 24px; }
.quiz-progress div { flex: 1; height: 4px; border-radius: 999px; background: rgba(255,255,255,.1); }
.quiz-progress div.active { background: var(--accent-warm); }
.quiz-q { font-family: var(--font-display); font-size: clamp(1.6rem, 3.2vw, 2.4rem); margin-bottom: 28px; line-height: 1.15; }
.quiz-options { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .quiz-options { grid-template-columns: repeat(2, 1fr); } }
.quiz-option { padding: 18px 22px; border-radius: 16px; border: 1.5px solid rgba(255,255,255,.12); background: rgba(255,255,255,.03); color: #fff; text-align: left; font-size: 15.5px; transition: all .25s; cursor: pointer; }
.quiz-option:hover { border-color: rgba(74,144,226,.6); background: rgba(74,144,226,.08); }
.quiz-option.selected { border-color: var(--accent); background: rgba(74,144,226,.18); }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 28px; gap: 12px; }
.quiz-nav button { padding: 12px 22px; border-radius: 999px; font-size: 14px; }
.quiz-nav .qn-back { background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); }
.quiz-nav .qn-back:disabled { opacity: .35; cursor: not-allowed; }
.quiz-nav .qn-next { background: var(--accent); color: #fff; }
.quiz-nav .qn-next:disabled { opacity: .4; cursor: not-allowed; }
.quiz-result { padding: 12px; }
.quiz-result-cards { display: grid; grid-template-columns: 1fr; gap: 16px; margin: 24px 0; }
@media (min-width: 700px) { .quiz-result-cards { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); } }
.quiz-result-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); padding: 22px; border-radius: 18px; }
.quiz-result-card .pc-tag { font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.quiz-result-card h4 { font-family: var(--font-display); font-size: 22px; margin: 8px 0; }
.quiz-result-card p { color: rgba(255,255,255,.6); font-size: 13.5px; }
.quiz-form { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 18px; }
.quiz-form input { flex: 1; min-width: 200px; padding: 14px 18px; border-radius: 999px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.15); color: #fff; font-size: 15px; }
.quiz-form input::placeholder { color: rgba(255,255,255,.4); }

/* Map */
.map-wrap { display: grid; gap: 32px; grid-template-columns: 1fr; align-items: stretch; }
@media (min-width: 900px) { .map-wrap { grid-template-columns: 3fr 2fr; gap: 32px; } }
.map-card { background: #fff; border: 1px solid rgba(226,232,240,.5); border-radius: 24px; padding: 48px; box-shadow: 0 1px 3px rgba(10,37,64,.04), 0 8px 24px rgba(10,37,64,.04); position: relative; }
@media (max-width: 700px) { .map-card { padding: 24px; } }
.map-card svg { width: 100%; height: auto; display: block; overflow: visible; }
.map-card svg path {
  stroke: #94A3B8; stroke-width: 1; cursor: pointer;
  transition: fill 200ms ease, stroke 200ms ease, stroke-width 200ms ease, opacity 200ms ease, transform 200ms ease;
  vector-effect: non-scaling-stroke; transform-origin: center; transform-box: fill-box;
  opacity: 0;
}
.map-card.in-view svg path { opacity: 1; }
.map-card svg path[data-tier="0"] { fill: #F1F5F9; }
.map-card svg path[data-tier="1"] { fill: #DBEAFE; }
.map-card svg path[data-tier="2"] { fill: #93C5FD; }
.map-card svg path[data-tier="3"] { fill: #4A90E2; }
.map-card svg path[data-tier="4"] { fill: #1E3A5F; }
.map-card svg path[data-tier="5"] { fill: #0A2540; }
/* hover intensifies one tier */
.map-card svg path:hover { stroke: #0A2540; stroke-width: 2; }
.map-card svg path[data-tier="0"]:hover { fill: #DBEAFE; }
.map-card svg path[data-tier="1"]:hover { fill: #93C5FD; }
.map-card svg path[data-tier="2"]:hover { fill: #4A90E2; }
.map-card svg path[data-tier="3"]:hover { fill: #1E3A5F; }
.map-card svg path[data-tier="4"]:hover { fill: #0A2540; }
.map-card svg path[data-tier="5"]:hover { fill: #0A2540; }
.map-card.has-selection svg path { opacity: 0.85; }
.map-card svg path.is-selected {
  opacity: 1 !important; stroke: #0A2540; stroke-width: 2.5;
  filter: drop-shadow(0 4px 8px rgba(10,37,64,.2));
}

.map-info-panel {
  padding: 40px; background: #fff; border: 1px solid rgba(226,232,240,.5); border-radius: 24px;
  box-shadow: 0 1px 3px rgba(10,37,64,.04), 0 8px 24px rgba(10,37,64,.04);
  display: flex; flex-direction: column; gap: 24px; min-height: 100%;
  opacity: 0; transform: translateX(24px);
  transition: opacity .7s ease .3s, transform .7s ease .3s;
}
.map-card.in-view + div .map-info-panel,
.in-view .map-info-panel { opacity: 1; transform: translateX(0); }
.mip-eyebrow { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.mip-state { font-family: var(--font-display); font-size: 56px; line-height: 1; color: #0A2540; letter-spacing: -0.01em; margin-top: -4px; }
.mip-state em { font-style: italic; }
.mip-pill { display: inline-block; padding: 6px 16px; background: rgba(10,37,64,.08); color: #0A2540; border-radius: 999px; font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; align-self: flex-start; }
.mip-sep { height: 1px; background: #E2E8F0; }
.mip-metric { display: flex; flex-direction: column; gap: 4px; }
.mip-num { font-family: var(--font-display); font-size: 88px; line-height: 0.95; color: #0A2540; letter-spacing: -0.03em; }
.mip-label { color: var(--muted); font-size: 14px; }
.mip-desc { color: #475569; font-size: 15px; line-height: 1.65; font-family: var(--font-body); }
.mip-others-head { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.mip-others { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin-top: 12px; }
@media (min-width: 1100px) { .mip-others { grid-template-columns: repeat(3, 1fr); } }
.mip-pill-other {
  border: 0; cursor: pointer; padding: 8px 12px; border-radius: 999px;
  font-family: var(--font-body); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 500;
  background: #F1F5F9; color: #475569; transition: all 200ms ease; text-align: center;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.mip-pill-other:hover { background: rgba(10,37,64,.1); color: #0A2540; }
.mip-pill-other.active { background: #0A2540; color: #fff; }
.mip-pill-other strong { font-family: var(--font-display); font-weight: 400; font-size: 13px; opacity: .9; }

.map-tooltip { position: absolute; background: #0A2540; color: #fff; padding: 8px 12px; border-radius: 8px; font-size: 12px; pointer-events: none; transform: translate(-50%, calc(-100% - 12px)); white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,.2); z-index: 10; font-family: var(--font-body); }
.map-tooltip::after { content: ''; position: absolute; bottom: -5px; left: 50%; transform: translateX(-50%) rotate(45deg); width: 8px; height: 8px; background: #0A2540; }

.map-stats { display: flex; justify-content: center; gap: 0; margin-top: 32px; padding-top: 32px; border-top: 1px solid #E2E8F0; }
.map-stats .ms { padding: 0 48px; text-align: center; border-left: 1px solid #E2E8F0; min-width: 0; }
.map-stats .ms:first-child { border-left: 0; }
@media (max-width: 700px) { .map-stats .ms { padding: 0 16px; } }
.map-stats .ms-num { font-family: var(--font-display); font-size: 36px; color: #0A2540; line-height: 1; letter-spacing: -0.02em; }
.map-stats .ms-num .star { color: var(--accent-warm); }
.map-stats .ms-label { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); font-weight: 500; margin-top: 8px; }

/* Testimonials */
.testimonials-grid { display: grid; gap: 20px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testi-section { overflow: hidden; }
.testi-marquee { margin-top: 32px; overflow: hidden; mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent); }
.testi-marquee + .testi-marquee { margin-top: 20px; }
.testi-track { display: flex; gap: 20px; width: max-content; animation: testi-scroll 80s linear infinite; }
.testi-marquee-rev .testi-track { animation-direction: reverse; animation-duration: 90s; }
.testi-marquee:hover .testi-track { animation-play-state: paused; }
@keyframes testi-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.testi { padding: 32px; border-radius: 24px; flex: 0 0 380px; min-height: 240px; display: flex; flex-direction: column; }
.testi-quote { flex: 1; }
.testi-stars { color: var(--accent-warm); font-size: 16px; letter-spacing: 2px; margin-bottom: 16px; }
.testi-quote { font-family: var(--font-display); font-style: italic; font-size: 19px; line-height: 1.45; color: #fff; }
.testi-meta { margin-top: 22px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; color: rgba(255,255,255,.6); }
.testi-meta strong { color: #fff; font-weight: 500; }

/* About */
.about-grid { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .about-grid { grid-template-columns: 2fr 3fr; gap: 64px; } }
.about-photo { aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; box-shadow: 0 30px 60px rgba(10,37,64,.18), 0 8px 20px rgba(10,37,64,.08); position: relative; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-content h2 { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.05; margin: 14px 0 24px; color: var(--fg-dark); }
.about-content p { color: var(--muted); margin-bottom: 18px; line-height: 1.65; max-width: 56ch; }
.about-quote { font-family: var(--font-display); font-style: italic; font-size: 22px; line-height: 1.4; color: var(--fg-dark); border-left: 4px solid var(--accent-warm); padding: 6px 0 6px 24px; margin: 28px 0; }
.about-creds { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
.about-creds .ac { padding: 18px; background: #fff; border-radius: 14px; box-shadow: 0 4px 16px rgba(10,37,64,.04); }
.about-creds .ac-num { font-family: var(--font-display); font-size: 22px; color: var(--accent); }
.about-creds .ac-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* Schedule CTA */
.schedule { text-align: center; max-width: 760px; margin: 0 auto; }
.schedule h2 { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.05; margin: 16px 0 24px; }
.schedule p { color: rgba(255,255,255,.75); font-size: 18px; max-width: 50ch; margin: 0 auto 36px; }
.schedule-cta { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.calendly-mock { margin-top: 48px; padding: 32px; border-radius: 20px; max-width: 540px; margin-left: auto; margin-right: auto; }
.calendly-mock-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-top: 16px; }
.cal-day { aspect-ratio: 1; border-radius: 8px; background: rgba(255,255,255,.05); display: flex; align-items: center; justify-content: center; font-size: 13px; color: rgba(255,255,255,.7); }
.cal-day.avail { background: rgba(74,144,226,.18); color: #fff; cursor: pointer; }
.cal-day.avail:hover { background: var(--accent); }
.cal-day.disabled { opacity: .25; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(30,41,59,.1); }
.faq-q { width: 100%; text-align: left; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 18px; font-family: var(--font-display); color: var(--fg-dark); transition: color .2s; }
.faq-q:hover { color: var(--accent); }
.faq-toggle { width: 32px; height: 32px; border-radius: 999px; background: var(--bg-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s, background .2s; color: var(--fg-dark); }
.faq-item.open .faq-toggle { background: var(--bg); color: #fff; transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }

/* Footer */
.footer { padding: 80px 0 32px; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer h4 { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer ul a:hover { color: var(--accent); }
.footer-bio { color: rgba(255,255,255,.65); font-size: 14px; line-height: 1.65; max-width: 38ch; margin-top: 16px; }
.footer-legal { margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12px; color: rgba(255,255,255,.4); display: flex; flex-wrap: wrap; gap: 18px; justify-content: space-between; }

/* WhatsApp floating */
.fab-whatsapp { position: fixed; bottom: 28px; right: 28px; width: 60px; height: 60px; border-radius: 999px; background: var(--whatsapp); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 30px rgba(37,211,102,.4); z-index: 50; transition: transform .25s; }
.fab-whatsapp:hover { transform: scale(1.1); }
.fab-tooltip { position: absolute; right: 72px; top: 50%; transform: translateY(-50%); background: #0A2540; color: #fff; padding: 10px 16px; border-radius: 999px; white-space: nowrap; font-size: 13px; opacity: 0; pointer-events: none; transition: opacity .25s; }
.fab-whatsapp:hover .fab-tooltip { opacity: 1; }

/* Sticky-bg fix on iOS */
@supports (-webkit-touch-callout: none) {
  .hero-video { will-change: transform; }
}

/* Header pad helper */
.eyebrow-block { margin-bottom: 14px; }

/* Section heading defaults */
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.05; margin-top: 12px; letter-spacing: -0.015em; }
.bg-light .section-head h2 { color: var(--fg-dark); }
.section-head p { margin-top: 18px; font-size: 17px; line-height: 1.6; max-width: 56ch; }
.bg-light .section-head p { color: var(--muted); }
.bg-navy .section-head p, .bg-secondary .section-head p { color: rgba(255,255,255,.7); }

/* Asym helpers */
.split { display: grid; gap: 40px; grid-template-columns: 1fr; align-items: center; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; gap: 64px; } }
