/* =====================================================================
   Esteworld USA — Core styles & design tokens
   Clean medical-aesthetic palette. Edit tokens here to retheme.
   ===================================================================== */
:root {
    /* Palette */
    --color-bg:            #f7f5f1;   /* warm neutral background */
    --color-surface:       #ffffff;
    --color-surface-alt:   #efeae2;
    --color-text:          #1c1b19;   /* near-black */
    --color-text-muted:    #6b6760;
    --color-accent:        #f4b50c;   /* Esteworld yellow — primary accent */
    --color-accent-dark:   #a9780a;   /* readable dark amber (hover, text) */
    --color-accent-soft:   #fcf1d4;   /* pale yellow tint */
    --color-gold:          #b8975a;   /* warm secondary accent */
    --color-border:        #e3ded5;
    --color-dark:          #141513;   /* dark sections / footer */

    /* Typography */
    --font-head: 'Manrope', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;

    /* Layout */
    --radius:      18px;
    --radius-lg:   28px;
    --container:   1240px;
    --shadow-sm:   0 2px 10px rgba(20,21,19,.06);
    --shadow:      0 18px 50px -20px rgba(20,21,19,.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
h1,h2,h3,h4 { font-family: var(--font-head); font-weight: 800; line-height: 1.08; letter-spacing: -.02em; margin: 0 0 .4em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 22px; }
.eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--color-accent-dark); margin-bottom: .9rem; display: inline-block; }
.section { padding: clamp(56px, 8vw, 120px) 0; }
.text-muted { color: var(--color-text-muted); }
.display { font-size: clamp(2.1rem, 5vw, 4rem); }
.h2 { font-size: clamp(1.7rem, 3.4vw, 2.9rem); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-head); font-weight: 700; font-size: .95rem; padding: 15px 28px; border-radius: 100px; border: 1.5px solid transparent; cursor: pointer; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--color-accent); color: var(--color-dark); box-shadow: 0 10px 24px -10px rgba(244,181,12,.7); }
.btn-primary:hover { background: var(--color-accent-dark); }
.btn-outline { border-color: currentColor; color: var(--color-text); }
.btn-outline:hover { background: var(--color-text); color: #fff; }
.btn-light { background: #fff; color: var(--color-text); }
.btn-ghost-light { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-ghost-light:hover { background: #fff; color: var(--color-text); }

/* Stars */
.stars { color: var(--color-gold); letter-spacing: 2px; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 60; background: rgba(247,245,241,.85); backdrop-filter: blur(12px); border-bottom: 1px solid var(--color-border); }
.topbar { background: var(--color-dark); color: #fff; font-size: .82rem; }
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 9px; }
.topbar a { opacity: .9; }
.topbar a:hover { opacity: 1; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-block: 16px; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo span { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; letter-spacing: -.03em; }
.nav-menu { display: flex; gap: 1.6rem; align-items: center; font-weight: 600; font-size: .95rem; }
.nav-menu a { padding: 6px 0; position: relative; }
.nav-menu a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--color-accent); transition: width .25s; }
.nav-menu a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: .75rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
/* --- video background (both old .hero-video and new .hero-bg video) --- */
.hero-video, .hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
/* --- overlays (new explicit divs + old ::after fallback) --- */
.hero::after { content: ''; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(10,12,11,.35) 0%, rgba(10,12,11,.60) 55%, rgba(10,12,11,.85) 100%); pointer-events: none; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(135deg, rgba(10,12,11,.78) 0%, rgba(10,12,11,.52) 50%, rgba(10,12,11,.28) 100%); }
.hero-overlay-2 { position: absolute; inset: 0; z-index: 1; background: linear-gradient(to top, rgba(10,12,11,.65) 0%, transparent 50%); }
/* when new overlays are present, suppress the ::after duplicate */
.hero:has(.hero-overlay)::after { display: none; }
/* --- inner layout (old structure fallback: just flex column with padding) --- */
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 60px 0 56px; display: flex; flex-direction: column; align-items: flex-start; }
/* new two-column layout — activated by hero-content child */
.hero-inner .hero-content ~ .hero-form-card { display: block; }
.hero-content ~ .hero-form-card { flex-shrink: 0; width: 420px; }
.hero-inner:has(.hero-content) { flex-direction: row; align-items: center; gap: 56px; max-width: var(--container); margin-inline: auto; padding: 120px 22px 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(244,181,12,.15); border: 1px solid rgba(244,181,12,.4); color: var(--color-accent); font-family: var(--font-head); font-size: 11px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; padding: 8px 16px; border-radius: 100px; margin-bottom: 28px; backdrop-filter: blur(10px); }
.hero-badge span { width: 6px; height: 6px; background: var(--color-accent); border-radius: 50%; flex: none; }
.hero-title { font-family: var(--font-head); font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; color: #fff; line-height: 1.12; letter-spacing: -.02em; margin-bottom: 24px; }
.hero-subtitle { font-size: 1.05rem; color: rgba(255,255,255,.75); line-height: 1.8; max-width: 560px; margin-bottom: 40px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-head); font-weight: 800; font-size: 1.8rem; }
.hero-stat { border-left: 2px solid var(--color-accent); padding-left: 16px; }
.hero-stat-num { font-family: var(--font-head); font-size: 1.75rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 11px; color: rgba(255,255,255,.6); letter-spacing: .08em; text-transform: uppercase; font-weight: 500; }
.hero-form-card { background: rgba(255,255,255,.97); backdrop-filter: blur(20px); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: 0 24px 80px rgba(0,0,0,.35), 0 0 0 1px rgba(244,181,12,.2); position: relative; overflow: hidden; }
.hero-form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent), var(--color-accent-dark)); }
.hero-form-card h3 { font-size: 1.1rem; color: var(--color-text); margin-bottom: 4px; }
.hero-form-card .sub { font-size: 13px; color: var(--color-text-muted); margin-bottom: 20px; }
.hero-form-card .form-grid { gap: 10px; }
.hero-form-card .form-grid > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; gap: 10px !important; }
.hero-form-card .form-grid input, .hero-form-card .form-grid select, .hero-form-card .form-grid textarea { font-size: 13.5px; padding: 10px 13px; }
.hero-form-card .form-grid textarea { display: none; }
.hero-form-card .form-grid label[style*="checkbox"] { font-size: .8rem; }
.hero-form-card .form-grid .btn { font-size: .9rem; padding: 13px 20px; }
.btn-whatsapp { background: #25d366; color: #fff; border-color: #25d366; }
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; color: #fff; transform: translateY(-2px); }
.hero-scroll { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; text-align: center; }
.hero-scroll-line { width: 1px; height: 52px; background: linear-gradient(to bottom, rgba(244,181,12,.8), transparent); margin: 0 auto 8px; }
.hero-scroll-text { font-family: var(--font-head); font-size: 9px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); }
/* old hero quote card (backward compat) */
.hero-quote { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(8px); border-radius: var(--radius); padding: 18px 20px; max-width: 340px; display: flex; gap: 14px; align-items: center; margin-top: 2rem; position: relative; z-index: 2; }
.hero-quote img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; }
/* old hero headings (backward compat) */
.hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); max-width: 16ch; }
.hero > .container p { max-width: 56ch; font-size: 1.1rem; color: rgba(255,255,255,.9); }
.hero .eyebrow { position: relative; z-index: 2; }

