/* ═══════════════════════════════════════════════
   TROPICAL ROCKS — Waterfall Repair California
   Modern · 3D · Parallax · Mobile-first
   ═══════════════════════════════════════════════ */

:root {
    --bg: #06131a;
    --bg-2: #0a1e28;
    --bg-3: #0e2a36;
    --surface: rgba(255, 255, 255, 0.05);
    --surface-2: rgba(255, 255, 255, 0.08);
    --border: rgba(122, 224, 255, 0.14);
    --text: #eaf6fa;
    --text-dim: #aec6d0;
    --accent: #2fd9c7;
    --accent-2: #14b3a1;
    --accent-deep: #0e8577;
    --gold: #dcbc80;
    --gold-deep: #a8823f;
    --grad-gold: linear-gradient(115deg, #f4e3b8 0%, #dcbc80 45%, #a8823f 100%);
    --hairline: rgba(220, 188, 128, 0.35);
    --whatsapp: #25d366;
    --grad: linear-gradient(120deg, #2fd9c7 0%, #14b3a1 50%, #8ce07a 100%);
    --font-lux: 'Cormorant Garamond', Georgia, serif;
    --shadow-lg: 0 24px 60px -12px rgba(0, 0, 0, 0.55);
    --shadow-glow: 0 0 40px rgba(47, 217, 199, 0.25);
    --radius: 20px;
    --radius-sm: 12px;
    --font-display: 'Sora', sans-serif;
    --font-body: 'Inter', sans-serif;
    --header-h: 72px;
}

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

html { font-size: 106.25%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.container { width: min(1180px, 92%); margin-inline: auto; }
.container--narrow { width: min(860px, 92%); }
.section { padding: clamp(4.5rem, 10vw, 9rem) 0; position: relative; }

/* ── Typography ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.92rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.1rem;
}
.eyebrow::before, .eyebrow::after {
    content: '';
    width: 36px;
    height: 1px;
    background: var(--hairline);
}
.eyebrow--light { color: var(--gold); }

.section__title {
    font-family: var(--font-lux);
    font-size: clamp(2.3rem, 5.4vw, 3.9rem);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: 0.005em;
    margin-bottom: 1rem;
}
.section__sub {
    color: var(--text-dim);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    max-width: 620px;
    margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.grad-text {
    font-style: italic;
    font-weight: 600;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    padding-right: 0.08em;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
    padding: 0.85rem 1.7rem;
    border-radius: 999px;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease, background 0.25s ease;
    will-change: transform;
    text-align: center;
}
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(0) scale(0.98); }

.btn--primary {
    background: var(--grad-gold);
    color: #241a08;
    box-shadow: 0 8px 26px -6px rgba(220, 188, 128, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn--primary:hover { box-shadow: 0 16px 38px -6px rgba(220, 188, 128, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.4); }

.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #fff;
}
.btn--ghost {
    border: 1.5px solid var(--border);
    color: var(--text);
    background: transparent;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn--whatsapp {
    background: var(--whatsapp);
    color: #04240f;
    box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.5);
}

.btn--lg { padding: 1.05rem 2.2rem; font-size: 1.05rem; }
.btn--sm { padding: 0.6rem 1.25rem; font-size: 0.98rem; }

/* shine sweep */
.btn--shine { position: relative; overflow: hidden; }
.btn--shine::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.55) 50%, transparent 60%);
    transform: translateX(-120%);
    animation: shine 3.2s ease-in-out infinite;
}
@keyframes shine { 55% { transform: translateX(120%); } 100% { transform: translateX(120%); } }

/* ═══════════ HEADER ═══════════ */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: var(--header-h);
    transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}
.header.is-scrolled {
    background: rgba(6, 19, 26, 0.82);
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--border);
}
.header__inner {
    width: min(1280px, 94%);
    margin-inline: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.header__logo { display: flex; align-items: center; gap: 0.7rem; }
.header__logo-img {
    height: 46px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.header__logo-tag {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-dim);
    border-left: 1px solid var(--border);
    padding-left: 0.7rem;
    max-width: 110px;
    line-height: 1.5;
}

.header__nav { display: flex; gap: 1.7rem; }
.header__nav a {
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text-dim);
    position: relative;
    transition: color 0.25s;
}
.header__nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 100%; height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.header__nav a:hover { color: var(--text); }
.header__nav a:hover::after { transform: scaleX(1); }

.header__actions { display: flex; align-items: center; gap: 0.9rem; }
.header__phone {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.04rem;
    color: var(--accent);
    transition: opacity 0.2s;
}
.header__phone:hover { opacity: 0.8; }

