:root {
    --pink: #D4006A; /* primary brand magenta-pink */
    --pink-light: #F0198A; /* hover / lighter shade */
    --pink-pale: #FDE8F2; /* tint backgrounds */
    --pink-glow: rgba(212,0,106,.25);
    --gold: #C9A84C;
    --gold-light: #E8C96A;
    --gold-pale: #F5EAC8;
    --black: #0A0A0A;
    --dark: #1A1A1A;
    --gray: #4A4A4A;
    --light-gray: #F8F8F6;
    --white: #FFFFFF;
    --shadow: 0 8px 40px rgba(0,0,0,0.10);
    --shadow-deep: 0 20px 60px rgba(0,0,0,0.18);
    --radius: 16px;
    --radius-sm: 10px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans',sans-serif;
    background: #fff;
    color: var(--dark);
    overflow-x: hidden;
}

/* ─── TYPOGRAPHY ─── */
.serif {
    font-family: 'Cormorant Garamond',serif;
}

/* ─── UTILITIES ─── */
.gold {
    color: var(--gold);
}

.center {
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
/*.btn-gold{display:inline-flex;align-items:center;gap:10px;background:linear-gradient(135deg,#C9A84C,#E8C96A,#B8952E);color:#fff;font-family:'DM Sans',sans-serif;font-weight:600;font-size:1rem;padding:16px 36px;border-radius:50px;border:none;cursor:pointer;box-shadow:0 6px 30px rgba(201,168,76,0.45);transition:all .3s;text-decoration:none;letter-spacing:.3px;}*/
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(115deg,var(--pink),var(--pink-light),var(--pink-pale));
    color: #fff;
    font-family: 'DM Sans',sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(201,168,76,0.45);
    transition: all .3s;
    text-decoration: none;
    letter-spacing: .3px;
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(201,168,76,0.55);
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--pink);
    font-family: 'DM Sans',sans-serif;
    font-weight: 600;
    font-size: .9rem;
    padding: 13px 28px;
    border-radius: 50px;
    border: 2px solid var(--pink);
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

    .btn-outline:hover {
        background: var(--gold);
        color: #fff;
    }

/* ─── ANNOUNCEMENT BAR ─── */
.announcement {
    background: linear-gradient(90deg,#0A0A0A,#1A1A1A,#0A0A0A);
    color: var(--gold-light);
    text-align: center;
    padding: 10px 20px;
    font-size: .82rem;
    letter-spacing: .5px;
    position: relative;
    overflow: hidden;
}

    .announcement::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg,transparent,rgba(201,168,76,.1),transparent);
        animation: shimmer 3s infinite;
    }

@keyframes shimmer {
    to {
        left: 100%;
    }
}

.ann-ticker {
    display: inline-flex;
    align-items: center;
    gap: 20px;
}

.ann-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
    }

    50% {
        opacity: .4;
    }
}

/* ─── NAV ─── */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,.15);
    padding: 0 20px;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg,var(--gold),var(--gold-light));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.logo-text {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

    .logo-text span {
        color: var(--gold);
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone {
    font-size: .85rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .nav-phone svg {
        color: var(--pink);
    }

@media(max-width:640px) {
    .nav-phone {
        display: none;
    }

    .nav-cta {
        padding: 11px 20px;
        font-size: .85rem;
    }
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 92vh;
    background: linear-gradient(160deg,#FAFAF8 0%,#F5F0E8 40%,#EDE5D0 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 20px 40px;
}

.hero-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(80px,18vw,200px);
    font-weight: 700;
    color: rgba(201,168,76,.06);
    white-space: nowrap;
    pointer-events: none;
    letter-spacing: 10px;
    z-index: 0;
}

.hero-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212,0,106,.25);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(201,168,76,.15);
}

.hero h1 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(2.2rem,4.5vw,3.6rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 16px;
}

    .hero h1 em {
        font-style: italic;
        color: var(--pink);
    }

.hero-sub {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 300;
}

.hero-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
}

.hero-pill {
    display: flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid rgba(201,168,76,.25);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--dark);
    box-shadow: 0 2px 12px rgba(0,0,0,.06);
}