/* Marquee */
.marquee { background: var(--color-surface); border-block: 1px solid var(--color-border); padding: 30px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scroll 32s linear infinite; align-items: center; }
.marquee-track img { height: 30px; opacity: .55; filter: grayscale(1); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* Generic grids */
.grid { display: grid; gap: 28px; }
.card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.card-body { padding: 24px; }

/* Stats band */
.stats-band { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.stats-band .num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2rem,4vw,3.2rem); color: var(--color-accent); }

/* Expertise tabs */
.expertise { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.tab-list { display: flex; flex-direction: column; gap: 6px; }
.tab-btn { text-align: left; background: none; border: 0; border-left: 3px solid transparent; padding: 16px 20px; font-family: var(--font-head); font-weight: 700; font-size: 1.25rem; color: var(--color-text-muted); cursor: pointer; transition: .25s; border-radius: 0 12px 12px 0; }
.tab-btn.active { color: var(--color-text); border-left-color: var(--color-accent); background: var(--color-accent-soft); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fade .4s; }
.tab-desc { font-size: 1.05rem; color: var(--color-text-muted); margin: 14px 0 22px; }
.tab-visual img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
@keyframes fade { from { opacity: 0; transform: translateY(8px); } }

/* Video testimonial */
.vtest { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 460px; display: flex; align-items: flex-end; color: #fff; }
.vtest video, .vtest img.poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vtest::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.75)); }
.vtest .body { position: relative; padding: 40px; z-index: 2; }
.vtest h3 { font-size: clamp(1.3rem,2.4vw,2rem); max-width: 24ch; font-weight: 700; }
.play-btn { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 78px; height: 78px; border-radius: 50%; background: rgba(255,255,255,.9); display: grid; place-items: center; z-index: 3; cursor: pointer; transition: transform .25s; }
.play-btn:hover { transform: translate(-50%,-50%) scale(1.08); }