.header__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.header__burger span {
    width: 24px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__burger.is-open span:nth-child(2) { opacity: 0; }
.header__burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile menu */
.mobilemenu {
    position: fixed;
    inset: 0;
    z-index: 99;
    background: rgba(6, 19, 26, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.mobilemenu.is-open { opacity: 1; pointer-events: auto; }
.mobilemenu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.4rem;
    text-align: center;
}
.mobilemenu nav > a:not(.btn) {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobilemenu.is-open nav > a:not(.btn) { opacity: 1; transform: none; }
.mobilemenu nav > a:nth-child(1) { transition-delay: 0.05s; }
.mobilemenu nav > a:nth-child(2) { transition-delay: 0.1s; }
.mobilemenu nav > a:nth-child(3) { transition-delay: 0.15s; }
.mobilemenu nav > a:nth-child(4) { transition-delay: 0.2s; }
.mobilemenu nav > a:nth-child(5) { transition-delay: 0.25s; }
.mobilemenu nav > a:nth-child(6) { transition-delay: 0.3s; }
.mobilemenu nav .btn { margin-top: 0.6rem; }

/* ═══════════ HERO ═══════════ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: calc(var(--header-h) + 3rem) 0 6rem;
}
.hero__bg { position: absolute; inset: 0; z-index: -1; }
.hero__layer { position: absolute; inset: -12% 0; }
.hero__layer--img {
    background-size: cover;
    background-position: center 40%;
    transform: scale(1.08);
    filter: saturate(1.15);
}
.hero__video {
    position: absolute;
    inset: -12% 0;
    width: 100%;
    height: 124%;
    object-fit: cover;
    filter: saturate(1.15);
}
.hero__layer--tint {
    background:
        radial-gradient(ellipse 90% 55% at 50% 100%, rgba(6, 19, 26, 0.55), transparent 70%),
        linear-gradient(180deg, rgba(6, 19, 26, 0.55) 0%, rgba(6, 19, 26, 0.28) 45%, var(--bg) 100%);
}
.hero__mist { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.55; }

.hero__content {
    position: relative;
    text-align: center;
    width: min(920px, 92%);
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 1.03rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 1.6rem;
}
.pulse-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #8ce07a;
    box-shadow: 0 0 0 0 rgba(140, 224, 122, 0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    70% { box-shadow: 0 0 0 9px rgba(140, 224, 122, 0); }
    100% { box-shadow: 0 0 0 0 rgba(140, 224, 122, 0); }
}

.hero__title {
    font-family: var(--font-lux);
    font-size: clamp(2.9rem, 8.4vw, 5.6rem);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: 0.005em;
    text-shadow: 0 4px 40px rgba(0, 0, 0, 0.45);
    margin-bottom: 1.3rem;
}
.hero__sub {
    font-size: clamp(1.02rem, 2vw, 1.22rem);
    color: #cfe4ec;
    max-width: 640px;
    margin: 0 auto 2.2rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}
.hero__sub strong { color: var(--gold); }

.hero__ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.6rem;
}
.hero__trust {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.7rem 2rem;
    font-size: 0.98rem;
    color: var(--text-dim);
}
.hero__trust b { color: var(--gold); margin-right: 0.3rem; }

.hero__scroll {
    position: absolute;
    bottom: 4.4rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero__mouse {
    display: block;
    width: 26px; height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    position: relative;
}
.hero__mouse span {
    position: absolute;
    top: 7px; left: 50%;
    width: 4px; height: 8px;
    margin-left: -2px;
    border-radius: 4px;
    background: var(--accent);
    animation: scrollwheel 1.8s ease-in-out infinite;
}
@keyframes scrollwheel {
    0% { transform: translateY(0); opacity: 1; }
    70% { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}
.hero__wave {
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    line-height: 0;
}
.hero__wave svg { width: 100%; height: clamp(40px, 8vw, 110px); }

/* ═══════════ TRUST BAR ═══════════ */
.trustbar { padding: clamp(2.5rem, 6vw, 4.5rem) 0; }
.trustbar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}
.trustbar__item .counter {
    font-family: var(--font-lux);
    font-size: clamp(2.5rem, 5.6vw, 4rem);
    font-weight: 600;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
}
.trustbar__item p { color: var(--text-dim); font-size: 1.02rem; margin-top: 0.2rem; }

/* ═══════════ SYMPTOMS ═══════════ */
.symptoms { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.symptoms__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.3rem;
}
.symptom {
    text-align: left;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.7rem 1.5rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    transform-style: preserve-3d;
}
.symptom:hover {
    border-color: rgba(47, 217, 199, 0.45);
    background: var(--surface-2);
    box-shadow: var(--shadow-glow);
}
.symptom__icon {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border-radius: 14px;
    color: var(--accent);
    background: rgba(47, 217, 199, 0.1);
    border: 1px solid rgba(47, 217, 199, 0.25);
    margin-bottom: 0.9rem;
    transform: translateZ(30px);
}
.symptom h3 {
    font-family: var(--font-display);
    font-size: 1.12rem;
    margin-bottom: 0.4rem;
    transform: translateZ(20px);
}
.symptom p { color: var(--text-dim); font-size: 1.02rem; }
.symptom__cta {
    display: inline-block;
    margin-top: 0.9rem;
    font-size: 0.96rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s, transform 0.3s;
}
.symptom:hover .symptom__cta { opacity: 1; transform: none; }

/* ═══════════ SERVICES ═══════════ */
.services { background: var(--bg-2); }
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.6rem;
}
.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transform-style: preserve-3d;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}
.card:hover {
    border-color: rgba(47, 217, 199, 0.4);
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}
.card__media {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover .card__media { transform: scale(1.06); }
.card__body { padding: 1.5rem 1.5rem 1.7rem; transform: translateZ(24px); }
.card__body h3 {
    font-family: var(--font-display);
    font-size: 1.18rem;
    margin-bottom: 0.5rem;
}
.card__body p { color: var(--text-dim); font-size: 1.03rem; margin-bottom: 1rem; }
.card__link {
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--accent);
    transition: gap 0.25s;
}
.card__link:hover { text-decoration: underline; }