.pill-icon {
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg,var(--pink),var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: var(--gray);
}

.trust-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg,#0A0A0A,#2A2A2A);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
}
/* Hero image side */
.hero-visual {
    position: relative;
}
/*.hero-img-frame{position:relative;border-radius:30px;overflow:hidden;aspect-ratio:.85/1;background:linear-gradient(160deg,#2A2A2A,#1A1A1A);box-shadow:var(--shadow-deep);}*/
.hero-img-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 0/1;
    background: linear-gradient(160deg,#2A2A2A,#1A1A1A);
    box-shadow: var(--shadow-deep);
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg,#1C1C1C 0%,#2D2520 50%,#1A1A14 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 30px;
    position: relative;
    overflow: hidden;
}

    .hero-img-placeholder::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 60%;
        background: radial-gradient(circle at 50% 30%,rgba(201,168,76,.15),transparent 70%);
    }

.hero-silhouette {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 90%;
    background: linear-gradient(180deg,rgba(201,168,76,.1) 0%,rgba(201,168,76,.05) 40%,transparent 80%);
    border-radius: 100px 100px 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
}

.silhouette-head {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg,#C4A882,#A08060);
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(201,168,76,.3);
}
/*.hero-badge-float{position:absolute;bottom:30px;left:-20px;background:rgba(255,255,255,.95);backdrop-filter:blur(20px);border-radius:var(--radius);padding:14px 18px;box-shadow:var(--shadow);display:flex;align-items:center;gap:12px;min-width:180px;}*/
.hero-badge-float {
    position: absolute;
    bottom: -30px;
    left: -20px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0px;
}
/*.float-num{font-family:'Cormorant Garamond',serif;font-size:1.8rem;font-weight:700;color:var(--gold);line-height:1;padding-bottom: 5px;}*/
.float-num {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--pink);
    line-height: 1;
    padding-bottom: 5px;
}

.float-label {
    font-size: .72rem;
    color: var(--gray);
    line-height: 1.3;
}

.hero-badge-float2 {
    position: absolute;
    top: 30px;
    right: -15px;
    background: rgba(10,10,10,.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 12px 16px;
    box-shadow: var(--shadow-deep);
    display: flex;
    align-items: center;
    gap: 10px;
}

.stars {
    color: var(--gold);
    font-size: .9rem;
}

.float-label2 {
    font-size: .72rem;
    color: rgba(255,255,255,.7);
    line-height: 1.4;
}

@media(max-width:768px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }
    /*.hero-img-frame{aspect-ratio:1.2/1;}*/
    .hero-img-frame {
        aspect-ratio: 0/1;
    }
    /*.hero-badge-float{left:10px;bottom:10px;}*/
    .hero-badge-float {
        left: 10px;
        bottom: -38px;
    }
    /*.hero-badge-float2{right:5px;top:10px;}*/
    .hero-badge-float2 {
        right: -25px;
        top: 10px;
    }
}

/* ─── TRUST BAR ─── */
.trust-bar {
    background: var(--black);
    padding: 24px 20px;
}

.trust-bar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.tb-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.tb-num {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.tb-label {
    font-size: .75rem;
    color: rgba(255,255,255,.55);
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* ─── SECTION HEADERS ─── */
/*.section-tag{display:inline-flex;align-items:center;gap:6px;font-size:.75rem;font-weight:600;color:var(--gold);text-transform:uppercase;letter-spacing:1.5px;margin-bottom:14px;}*/
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    color: var(--pink);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

    .section-tag::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--gold);
    }

h2.display {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(2rem,4vw,3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--black);
}
    /*h2.display em{font-style:italic;color:var(--gold);}*/
    h2.display em {
        font-style: italic;
        color: var(--pink);
    }