/* Journey */
.journey { display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; }
.journey-steps { display: grid; gap: 4px; }
.jstep { display: flex; gap: 18px; padding: 22px 0; border-bottom: 1px solid var(--color-border); }
.jstep .idx { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--color-accent-soft); color: var(--color-accent-dark); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; }
.jstep h4 { font-size: 1.15rem; margin-bottom: .25rem; }
.journey-aside img { border-radius: var(--radius-lg); height: 100%; object-fit: cover; min-height: 420px; }

/* Transform CTA */
.transform { position: relative; border-radius: var(--radius-lg); overflow: hidden; color: #fff; padding: clamp(40px,6vw,80px); }
.transform img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.transform::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(115deg, rgba(20,21,19,.82), rgba(20,21,19,.5)); }
.transform .quote { margin-top: 2rem; max-width: 560px; border-left: 3px solid var(--color-gold); padding-left: 20px; }

/* Testimonials swiper */
.t-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 28px; height: 100%; display: flex; flex-direction: column; gap: 16px; }
.t-card .stars { font-size: 1.1rem; }
.t-card .who { display: flex; gap: 12px; align-items: center; margin-top: auto; }
.t-card .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }

/* Payment */
.payment { background: var(--color-dark); color: #fff; border-radius: var(--radius-lg); padding: clamp(40px,6vw,72px); }
.payment h2 { font-size: clamp(1.5rem,3vw,2.4rem); max-width: 22ch; }

/* Video grid */
.video-card { border-radius: var(--radius); overflow: hidden; background: var(--color-surface); border: 1px solid var(--color-border); }
.video-card .frame { aspect-ratio: 16/9; position: relative; background: #000; cursor: pointer; }
.video-card .frame img { width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.video-card .frame .play-sm { position: absolute; inset: 0; margin: auto; width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; }
.video-card .meta { padding: 16px 18px; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; padding: 22px 0; font-family: var(--font-head); font-weight: 700; font-size: 1.12rem; display: flex; justify-content: space-between; gap: 1rem; cursor: pointer; color: var(--color-text); }
.faq-q .ic { flex: none; transition: transform .3s; }
.faq-item.open .faq-q .ic { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; color: var(--color-text-muted); }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner { padding-bottom: 22px; }

/* Final CTA */
.final-cta { background: var(--color-accent); color: var(--color-dark); border-radius: var(--radius-lg); padding: clamp(40px,6vw,80px); text-align: center; }
.final-cta h2 { font-size: clamp(1.8rem,3.6vw,3rem); max-width: 20ch; margin-inline: auto; }

/* Footer */
.site-footer { background: var(--color-dark); color: rgba(255,255,255,.8); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-grid h5 { color: #fff; font-family: var(--font-head); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); font-size: .85rem; }
.newsletter-form { display: flex; gap: 8px; margin-top: 14px; max-width: 360px; }
.newsletter-form input { flex: 1; padding: 13px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; }
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }

/* Sticky mobile CTA */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; gap: 10px; padding: 10px 14px; background: rgba(255,255,255,.95); backdrop-filter: blur(10px); border-top: 1px solid var(--color-border); }
.sticky-cta .btn { flex: 1; justify-content: center; padding-block: 13px; }
.wa-float { position: fixed; right: 18px; bottom: 18px; z-index: 65; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); }

/* Forms */
.form-grid { display: grid; gap: 16px; }
.form-grid label { font-weight: 600; font-size: .9rem; display: block; margin-bottom: 6px; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--color-border); border-radius: 12px; font-family: inherit; font-size: 1rem; background: #fff; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { outline: 2px solid var(--color-accent); border-color: transparent; }
.hp { position: absolute; left: -9999px; }
.flash { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; font-weight: 600; }
.flash.ok { background: var(--color-accent-soft); color: var(--color-accent-dark); }
.flash.err { background: #fde8e8; color: #9b1c1c; }

.section-head { max-width: 760px; margin-bottom: 48px; }
.lead { font-size: 1.12rem; color: var(--color-text-muted); }
.prose h2 { margin-top: 1.6em; }
.prose img { border-radius: var(--radius); margin: 1.4em 0; }

/* Responsive */
@media (max-width: 980px) {
    .expertise, .journey { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-menu { display: none; }
    .nav-toggle { display: inline-flex; }
    .nav-actions .btn-secondary-text { display: none; }
}
@media (max-width: 980px) {
    .hero-inner { grid-template-columns: 1fr; gap: 40px; padding-top: 100px; }
    .hero-form-card { max-width: 520px; }
}
@media (max-width: 640px) {
    .stats-band { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-stats { gap: 20px; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { justify-content: center; }
    .hero-form-card { display: none; }
    .sticky-cta { display: flex; }
    .wa-float { bottom: 78px; }
}

/* Mobile menu drawer */
.mobile-menu { position: fixed; inset: 0; z-index: 100; background: var(--color-bg); transform: translateX(100%); transition: transform .3s; display: flex; flex-direction: column; padding: 26px; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; padding: 14px 0; border-bottom: 1px solid var(--color-border); }
.mobile-menu .close { align-self: flex-end; background: none; border: 0; cursor: pointer; }

/* =====================================================================
   v2 — responsive grid utilities, before/after, consult block, mobile
   ===================================================================== */
.grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.grid.cols-4 { grid-template-columns: repeat(4,1fr); }

/* Split (text + image) two-column */
.split-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center; }
.split-img { border-radius: var(--radius-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }

/* Benefit list */
.benefit-list { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .7rem; }
.benefit-list li { display: flex; gap: 10px; align-items: flex-start; }
.benefit-list li i, .benefit-list svg { width: 22px; height: 22px; color: var(--color-accent); flex: none; }

/* Consult block */
.consult-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.consult-card { padding: 32px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 1.2rem 1.6rem; margin: 1.2rem 0; font-size: .9rem; color: var(--color-text-muted); }
.trust-row > div { display: flex; align-items: center; gap: 8px; }
.trust-row i, .trust-row svg { width: 18px; height: 18px; color: var(--color-accent); }
.consult-contact { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1rem; }
.ic-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--color-accent-dark); }
.ic-link i, .ic-link svg { width: 18px; height: 18px; }

/* Before / After */
.ba-card { margin: 0; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--color-border); }
.ba-half { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.ba-half img { width: 100%; height: 100%; object-fit: cover; }
.ba-tag { position: absolute; left: 10px; top: 10px; font-size: .68rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 4px 9px; border-radius: 100px; color: #fff; }
.ba-before { background: rgba(40,52,49,.85); }
.ba-after { background: var(--color-accent); color: var(--color-dark); }
.ba-card figcaption { padding: 14px 16px; font-family: var(--font-head); font-weight: 700; font-size: .98rem; }
.ba-card figcaption .text-muted { font-weight: 500; font-size: .85rem; }
.ba-disclaimer { margin-top: 22px; font-size: .8rem; color: var(--color-text-muted); max-width: 760px; }

/* Responsive collapses (override inline-free grids) */
@media (max-width: 1000px) {
    .grid.cols-4 { grid-template-columns: repeat(2,1fr); }
    .grid.cols-3 { grid-template-columns: repeat(2,1fr); }
    .split-grid, .consult-grid { grid-template-columns: 1fr; gap: 32px; }
    .split-img { aspect-ratio: 16/10; max-height: 420px; }
}
@media (max-width: 640px) {
    .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
    .ba-pair { grid-template-columns: 1fr 1fr; } /* keep before/after side-by-side even on mobile */
    .hero { min-height: 100svh; }
    .hero h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
    .hero-title { font-size: clamp(2rem, 8vw, 2.6rem); }
    .hero-subtitle { font-size: 1rem; margin-bottom: 28px; }
    .hero-quote { display: none; }
    .container { padding-inline: 18px; }
    .section { padding: 48px 0; }
    .vtest { min-height: 360px; }
    .vtest .body { padding: 24px; }
    .journey-aside img { min-height: 260px; }
    .consult-card { padding: 22px; }
    .display { font-size: clamp(1.9rem, 8vw, 2.6rem); }
    .h2 { font-size: clamp(1.5rem, 6.5vw, 2.1rem); }
    .lead { font-size: 1rem; }
    .form-grid > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 380px) {
    .ba-tag { font-size: .6rem; padding: 3px 7px; }
    .btn { padding: 13px 20px; font-size: .9rem; }
}
