/* ============================================================
   TOKENS
============================================================ */
:root {
    --ivory: #FDFBF7;
    --ivory-mid: #F5F1EA;
    --ivory-deep: #EAE4D8;
    --slate: #1A2332;
    --slate-mid: #243044;
    --slate-light: #2E3D56;
    --gold: #B8861A;
    --gold-lt: #CFA040;
    --gold-pale: #FAF4E6;
    --gold-tint: #F2E8CC;
    --white: #FFFFFF;
    --ink: #0F1720;
    --muted: #6B7A8D;
    --muted-lt: #9AAABB;

    --sh-xs: 0 1px 4px rgba(15, 23, 32, 0.05);
    --sh-sm: 0 3px 14px rgba(15, 23, 32, 0.08);
    --sh-md: 0 8px 32px rgba(15, 23, 32, 0.10);
    --sh-lg: 0 18px 56px rgba(15, 23, 32, 0.12);

    --r: 12px;
    --r-lg: 22px;
    --r-pill: 100px;
    --mw: 1080px;
    --ease: 0.24s cubic-bezier(.4, 0, .2, 1);
}

/* ============================================================
   RESET
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Mulish', sans-serif;
    background: var(--ivory);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ============================================================
   TYPE
============================================================ */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    line-height: 1.12;
    color: var(--slate);
}

h1 {
    font-size: clamp(2.1rem, 4.8vw, 3.6rem);
    font-weight: 700;
}

h2 {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 600;
}

h3 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
}

p {
    line-height: 1.78;
}

.eyebrow {
    font-family: 'Mulish', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.eyebrow::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
}

.eyebrow-c {
    justify-content: center;
}

/* ============================================================
   LAYOUT
============================================================ */
.wrap {
    width: 100%;
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 96px 0;
}

.tc {
    text-align: center;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 14px 28px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    transition: var(--ease);
    white-space: nowrap;
    text-decoration: none;
    letter-spacing: 0.01em;
}

.btn-slate {
    background: var(--slate);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(26, 35, 50, 0.28);
}

.btn-slate:hover {
    background: var(--slate-mid);
    box-shadow: 0 8px 28px rgba(26, 35, 50, 0.36);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(184, 134, 26, 0.30);
}

.btn-gold:hover {
    background: var(--gold-lt);
    box-shadow: 0 8px 28px rgba(184, 134, 26, 0.40);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--slate);
    border: 1.5px solid var(--ivory-deep);
}

.btn-ghost:hover {
    border-color: var(--slate);
    background: var(--ivory-mid);
}

.btn-ghost-inv {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-inv:hover {
    border-color: rgba(255, 255, 255, 0.7);
    background: rgba(255, 255, 255, 0.08);
}

/* Phone pill */
.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--white);
    border: 1.5px solid var(--ivory-deep);
    border-radius: var(--r-pill);
    padding: 13px 28px;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--slate);
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    cursor: pointer;
}

.phone-pill:hover {
    border-color: var(--gold);
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
}

.phone-pill svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.disc {
    font-size: 0.77rem;
    color: var(--muted-lt);
    margin-top: 12px;
}

/* ============================================================
   NAVBAR
============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--ivory-mid);
}

.nav-inner {
    max-width: var(--mw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 32px;
}

.brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate);
    display: flex;
    align-items: center;
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-a {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--muted);
    transition: color var(--ease);
}

.nav-a:hover {
    color: var(--slate);
}

/* ============================================================
   HERO
============================================================ */
.hero {
    padding: 130px 0 88px;
    background: var(--ivory);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-tint) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 60px;
    align-items: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--ivory-deep);
    border-radius: var(--r-pill);
    padding: 5px 14px 5px 8px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: 22px;
    box-shadow: var(--sh-xs);
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .35
    }
}