/* ─── QUIZ SECTION ─── */
.quiz-section {
    padding: 80px 20px;
    background: linear-gradient(160deg,#0A0A0A,#1A1505);
}

.quiz-wrap {
    max-width: 600px;
    margin: 0 auto;
}

.quiz-header {
    text-align: center;
    margin-bottom: 40px;
}

    .quiz-header h2 {
        font-family: 'Cormorant Garamond',serif;
        font-size: clamp(1.8rem,4vw,2.8rem);
        font-weight: 700;
        color: #fff;
        margin-bottom: 12px;
    }

    .quiz-header p {
        color: rgba(255,255,255,.55);
        font-size: .95rem;
    }
/* Progress */
.quiz-progress {
    margin-bottom: 32px;
}

.progress-labels {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.progress-step {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    font-weight: 500;
}

    .progress-step.active {
        color: var(--gold);
    }

.progress-track {
    height: 4px;
    background: rgba(255,255,255,.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg,var(--gold),var(--gold-light));
    border-radius: 4px;
    transition: width .5s cubic-bezier(.4,0,.2,1);
}
/* Question card */
.quiz-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.15);
    border-radius: 24px;
    padding: 36px 28px;
    backdrop-filter: blur(10px);
}

.q-number {
    font-size: .75rem;
    font-weight: 600;
    color: rgba(201,168,76,.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.q-text {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.7rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 28px;
    line-height: 1.3;
}

.q-options {
    display: grid;
    gap: 12px;
}

    .q-options.two-col {
        grid-template-columns: 1fr 1fr;
    }

.q-opt {
    background: rgba(255,255,255,.05);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all .25s;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    font-size: .95rem;
    font-weight: 500;
}

    .q-opt:hover, .q-opt.selected {
        background: rgba(201,168,76,.12);
        border-color: var(--gold);
        color: var(--gold-light);
    }

.q-opt-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(201,168,76,.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.q-opt-text .opt-label {
    font-weight: 600;
    font-size: .9rem;
}

.q-opt-text .opt-sub {
    font-size: .75rem;
    color: rgba(255,255,255,.4);
    margin-top: 2px;
}

.quiz-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}
/*.btn-next{background:linear-gradient(135deg,var(--gold),var(--gold-light));color:#fff;font-weight:700;font-size:1rem;padding:14px 36px;border-radius:50px;border:none;cursor:pointer;transition:all .3s;box-shadow:0 6px 30px rgba(201,168,76,.4);}*/
.btn-next {
    background: linear-gradient(135deg,var(--pink),var(--pink-light));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 36px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all .3s;
    box-shadow: 0 6px 30px rgba(201,168,76,.4);
}

    .btn-next:hover {
        transform: translateY(-2px);
    }

.btn-back {
    background: transparent;
    border: none;
    color: rgba(255,255,255,.4);
    font-size: .85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── NORWOOD STRIP ── */
.nw-strip-wrap {
    margin-bottom: 18px;
}

.nw-stage-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    justify-content: center;
}

.nw-stage-thumb {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.nw-stage-face {
    width: 80px;
    height: 107px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,.12);
    overflow: hidden;
    position: relative;
    background: #1a1a2e;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .nw-stage-face svg {
        width: 64px;
        height: 86px;
    }

.nw-stage-num {
    font-size: .72rem;
    font-weight: 800;
    color: rgba(255,255,255,.5);
    font-family: 'DM Sans',sans-serif;
    letter-spacing: .5px;
}

.nw-strip-label {
    text-align: center;
    font-size: .7rem;
    color: rgba(255,255,255,.3);
    margin-top: 6px;
    font-style: italic;
}

@media(max-width:540px) {
    .nw-stage-row {
        display: grid;
        grid-template-columns: repeat(3,1fr);
        gap: 8px;
    }

    .nw-stage-thumb {
        width: 100%;
    }

    .nw-stage-face {
        width: 100%;
        height: 100%;
    }

        .nw-stage-face svg {
            width: 52px;
            height: 70px;
        }
}

/* ── NORWOOD OPTION CARDS (2x2) ── */
.nw-opt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 4px;
}

.nw-opt-card {
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    transition: all .22s;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

    .nw-opt-card:hover {
        border-color: rgba(212,0,106,.5);
        background: rgba(212,0,106,.08);
        transform: translateY(-2px);
    }

    .nw-opt-card.selected {
        border-color: var(--pink);
        background: rgba(212,0,106,.12);
        box-shadow: 0 0 0 2px rgba(212,0,106,.3);
    }

        .nw-opt-card.selected::after {
            content: '\2713';
            position: absolute;
            top: 8px;
            right: 10px;
            width: 20px;
            height: 20px;
            background: var(--pink);
            border-radius: 50%;
            font-size: .72rem;
            font-weight: 900;
            color: #fff;
            line-height: 20px;
            text-align: center;
        }

.nw-opt-left {
    flex-shrink: 0;
}

.nw-opt-num {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    font-family: 'DM Sans',sans-serif;
}

.nw-opt-text {
    flex: 1;
}

.nw-opt-label {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.nw-opt-sub {
    font-size: .76rem;
    color: rgba(255,255,255,.45);
    margin-top: 2px;
}
/* Result teaser */
.result-teaser {
    display: none;
    text-align: center;
}

    .result-teaser.show {
        display: block;
    }

.result-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 24px;
    padding: 36px 28px;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}

.result-blur {
    filter: blur(8px);
    pointer-events: none;
    margin-bottom: 24px;
}

.result-bars {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.result-bar-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.bar-label {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
    width: 100px;
    flex-shrink: 0;
}

.bar-track {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,.1);
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg,var(--gold),var(--gold-light));
}

.result-unlock {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent,rgba(10,10,5,.95));
    text-align: center;
}