/* ═══════════ BEFORE / AFTER ═══════════ */
.results { background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.ba {
    position: relative;
    max-width: 880px;
    margin-inline: auto;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    user-select: none;
    touch-action: pan-y;
}
.ba__img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
}
.ba__before-wrap {
    position: absolute;
    inset: 0;
    width: 50%;
    overflow: hidden;
    z-index: 2;
}
.ba__before-wrap .ba__img { width: 100vw; max-width: 880px; }
.ba__handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    width: 3px;
    background: #fff;
    z-index: 3;
    box-shadow: 0 0 20px rgba(47, 217, 199, 0.8);
    transform: translateX(-50%);
}
.ba__grip {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--grad-gold);
    color: #241a08;
    font-size: 1.3rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}
.ba__tag {
    position: absolute;
    top: 14px;
    z-index: 4;
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.ba__tag--before { left: 14px; background: rgba(0, 0, 0, 0.55); color: #ffb1a1; }
.ba__tag--after { right: 14px; background: rgba(0, 0, 0, 0.55); color: #8ce07a; }
.ba__range {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
    -webkit-appearance: none;
    appearance: none;
}
.results__cta { text-align: center; margin-top: 2.4rem; }
.results__cta p { color: var(--text-dim); margin-bottom: 1rem; font-size: 1.05rem; }

/* ═══════════ PROCESS ═══════════ */
.process__steps {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.4rem;
    counter-reset: step;
    margin-top: clamp(2rem, 5vw, 3.5rem);
}
.step {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 1.5rem 1.7rem;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.3s ease;
}
.step:hover { transform: translateY(-6px); border-color: rgba(47, 217, 199, 0.4); }
.step__num {
    font-family: var(--font-lux);
    font-style: italic;
    font-size: 3.6rem;
    font-weight: 600;
    line-height: 1;
    background: var(--grad-gold);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: 0.8rem;
}
.step h3 { font-family: var(--font-display); font-size: 1.08rem; margin-bottom: 0.45rem; }
.step p { color: var(--text-dim); font-size: 1.02rem; }

/* ═══════════ BANNER ═══════════ */
.banner {
    position: relative;
    padding: clamp(5rem, 12vw, 9rem) 0;
    overflow: hidden;
    text-align: center;
}
.banner__bg {
    position: absolute;
    inset: -18% 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 19, 26, 0.88), rgba(6, 19, 26, 0.72));
    z-index: -1;
}
.banner__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 4.4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.2;
    max-width: 760px;
    margin: 0 auto 0.9rem;
}
.banner__content > p { color: var(--text-dim); margin-bottom: 2rem; }
.banner__btns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* ═══════════ GALLERY ═══════════ */
.gallery { background: var(--bg-2); overflow: hidden; }
.gallery__track {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding: clamp(1.5rem, 4vw, 2.5rem) 4%;
    scroll-snap-type: x mandatory;
    cursor: grab;
    scrollbar-width: none;
}
.gallery__track::-webkit-scrollbar { display: none; }
.gallery__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.gallery__item {
    flex: 0 0 clamp(260px, 42vw, 460px);
    scroll-snap-align: center;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.gallery__item:hover {
    transform: translateY(-8px) rotate(-0.5deg) scale(1.02);
    box-shadow: var(--shadow-lg);
}
.gallery__item img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    pointer-events: none;
}
.gallery__item figcaption {
    font-size: 1.02rem;
    font-weight: 500;
    color: var(--text-dim);
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-top: 1px solid var(--border);
}
.gallery__hint {
    text-align: center;
    color: var(--text-dim);
    font-size: 1.03rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ═══════════ REVIEWS ═══════════ */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.review {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.9rem 1.7rem;
    transform-style: preserve-3d;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.review:hover { border-color: rgba(255, 207, 107, 0.4); box-shadow: 0 0 40px rgba(255, 207, 107, 0.12); }
.review__stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 0.9rem; font-size: 1.05rem; }
.review p { font-size: 0.98rem; color: #d7e8ef; font-style: italic; margin-bottom: 1.2rem; }
.review footer { display: flex; flex-direction: column; }
.review footer b { font-family: var(--font-display); font-size: 1.04rem; }
.review footer span { color: var(--text-dim); font-size: 1.03rem; }

/* ═══════════ AREAS ═══════════ */
.areas { background: linear-gradient(180deg, var(--bg), var(--bg-2)); text-align: center; }
.areas .section__sub { margin-inline: auto; }
.areas__chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.65rem;
    max-width: 900px;
    margin-inline: auto;
}
.areas__chips span {
    font-size: 0.98rem;
    font-weight: 500;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    background: var(--surface);
    border: 1px solid var(--border);
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}
.areas__chips span:hover {
    transform: translateY(-3px);
    border-color: var(--accent);
    color: var(--accent);
}
.areas__note { margin-top: 1.8rem; color: var(--text-dim); font-size: 1.04rem; }
.areas__note a { color: var(--accent); font-weight: 600; text-decoration: underline; }

/* ═══════════ FAQ ═══════════ */
.faq__list { display: flex; flex-direction: column; gap: 0.9rem; margin-top: clamp(1.5rem, 4vw, 2.5rem); }
.faq__item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: border-color 0.3s ease;
}
.faq__item[open] { border-color: rgba(47, 217, 199, 0.4); }
.faq__item summary {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.15rem 1.4rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
    flex: 0 0 auto;
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    position: relative;
    transition: transform 0.35s ease, background 0.35s ease;
}
.faq__icon::before, .faq__icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 1.5px;
    background: var(--accent);
    transform: translate(-50%, -50%);
    transition: transform 0.35s ease;
}
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq__item[open] .faq__icon { transform: rotate(45deg); background: rgba(47, 217, 199, 0.12); }
.faq__answer { padding: 0 1.4rem 1.3rem; color: var(--text-dim); font-size: 1.04rem; }