.hero-h1 {
    margin-bottom: 18px;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.78;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.hero-img img{
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 2rem;
}

.hc-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.hc-perks {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 28px;
}

.hc-perk {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.hc-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.hc-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
}

.hc-cta .btn {
    width: 100%;
    justify-content: center;
}

.sb-inner {
    max-width: var(--mw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sb-cell {
    padding: 28px 24px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
}

.sb-fig {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.sb-label {
    line-height: 1.35;
}

/* ============================================================
   ABOUT
============================================================ */
.about-sec {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 28px;
}

.about-text p {
    font-size: 1.02rem;
    margin-bottom: 14px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Visual block: abstract grid of varying rects */
.about-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 10px;
}

.av-block {
    background: var(--ivory-mid);
    border-radius: var(--r);
    border: 1px solid var(--ivory-deep);
    transition: var(--ease);
}

.av-block:hover {
    background: var(--gold-pale);
    border-color: rgba(184, 134, 26, 0.2);
}

.av-1 {
    aspect-ratio: 1;
}

.av-2 {
    aspect-ratio: 1/1.5;
}

.av-3 {
    aspect-ratio: 1/0.7;
    grid-column: span 2;
}

.av-4 {
    aspect-ratio: 1/1.3;
}

.av-5 {
    aspect-ratio: 1;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.hiw-sec {
    background: var(--ivory);
}

.hiw-head {
    max-width: 560px;
    margin: 0 auto 60px;
    text-align: center;
}

.hiw-head h2 {
    margin-bottom: 12px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.step-c {
    background: var(--white);
    border: 1.5px solid var(--ivory-deep);
    border-radius: var(--r);
    padding: 32px 22px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--sh-xs);
    transition: var(--ease);
}

.step-c:hover {
    border-color: rgba(184, 134, 26, 0.3);
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
}

.step-bubble {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gold-pale);
    border: 2px solid var(--gold-tint);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 2;
    transition: var(--ease);
}

.step-c:hover .step-bubble {
    background: var(--slate);
    color: var(--white);
    border-color: var(--slate);
}

.step-c h3 {
    margin-bottom: 8px;
}

.step-c p {
    font-size: 0.86rem;
}

.hiw-ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 48px;
}

/* ============================================================
   GENDER SECTION
============================================================ */
.gender-sec {
    background: var(--white);
}

.gender-intro {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 44px;
}

.gender-intro h2 {
    margin-bottom: 10px;
}

.gender-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gc {
    border-radius: var(--r-lg);
    padding: 50px 42px;
    position: relative;
    overflow: hidden;
}

.gc-women {
    background: var(--ivory-mid);
    border: 1.5px solid var(--ivory-deep);
}

.gc-men {
    background: var(--slate);
    border: 1.5px solid var(--slate-light);
}

.gc-women::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-tint) 0%, transparent 70%);
    pointer-events: none;
}

.gc-men::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 134, 26, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.gc-tag {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.gc-women .gc-tag {
    color: var(--gold);
}

.gc-men .gc-tag {
    color: rgba(255, 255, 255, 0.4);
}

.gc-women h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    color: var(--slate);
    margin-bottom: 8px;
}

.gc-men h3 {
    font-size: clamp(1.2rem, 2vw, 1.55rem);
    color: var(--white);
    margin-bottom: 8px;
}

.gc-tagline {
    margin-bottom: 26px;
    line-height: 1.65;
}


.gc-men .gc-tagline {
    color: rgba(255, 255, 255, 0.55);
}

.gc-list {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 32px;
}

.gc-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}

.gc-women .gc-item {
    color: var(--muted);
}

.gc-men .gc-item {
    color: rgba(255, 255, 255, 0.7);
}

.gc-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gc-women .gc-check {
    background: var(--gold-pale);
}

.gc-men .gc-check {
    background: rgba(184, 134, 26, 0.2);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-sec {
    background: var(--slate);
    padding: 96px 0;
}

.testi-intro {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 52px;
}

.testi-intro .eyebrow {
    color: rgba(255, 255, 255, 0.35);
    justify-content: center;
}

.testi-intro .eyebrow::before {
    background: rgba(255, 255, 255, 0.25);
}

.testi-intro h2 {
    color: var(--white);
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.tc {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    transition: var(--ease);
}

.tc:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(184, 134, 26, 0.3);
    transform: translateY(-4px);
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.star {
    width: 12px;
    height: 12px;
    fill: #FBBF24;
}

.tc-hl {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.45;
}

.tc-body {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.75;
    margin-bottom: 22px;
}

.tc-foot {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tc-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(184, 134, 26, 0.2);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    color: var(--gold-lt);
}

.tc-name {
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--white);
    display: block;
}

.tc-loc {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.35);
    display: block;
}

/* ============================================================
   WHY CHOOSE
============================================================ */
.why-sec {
    background: var(--ivory);
}

.why-intro {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 52px;
}