.unlock-text {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
}

.unlock-sub {
    font-size: .8rem;
    color: rgba(255,255,255,.5);
}
/* Lead Form */
.lead-form-wrap {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.2);
    border-radius: 24px;
    padding: 32px 28px;
}

.lead-form-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.lead-form-sub {
    font-size: .85rem;
    color: rgba(255,255,255,.45);
    margin-bottom: 24px;
}

.form-field {
    margin-bottom: 16px;
}

    .form-field label {
        display: block;
        font-size: .8rem;
        font-weight: 600;
        color: rgba(255,255,255,.55);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: .5px;
    }

    .form-field input, .form-field select {
        width: 100%;
        background: rgba(255,255,255,.06);
        border: 1.5px solid rgba(255,255,255,.12);
        border-radius: 12px;
        padding: 14px 18px;
        color: #fff;
        font-family: 'DM Sans',sans-serif;
        font-size: .95rem;
        outline: none;
        transition: border-color .2s;
    }

        .form-field input::placeholder {
            color: rgba(255,255,255,.25);
        }

        .form-field input:focus, .form-field select:focus {
            border-color: var(--gold);
        }

        .form-field select option {
            background: #1A1A1A;
            color: #fff;
        }

.phone-wrap {
    display: flex;
    gap: 10px;
}

.phone-code {
    width: 80px;
    flex-shrink: 0;
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.12);
    border-radius: 12px;
    padding: 14px 12px;
    color: var(--gold);
    font-family: 'DM Sans',sans-serif;
    font-size: .9rem;
    text-align: center;
    font-weight: 600;
}
/*.btn-submit{width:100%;background:linear-gradient(135deg,#C9A84C,#E8C96A,#B8952E);color:#fff;font-family:'DM Sans',sans-serif;font-weight:700;font-size:1.05rem;padding:16px;border-radius:14px;border:none;cursor:pointer;box-shadow:0 8px 30px rgba(201,168,76,.45);transition:all .3s;letter-spacing:.3px;margin-top:8px;}*/
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg,var(--pink),var(--pink-light), var(--pink-pale));
    color: #fff;
    font-family: 'DM Sans',sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 16px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(201,168,76,.45);
    transition: all .3s;
    letter-spacing: .3px;
    margin-top: 8px;
}

    .btn-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 40px rgba(201,168,76,.55);
    }

.form-assurance {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.assurance-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    color: rgba(255,255,255,.35);
}

/* ─── SUCCESS ─── */
.success-screen {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

    .success-screen.show {
        display: block;
    }

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,var(--gold),var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.success-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
}

.success-sub {
    color: rgba(255,255,255,.5);
    font-size: .95rem;
    line-height: 1.6;
}

/* ─── TREATMENTS ─── */
.treatments {
    padding: 80px 20px;
    background: var(--light-gray);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 24px;
    margin-top: 48px;
}