/* ═══════════ QUOTE / WIZARD ═══════════ */
.quote { overflow: hidden; }
.quote__bg {
    position: absolute;
    inset: -15% 0;
    background-size: cover;
    background-position: center;
    z-index: -2;
}
.quote__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(6, 19, 26, 0.96) 30%, rgba(6, 19, 26, 0.82));
    z-index: -1;
}
.quote__inner {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: clamp(2rem, 6vw, 5rem);
    align-items: center;
}
.quote__perks { list-style: none; margin: 1.4rem 0 2rem; }
.quote__perks li { padding: 0.35rem 0; color: #d7e8ef; font-size: 1rem; }
.quote__alt p { color: var(--text-dim); font-size: 0.9rem; margin-bottom: 0.5rem; }

.wizard {
    background: rgba(10, 30, 40, 0.75);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(122, 224, 255, 0.22);
    border-radius: calc(var(--radius) + 6px);
    padding: clamp(1.5rem, 3.5vw, 2.4rem);
    box-shadow: var(--shadow-lg);
}
.wizard__progress {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    margin-bottom: 0.7rem;
}
.wizard__bar {
    height: 100%;
    width: 25%;
    background: var(--grad);
    border-radius: 999px;
    transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 12px rgba(47, 217, 199, 0.7);
}
.wizard__stepcount {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 1.3rem;
}

.wstep { display: none; border: 0; animation: stepIn 0.45s cubic-bezier(0.22, 1, 0.36, 1); }
.wstep.is-active { display: block; }
@keyframes stepIn {
    from { opacity: 0; transform: translateX(26px); }
    to { opacity: 1; transform: none; }
}
.wstep legend {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.wopts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}
.wopts--rows { grid-template-columns: 1fr; }
.wopt { position: relative; }
.wopt input {
    position: absolute;
    opacity: 0;
    inset: 0;
}
.wopt span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-align: center;
    font-size: 0.96rem;
    font-weight: 600;
    padding: 1rem 0.5rem;
    min-height: 86px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}