.why-intro h2 {
    margin-bottom: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.why-card {
    background: var(--white);
    border: 1.5px solid var(--ivory-deep);
    border-radius: var(--r);
    padding: 38px 32px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    box-shadow: var(--sh-xs);
    transition: var(--ease);
}

.why-card:hover {
    border-color: rgba(184, 134, 26, 0.25);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.why-n {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--ivory-deep);
    line-height: 0.9;
    flex-shrink: 0;
    min-width: 32px;
}

.why-body h3 {
    color: var(--slate);
    margin-bottom: 8px;
}

.why-body p {
    font-size: 0.88rem;
}

/* ============================================================
   WHAT TO ASK - conversation card list
============================================================ */
.ask-sec {
    background: var(--gold-pale);
}

.ask-intro {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 48px;
}

.ask-intro h2 {
    margin-bottom: 12px;
}

.ask-intro p {
    font-size: 1rem;
}

.ask-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.ask-card {
    background: var(--white);
    border: 1.5px solid rgba(184, 134, 26, 0.15);
    border-radius: var(--r);
    padding: 30px 28px;
    box-shadow: var(--sh-xs);
    transition: var(--ease);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ask-card:hover {
    border-color: rgba(184, 134, 26, 0.35);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.ask-card:last-child:nth-child(odd) {
    grid-column: span 2;
    max-width: 430px;
    margin: 0 auto;
}

.ask-num {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.02em;
}

.ask-q {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--slate);
    line-height: 1.35;
}

.ask-a {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ============================================================
   SAFETY
============================================================ */
.safety-sec {
    background: var(--white);
}

.safety-intro {
    text-align: center;
    max-width: 500px;
    margin: 0 auto 48px;
}

.safety-intro h2 {
    margin-bottom: 10px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sfc {
    background: var(--ivory-mid);
    border: 1.5px solid var(--ivory-deep);
    border-radius: var(--r);
    padding: 36px 28px;
    transition: var(--ease);
}

.sfc:hover {
    background: var(--white);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.sfc-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: var(--gold-pale);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sfc-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sfc h3 {
    color: var(--slate);
    margin-bottom: 8px;
}

.sfc p {
    font-size: 0.88rem;
}

/* ============================================================
   FAQ
============================================================ */
.faq-sec {
    background: var(--ivory);
}

.faq-intro {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 44px;
}

.faq-intro h2 {
    margin-bottom: 10px;
}

.faq-wrap {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.fi {
    background: var(--white);
    border: 1.5px solid var(--ivory-deep);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color var(--ease);
}

.fi.open {
    border-color: rgba(184, 134, 26, 0.35);
}

.fq {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 26px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Mulish', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--slate);
    transition: color var(--ease);
}

.fq:hover {
    color: var(--gold);
}

.fi-tog {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--ivory-mid);
    border: 1.5px solid var(--ivory-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--slate);
    line-height: 1;
    transition: transform var(--ease), background var(--ease), color var(--ease);
}

.fi.open .fi-tog {
    transform: rotate(45deg);
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.fa {
    max-height: 0;
    overflow: hidden;
    padding: 0 26px;
    transition: max-height 0.36s ease, padding 0.24s;
}

.fi.open .fa {
    max-height: 200px;
    padding: 0 26px 20px;
}

.fa p {
    font-size: 0.91rem;
}

/* ============================================================
   FINAL CTA
============================================================ */
.cta-sec {
    background: var(--slate);
    padding: 96px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 134, 26, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-sec::after {
    content: '';
    position: absolute;
    top: -60px;
    left: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 134, 26, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner .eyebrow {
    color: rgba(255, 255, 255, 0.35);
    justify-content: center;
}

.cta-inner .eyebrow::before {
    background: rgba(255, 255, 255, 0.25);
}

.cta-inner h2 {
    color: var(--white);
    margin-bottom: 14px;
}

.cta-sub {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 520px;
    margin: 0 auto 34px;
    line-height: 1.78;
}

.cta-acts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
}

.phone-pill-inv {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: rgba(255, 255, 255, 0.07);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--r-pill);
    padding: 13px 28px;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.4rem;
    color: var(--white);
    transition: var(--ease);
    cursor: pointer;
}

.phone-pill-inv:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.phone-pill-inv svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--gold-lt);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.disc-inv {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 12px;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: var(--ink);
    padding: 26px 32px;
}

.foot-in {
    max-width: var(--mw);
    margin: 0 auto;
}

.foot-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.foot-brand .accent {
    color: var(--gold-lt);
}

.foot-copy {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.65;
    text-align: center;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.52s ease, transform 0.52s ease;
}

.rv.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:960px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        max-width: 420px;
    }
    .hero-img{
        aspect-ratio: 3/2;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-visual {
        display: none;
    }

    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid::before {
        display: none;
    }

    .gender-grid {
        grid-template-columns: 1fr;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .ask-grid {
        grid-template-columns: 1fr;
    }

    .ask-card:last-child:nth-child(odd) {
        grid-column: span 1;
        max-width: 100%;
    }

    .safety-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .sb-inner {
        grid-template-columns: repeat(2, 1fr);
    }



}

@media(max-width:600px) {
    .wrap {
        padding: 0 20px;
    }

    .nav-links .nav-a {
        display: none;
    }

    .hero {
        padding: 100px 0 64px;
    }

    section {
        padding: 72px 0 !important;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .gc {
        padding: 36px 28px;
    }

    .foot-in {
        flex-direction: column;
        align-items: flex-start;
    }

    .foot-copy {
        text-align: left;
    }
}

@media(prefers-reduced-motion:reduce) {
    .rv {
        opacity: 1;
        transform: none;
        transition: none;
    }

    *,
    .live-dot {
        animation: none !important;
        transition: none !important;
    }
}