/* ── NEW IMAGE-STYLE TREATMENT CARD ── */
.treatment-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,.08);
    transition: all .35s;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,.06);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

    .treatment-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 16px 48px rgba(212,0,106,.15);
        border-color: rgba(212,0,106,.25);
    }

.tc-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: #f0f0f0;
    flex-shrink: 0;
}

    .tc-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .45s ease;
    }

.treatment-card:hover .tc-image img {
    transform: scale(1.06);
}

.tc-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    background: linear-gradient(135deg,#f8f0ff,#ffe8f4);
}

.tc-body {
    padding: 22px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tc-tag {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    color: var(--pink);
    background: var(--pink-pale);
    border-radius: 50px;
    padding: 4px 12px;
    margin-bottom: 10px;
    letter-spacing: .3px;
    text-transform: uppercase;
    width: fit-content;
}

.tc-title {
    /*font-family: 'Cormorant Garamond',serif;*/
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.25;
}

.tc-desc {
    font-size: .83rem;
    color: var(--gray);
    line-height: 1.6;
    flex: 1;
}

.tc-footer {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--pink);
}

    .tc-footer svg {
        width: 14px;
        height: 14px;
    }

@media(max-width:600px) {
    .treatments {
        padding: 80px 0px;
    }

    .treatments-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tc-image {
        height: 160px;
    }
}

/* ─── SOCIAL PROOF ─── */
.social-proof {
    padding: 80px 20px;
    background: #fff;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: none;
    margin-top: 36px;
}

    .reviews-carousel::-webkit-scrollbar {
        display: none;
    }

.review-card {
    background: #fff;
    border: 1px solid rgba(201,168,76,.2);
    border-radius: var(--radius);
    padding: 24px;
    min-width: 280px;
    box-shadow: 0 4px 20px rgba(0,0,0,.06);
    flex-shrink: 0;
}

.rc-stars {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 10px;
}

.rc-text {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 14px;
}

.rc-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rc-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg,#C4A882,#A08060);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond',serif;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.rc-name {
    font-size: .85rem;
    font-weight: 600;
    color: var(--dark);
}

.rc-city {
    font-size: .75rem;
    color: var(--gray);
}
/* ── REAL TRANSFORMATIONS ── */
.transformations-section {
    background: linear-gradient(160deg,#fef0f6,#fff8fb);
    padding: 80px 20px;
}

    .transformations-section .section-tag {
        color: var(--pink);
    }

    .transformations-section .display em {
        color: var(--pink);
    }

.transform-carousel-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
}

.transform-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 4px 20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

    .transform-carousel::-webkit-scrollbar {
        display: none;
    }

.transform-card {
    flex: 0 0 340px;
    scroll-snap-align: start;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 32px rgba(212,0,106,.10);
    transition: transform .3s,box-shadow .3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

    .transform-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 16px 48px rgba(212,0,106,.18);
    }

.transform-img-wrap {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

    .transform-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
    }

.transform-footer {
    background: var(--pink);
    padding: 18px 22px;
    flex-shrink: 0;
}

.transform-quote {
    font-size: .88rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 6px;
}

.transform-patient {
    font-size: .75rem;
    color: rgba(255,255,255,.75);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .transform-patient::before {
        content: '✓';
        width: 14px;
        height: 14px;
        background: rgba(255,255,255,.25);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: .6rem;
    }
/* Carousel nav dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(212,0,106,.25);
    border: none;
    cursor: pointer;
    transition: all .25s;
    padding: 0;
}

    .carousel-dot.active {
        background: var(--pink);
        width: 24px;
        border-radius: 4px;
    }
/* Scroll arrows */
.carousel-arrows {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 16px;
}

.carousel-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(212,0,106,.3);
    background: #fff;
    color: var(--pink);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}

    .carousel-arrow:hover {
        background: var(--pink);
        color: #fff;
        border-color: var(--pink);
    }

@media(max-width:600px) {
    .transform-card {
        flex: 0 0 80vw;
    }

    .transform-img-wrap {
        height: 220px;
    }
}
/* Doctors */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 24px;
    margin-top: 48px;
}