.wopt span i {
    font-style: normal;
    display: grid;
    place-items: center;
    color: var(--accent);
}
.wopts--rows .wopt span {
    flex-direction: row;
    justify-content: flex-start;
    text-align: left;
    min-height: 0;
    padding: 0.95rem 1.1rem;
    gap: 0.7rem;
}
.wopt:hover span { transform: translateY(-2px); border-color: rgba(47, 217, 199, 0.5); }
.wopt input:checked + span {
    border-color: var(--accent);
    background: rgba(47, 217, 199, 0.12);
    box-shadow: 0 0 0 3px rgba(47, 217, 199, 0.18), var(--shadow-glow);
    transform: scale(1.02);
}
.wopt input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.wfields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.wfield { display: flex; flex-direction: column; gap: 0.35rem; }
.wfield--full { grid-column: 1 / -1; }
.wfield label { font-size: 0.96rem; font-weight: 600; color: var(--text-dim); }
.wfield label small { font-weight: 400; }
.wfield input, .wfield textarea {
    font: inherit;
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
}
.wfield input::placeholder, .wfield textarea::placeholder { color: rgba(157, 184, 196, 0.55); }
.wfield input:focus, .wfield textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(47, 217, 199, 0.18);
}
.wfield input.is-invalid { border-color: #ff7a6b; box-shadow: 0 0 0 3px rgba(255, 122, 107, 0.18); }

.wizard__privacy { font-size: 0.9rem; color: var(--text-dim); margin-top: 1rem; }
.wizard__nav {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1.6rem;
}
.wizard__nav .btn { flex: 1; }
.wizard__nav #btnBack { flex: 0 0 auto; }

.wsuccess { text-align: center; padding: 1rem 0; }
.wsuccess__check {
    display: grid;
    place-items: center;
    width: 74px; height: 74px;
    margin: 0 auto 1.1rem;
    border-radius: 50%;
    font-size: 2.1rem;
    font-weight: 800;
    color: #04240f;
    background: var(--grad);
    box-shadow: var(--shadow-glow);
    animation: pop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes pop { from { transform: scale(0); } }
.wsuccess h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 0.5rem; }
.wsuccess p { color: var(--text-dim); margin-bottom: 1.4rem; }
.wsuccess .btn { width: 100%; margin-bottom: 0.7rem; }

/* ═══════════ FOOTER ═══════════ */
.footer {
    background: #040d12;
    border-top: 1px solid var(--border);
    padding-top: clamp(3rem, 7vw, 5rem);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer__logo {
    height: 55px;
    width: auto;
    margin-bottom: 1rem;
}
.footer__col p, .footer__col a { color: var(--text-dim); font-size: 1.02rem; }
.footer__col a { display: block; padding: 0.28rem 0; transition: color 0.25s; }
.footer__col a:hover { color: var(--accent); }
.footer__col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 0.9rem;
    color: var(--text);
}
.footer__social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer__social a {
    display: grid;
    place-items: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-dim);
    transition: color 0.25s, border-color 0.25s, transform 0.25s;
    padding: 0;
}
.footer__social a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-3px); }
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.3rem 0 calc(1.3rem + 74px);
    text-align: center;
}
.footer__bottom p { color: rgba(174, 198, 208, 0.8); font-size: 1.02rem; }