.doctor-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(201,168,76,.12);
    transition: transform .3s;
}

    .doctor-card:hover {
        transform: translateY(-4px);
    }

.dc-img {
    aspect-ratio: 1;
    background: linear-gradient(160deg,#1C1C1C,#2D2520);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.dc-avatar {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,rgba(201,168,76,.1),rgba(201,168,76,.05));
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.dc-silhouette {
    width: 65%;
    height: 75%;
    background: linear-gradient(180deg,#C4A882,#A08060);
    border-radius: 50% 50% 0 0;
    margin-bottom: -2px;
    box-shadow: 0 0 40px rgba(201,168,76,.2);
}

.dc-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--gold);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.dc-info {
    padding: 18px;
}

.dc-name {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--black);
}

.dc-role {
    font-size: .78rem;
    color: var(--gold);
    font-weight: 600;
    margin: 3px 0 6px;
}

.dc-exp {
    font-size: .78rem;
    color: var(--gray);
}


/* Founder Section */
.founder-section {
    padding: 80px 20px;
    /*background: #f8f5f7;*/
    background: #ffffff;
}

.founder-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: center;
}

.founder-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
}

.founder-img {
    width: 100%;
    display: block;
}

.founder-info {
    text-align: center;
    padding: 20px;
}

    .founder-info h3 {
        font-family: 'Cormorant Garamond',serif;
        font-size: 2rem;
        color: var(--black);
        margin-bottom: 5px;
    }

    .founder-info p {
        color: var(--gray);
    }

.founder-exp {
    position: absolute;
    left: -45px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    color: var(--pink);
    font-weight: 700;
    letter-spacing: 4px;
}

.founder-content .section-tag {
    margin-bottom: 10px;
}