/* ═══════════ STICKY MOBILE BAR ═══════════ */
.stickybar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    display: flex;
    gap: 1px;
    background: rgba(6, 19, 26, 0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    padding: 0.6rem 0.7rem calc(0.6rem + env(safe-area-inset-bottom));
    transform: translateY(110%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.stickybar.is-visible { transform: none; }
.stickybar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    padding: 0.8rem 0.6rem;
}
.stickybar__btn--call { flex: 1; background: rgba(255, 255, 255, 0.09); color: #fff; margin-right: 0.5rem; }
.stickybar__btn--quote { flex: 1.3; background: var(--grad-gold); color: #241a08; margin-right: 0.5rem; }
.stickybar__btn--wa { flex: 0 0 52px; background: var(--whatsapp); color: #04240f; }

/* ═══════════ REVEAL ANIMATIONS ═══════════ */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 1s cubic-bezier(0.22, 1, 0.36, 1), transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* stagger siblings */
.services__grid .reveal:nth-child(2), .symptoms__grid .reveal:nth-child(2),
.reviews__grid .reveal:nth-child(2), .process__steps .reveal:nth-child(2) { transition-delay: 0.1s; }
.services__grid .reveal:nth-child(3), .symptoms__grid .reveal:nth-child(3),
.reviews__grid .reveal:nth-child(3), .process__steps .reveal:nth-child(3) { transition-delay: 0.2s; }
.services__grid .reveal:nth-child(4), .symptoms__grid .reveal:nth-child(4),
.process__steps .reveal:nth-child(4) { transition-delay: 0.3s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.4s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.5s; }

/* ═══════════ LIGHT SECTIONS ═══════════ */
.section--light {
    background: linear-gradient(180deg, #f0f6f5, #e6efee);
    color: #12262c;
}
.section--light .section__title { color: #0c1f25; }
.section--light .section__sub { color: #44606a; }
.section--light .eyebrow { color: #a8823f; }
.section--light .eyebrow::before, .section--light .eyebrow::after { background: rgba(168, 130, 63, 0.4); }
.section--light .step,
.section--light .review {
    background: #ffffff;
    border-color: rgba(12, 31, 37, 0.08);
    box-shadow: 0 10px 30px -12px rgba(12, 31, 37, 0.12);
}
.section--light .step:hover,
.section--light .review:hover {
    border-color: rgba(20, 179, 161, 0.45);
    box-shadow: 0 18px 44px -12px rgba(12, 31, 37, 0.18);
}
.section--light .step h3 { color: #0c1f25; }
.section--light .step p { color: #44606a; }
.section--light .step__num {
    background: linear-gradient(115deg, #c9a35e, #a8823f);
    -webkit-background-clip: text;
    background-clip: text;
}
.section--light .review p { color: #33505a; }
.section--light .review footer b { color: #0c1f25; }
.section--light .review footer span { color: #4f6d77; }
.section--light .grad-text {
    background: linear-gradient(115deg, #b8904e, #8a6a30);
    -webkit-background-clip: text;
    background-clip: text;
}

/* ═══════════ MEET THE TEAM ═══════════ */
.meet { background: var(--bg-2); overflow: hidden; }
.meet__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 6vw, 4.5rem);
    align-items: center;
}
.meet__text { color: var(--text-dim); margin-bottom: 1.3rem; }
.meet__points { list-style: none; margin-bottom: 1.8rem; }
.meet__points li {
    padding: 0.45rem 0 0.45rem 1.6rem;
    position: relative;
    color: var(--text-dim);
    font-size: 0.97rem;
}
.meet__points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 800;
}
.meet__points li b { color: var(--text); }
.meet__video {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16 / 10;
    cursor: pointer;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    background: #000;
}
.meet__video img, .meet__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    transition: transform 0.5s ease, opacity 0.4s ease;
}
.meet__video:hover img { transform: scale(1.04); opacity: 0.85; }
.meet__play {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 76px; height: 76px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #05241f;
    background: var(--grad);
    box-shadow: 0 10px 34px rgba(0, 0, 0, 0.5), var(--shadow-glow);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
}
.meet__video:hover .meet__play { transform: translate(-50%, -50%) scale(1.1); }
.meet__badge {
    position: absolute;
    left: 14px; bottom: 14px;
    z-index: 2;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* ═══════════ LUXURY LAYER ═══════════ */
/* Gold keyline hovers */
.card:hover, .symptom:hover, .step:hover, .review:hover {
    border-color: rgba(220, 188, 128, 0.55) !important;
}
.card:hover { box-shadow: var(--shadow-lg), 0 0 44px rgba(220, 188, 128, 0.14); }
.symptom:hover { box-shadow: 0 0 40px rgba(220, 188, 128, 0.14); }
.section--light .step:hover, .section--light .review:hover {
    box-shadow: 0 18px 44px -12px rgba(168, 130, 63, 0.25);
}

/* Filmic grain */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 300;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* Cities marquee (fashion-house ribbon) */
.lux-marquee {
    overflow: hidden;
    border-top: 1px solid var(--hairline);
    border-bottom: 1px solid var(--hairline);
    background: rgba(220, 188, 128, 0.03);
    padding: 0.95rem 0;
}
.lux-marquee__inner {
    display: flex;
    width: max-content;
    animation: marquee 48s linear infinite;
}
.lux-marquee__inner span {
    font-family: var(--font-lux);
    font-size: 1.04rem;
    font-weight: 500;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--gold);
    white-space: nowrap;
    opacity: 0.85;
}
@keyframes marquee { to { transform: translateX(-50%); } }
.lux-marquee:hover .lux-marquee__inner { animation-play-state: paused; }

/* Gold hairline under section titles */
.section__sub { font-weight: 400; }
.hero__badge { border-color: var(--hairline); letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.9rem; }

/* Scroll progress → gold */
.scrollprogress {
    background: var(--grad-gold) !important;
    box-shadow: 0 0 12px rgba(220, 188, 128, 0.9) !important;
}

/* ═══════════ WATER FX: WAVE SEPARATORS ═══════════ */
.wavesep {
    position: relative;
    height: 64px;
    margin-top: -1px;
    margin-bottom: -1px;
    overflow: hidden;
    z-index: 2;
}
.wavesep::before, .wavesep::after {
    content: '';
    position: absolute;
    inset: 0;
    background-repeat: repeat-x;
    background-size: 900px 64px;
    background-position: 0 bottom;
    animation: waveMove 18s linear infinite;
}
.wavesep::after {
    animation-duration: 11s;
    animation-direction: reverse;
    opacity: 0.5;
    top: 10px;
}
@keyframes waveMove { to { background-position-x: 900px; } }

.wavesep--from-dark2 { background: var(--bg-2); }
.wavesep--from-light { background: #e6efee; }
.wavesep--to-light::before, .wavesep--to-light::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 64' preserveAspectRatio='none'%3E%3Cpath d='M0,36 C150,64 300,8 450,36 C600,64 750,8 900,36 L900,64 L0,64 Z' fill='%23f0f6f5'/%3E%3C/svg%3E");
}
.wavesep--to-meet::before, .wavesep--to-meet::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 64' preserveAspectRatio='none'%3E%3Cpath d='M0,36 C150,64 300,8 450,36 C600,64 750,8 900,36 L900,64 L0,64 Z' fill='%230a1e28'/%3E%3C/svg%3E");
}
.wavesep--to-areas::before, .wavesep--to-areas::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 64' preserveAspectRatio='none'%3E%3Cpath d='M0,36 C150,64 300,8 450,36 C600,64 750,8 900,36 L900,64 L0,64 Z' fill='%2306131a'/%3E%3C/svg%3E");
}

/* ═══════════ WATER FX: BUBBLES ═══════════ */
.has-bubbles { position: relative; overflow: hidden; }
.has-bubbles > .container { position: relative; z-index: 2; }
.bubble {
    position: absolute;
    bottom: -40px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.35), rgba(170, 240, 224, 0.06));
    border: 1px solid rgba(170, 240, 224, 0.28);
    pointer-events: none;
    animation: bubbleRise linear infinite;
    will-change: transform;
    z-index: 1;
}
@keyframes bubbleRise {
    0%   { transform: translate3d(0, 0, 0) scale(0.5); opacity: 0; }
    8%   { opacity: 0.8; }
    50%  { transform: translate3d(18px, -55vh, 0) scale(0.9); }
    92%  { opacity: 0.5; }
    100% { transform: translate3d(-14px, -110vh, 0) scale(1.15); opacity: 0; }
}

/* ═══════════ WATER FX: LIQUID BUTTONS + RIPPLE ═══════════ */
.btn { position: relative; overflow: hidden; }
.btn--primary::before {
    content: '';
    position: absolute;
    left: -30%; right: -30%;
    bottom: -150%;
    height: 180%;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 43%;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
}
.btn--primary:hover::before { transform: translateY(-42%) rotate(200deg); }
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: rippleOut 0.65s ease-out forwards;
    pointer-events: none;
}
@keyframes rippleOut { to { transform: scale(3.2); opacity: 0; } }

/* ═══════════ WATER FX: GRADIENT SHIMMER ═══════════ */
.grad-text {
    background-size: 200% auto;
    animation: gradShift 5.5s ease-in-out infinite;
}
@keyframes gradShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* ═══════════ 3D SCROLL ENTRANCES ═══════════ */
.services__grid .reveal:not(.is-visible),
.reviews__grid .reveal:not(.is-visible),
.symptoms__grid .reveal:not(.is-visible) {
    transform: perspective(900px) rotateX(14deg) translateY(52px);
}
.process__steps .reveal:not(.is-visible) {
    transform: perspective(900px) rotateY(-12deg) translateY(44px);
}
.gallery__track .reveal:not(.is-visible) {
    transform: perspective(900px) rotateY(10deg) translateY(40px) scale(0.94);
}
.services__grid .reveal, .reviews__grid .reveal,
.symptoms__grid .reveal, .process__steps .reveal,
.gallery__track .reveal { transform-origin: center 85%; }

/* ═══════════ TILT GLARE ═══════════ */
.tilt { position: relative; }
.tilt__glare {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    background: radial-gradient(480px circle at var(--gx, 50%) var(--gy, 50%), rgba(255, 255, 255, 0.16), transparent 42%);
    z-index: 3;
}
.tilt:hover .tilt__glare { opacity: 1; }

/* ═══════════ SCROLL PROGRESS (water line) ═══════════ */
.scrollprogress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    width: 0;
    z-index: 200;
    background: var(--grad);
    box-shadow: 0 0 12px rgba(47, 217, 199, 0.85);
    border-radius: 0 3px 3px 0;
}

/* ═══════════ RESPONSIVE ═══════════ */
@media (max-width: 1024px) {
    .header__nav { display: none; }
}

@media (max-width: 860px) {
    .quote__inner { grid-template-columns: 1fr; }
    .meet__grid { grid-template-columns: 1fr; }
    .meet__video { order: -1; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .trustbar__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
}

@media (max-width: 640px) {
    .header__burger { display: flex; }
    .header__phone span { display: none; }
    .header__actions .btn { display: none; }
    .hero { padding-bottom: 7.5rem; }
    .hero__ctas .btn { width: 100%; }
    .hero__trust { gap: 0.5rem 1.2rem; font-size: 1.02rem; }
    .hero__trust li:nth-child(n+3) { display: none; }
    .hero__scroll { display: none; }
    .header__logo-tag { display: none; }
    .header__logo-img { height: 40px; }
    .wopts { grid-template-columns: repeat(2, 1fr); }
    .wfields { grid-template-columns: 1fr; }
    .banner__btns .btn { width: 100%; }
    .ba { aspect-ratio: 4 / 3; }
    .wizard__nav { flex-direction: row; }
}

@media (min-width: 641px) {
    .stickybar { display: none; }
    .footer__bottom { padding-bottom: 1.3rem; }
}

/* ═══════════ MOBILE READABILITY BOOST ═══════════ */
@media (max-width: 640px) {
    html { font-size: 112.5%; } /* 18px base on phones */

    .section__sub { font-size: 1.12rem; }
    .hero__sub { font-size: 1.16rem; }
    .eyebrow { font-size: 0.98rem; letter-spacing: 0.2em; }
    .eyebrow::before, .eyebrow::after { width: 22px; }
    .hero__badge { font-size: 0.95rem; }
    .hero__trust { font-size: 1rem; }

    .symptom p, .card__body p, .step p, .faq__answer,
    .meet__text, .meet__points li { font-size: 1.08rem; }
    .symptom h3 { font-size: 1.25rem; }
    .card__body h3 { font-size: 1.3rem; }
    .step h3 { font-size: 1.2rem; }
    .review p { font-size: 1.12rem; }
    .review footer b { font-size: 1.08rem; }
    .card__link, .symptom__cta { font-size: 1.05rem; }

    .areas__chips span { font-size: 1.05rem; padding: 0.65rem 1.25rem; }
    .areas__note { font-size: 1.08rem; }
    .faq__item summary { font-size: 1.12rem; }
    .quote__perks li { font-size: 1.08rem; }
    .trustbar__item p { font-size: 1.05rem; }

    .wstep legend { font-size: 1.35rem; }
    .wopt span { font-size: 1.05rem; min-height: 96px; }
    .wopts--rows .wopt span { padding: 1.05rem 1.15rem; }
    .wfield label { font-size: 1.02rem; }
    .wfield input, .wfield textarea { font-size: 1.05rem; padding: 1rem 1.05rem; }
    .wizard__privacy { font-size: 0.98rem; }
    .wizard__stepcount { font-size: 0.95rem; }
    .wsuccess h3 { font-size: 1.5rem; }
    .wsuccess p { font-size: 1.05rem; }

    .btn { font-size: 1.06rem; }
    .btn--lg { font-size: 1.14rem; padding: 1.15rem 2.2rem; }
    .stickybar__btn { font-size: 1.05rem; padding: 0.95rem 0.6rem; }

    .footer__col p, .footer__col a { font-size: 1.05rem; }
    .footer__col h4 { font-size: 1.12rem; }
    .footer__bottom p { font-size: 0.95rem; }

    .gallery__item figcaption { font-size: 1rem; }
    .gallery__hint { font-size: 0.95rem; }
    .lux-marquee__inner span { font-size: 1rem; }
    .meet__badge, .ba__tag { font-size: 0.92rem; }
    .banner__content > p { font-size: 1.1rem; }
    .results__cta p { font-size: 1.12rem; }
}

/* ═══════════ REDUCED MOTION ═══════════ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal { opacity: 1; transform: none; }
    .parallax { transform: none !important; }
}