.founder-content h2 {
    font-family: 'Cormorant Garamond',serif;
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.founder-content p {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.founder-list {
    list-style: none;
    padding: 0;
}

    .founder-list li {
        margin: 12px 0;
        color: var(--gray);
    }

        .founder-list li:before {
            content: '✓';
            color: var(--pink);
            font-weight: bold;
            margin-right: 10px;
        }

@media(max-width:768px) {
    .founder-wrap {
        grid-template-columns: 1fr;
    }

    .founder-exp {
        display: none;
    }

    .founder-content h2 {
        font-size: 2.3rem;
    }
}

/* ─── WHY US ─── */
.why-us {
    padding: 80px 20px;
    background: var(--black);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
    gap: 24px;
    margin-top: 48px;
}

.why-card {
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(201,168,76,.12);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .3s;
}
    /*.why-card:hover{background:rgba(201,168,76,.06);border-color:rgba(201,168,76,.3);}*/
    .why-card:hover {
        background: rgba(212,0,106,.06);
        border-color: rgba(212,0,106,.3);
    }

.wc-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg,rgba(201,168,76,.2),rgba(201,168,76,.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
    border: 1px solid rgba(201,168,76,.2);
}

.wc-title {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.wc-desc {
    font-size: .82rem;
    color: rgba(255,255,255,.45);
    line-height: 1.5;
}

/* ─── URGENCY ─── */
/*.urgency{background:linear-gradient(135deg,var(--gold),var(--gold-light),#A8822A);padding:24px 20px;text-align:center;}*/
.urgency {
    background: linear-gradient(135deg,var(--pink),var(--pink-light),#A8822A);
    padding: 24px 20px;
    text-align: center;
}

.urg-inner {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.urg-icon {
    font-size: 1.4rem;
}

.urg-text {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
}

.urg-sub {
    font-size: .8rem;
    color: rgba(255,255,255,.8);
}

.urg-slots {
    background: rgba(255,255,255,.25);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: .82rem;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(4px);
}

.slots-num {
    font-family: 'Cormorant Garamond',serif;
    font-size: 1.2rem;
    font-weight: 700;
}

/* ─── STICKY ELEMENTS ─── */
.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.08);
    padding: 12px 16px;
    display: flex;
    gap: 10px;
    box-shadow: 0 -4px 30px rgba(0,0,0,.12);
}

@media(min-width:769px) {
    .sticky-bar {
        display: none;
    }
}

.sticky-call, .sticky-wa, .sticky-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 12px;
    padding: 13px 8px;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans',sans-serif;
}

.sticky-call {
    background: #0A0A0A;
    color: #fff;
}

.sticky-wa {
    background: #25D366;
    color: #fff;
}
/*.sticky-cta{background:linear-gradient(135deg,var(--gold),var(--gold-light));color:#fff;flex:1.5;}*/
.sticky-cta {
    background: linear-gradient(135deg,var(--pink),var(--pink-light));
    color: #fff;
    flex: 1.5;
}
/* Floating desktop buttons */
.float-wa {
    position: fixed;
    right: 24px;
    bottom: 90px;
    z-index: 180;
    width: 54px;
    height: 54px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(37,211,102,.45);
    cursor: pointer;
    transition: transform .2s;
}

    .float-wa:hover {
        transform: scale(1.1);
    }

.float-call {
    position: fixed;
    right: 24px;
    bottom: 156px;
    z-index: 180;
    width: 54px;
    height: 54px;
    background: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 30px rgba(0,0,0,.3);
    cursor: pointer;
    transition: transform .2s;
}

    .float-call:hover {
        transform: scale(1.1);
    }

@media(max-width:768px) {
    .float-wa, .float-call {
        display: none;
    }
}

/* ─── FOOTER ─── */
/*footer{background:#0A0A0A;padding:40px 20px 80px;}*/
footer {
    background: #f3f3f3;
    padding: 40px 20px 80px;
}

@media(min-width:769px) {
    footer {
        padding: 40px 20px;
    }
}
/*.footer-inner{max-width:1100px;margin:0 auto;display:flex;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:20px;}*/
.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.footer-logo .logo-mark {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
}

.footer-logo .logo-text {
    font-size: 1.6rem;
    color: #fff;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .footer-links a {
        font-size: .8rem;
        color: rgba(0,0,0,.8);
        text-decoration: none;
        transition: color .2s;
    }

        .footer-links a:hover {
            color: var(--gold);
        }
/*.footer-copy{font-size:.75rem;color:rgba(0,0,0,.25);}*/
/*.footer-copy{font-size:.75rem;color:rgba(0,0,0,.75);}*/
.footer-copy {
    font-size: .9rem;
    color: rgba(0,0,0,.75);
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s,transform .7s;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes float {
    0%,100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.float-anim {
    animation: float 4s ease-in-out infinite;
}

/* ─── QUIZ TRANSITIONS ─── */
.quiz-step {
    transition: opacity .4s,transform .4s;
}

    .quiz-step.exit {
        opacity: 0;
        transform: translateX(-20px);
    }

    .quiz-step.enter {
        opacity: 0;
        transform: translateX(20px);
    }

/* Mid-page CTA */
.mid-cta {
    padding: 60px 20px;
    background: linear-gradient(160deg,#F5F0E8,#EDE5D0);
}

.mid-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.mid-cta h2 {
    font-family: 'Cormorant Garamond',serif;
    font-size: clamp(1.8rem,3.5vw,2.5rem);
    font-weight: 700;
    color: var(--black);
    margin-bottom: 12px;
}

.mid-cta p {
    color: var(--gray);
    margin-bottom: 28px;
    font-size: .95rem;
}

.reviews-slider-container {
    position: relative;
    max-width: 1200px;
    margin: auto;
}

.reviews-wrapper {
    overflow: hidden;
    width: 100%;
}

.reviews-carousel {
    display: flex;
    gap: 20px;
    transition: transform .5s ease;
    will-change: transform;
    overflow: visible !important;
}

.review-card {
    flex: 0 0 calc(50% - 10px) !important;
    max-width: calc(50% - 10px) !important;
}

@media(max-width:768px) {
    .review-card {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

.review-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 3px 15px rgba(0,0,0,.15);
    font-size: 20px;
}

    .review-arrow.prev {
        left: -20px;
    }

    .review-arrow.next {
        right: -20px;
    }

.review-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

    .review-dot.active {
        background: #D4006A;
    }
