*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --forest: #12331d;
    --forest-2: #1f5230;
    --meadow: #4f9d68;
    --mint: #eaf7ed;
    --leaf: #b8e2bd;
    --cream: #fffaf0;
    --sun: #f3c979;
    --gold: #c8963e;
    --rose: #f3ded5;
    --ink: #142117;
    --text: #263528;
    --muted: #687b6c;
    --line: rgba(46, 94, 58, 0.14);
    --glass: rgba(255, 255, 255, 0.76);
    --shadow: 0 24px 70px rgba(18, 51, 29, 0.16);
    --shadow-soft: 0 14px 40px rgba(18, 51, 29, 0.1);
    --radius-lg: 34px;
    --radius-md: 24px;
    --radius-sm: 16px;
    --max: 1160px;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 2%, rgba(243, 201, 121, 0.28), transparent 28rem),
        radial-gradient(circle at 88% 8%, rgba(79, 157, 104, 0.22), transparent 30rem),
        linear-gradient(180deg, #fbfff8 0%, #f5fbf2 36%, #fffaf0 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(46, 94, 58, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(46, 94, 58, 0.035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

body::after {
    content: "";
    position: fixed;
    inset: auto -20vw -30vw -20vw;
    height: 42vw;
    background: radial-gradient(ellipse at center, rgba(31, 82, 48, 0.2), transparent 64%);
    z-index: -2;
    pointer-events: none;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

::selection {
    background: rgba(79, 157, 104, 0.24);
}

.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--meadow), var(--forest-2));
    z-index: 999;
    box-shadow: 0 0 20px rgba(79, 157, 104, 0.45);
}

.aurora {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: -1;
}

.orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(3px);
    opacity: 0.55;
    animation: floatOrb 16s ease-in-out infinite;
}

.orb.one {
    width: 220px;
    height: 220px;
    left: -70px;
    top: 140px;
    background: rgba(184, 226, 189, 0.42);
}

.orb.two {
    width: 300px;
    height: 300px;
    right: -120px;
    top: 470px;
    background: rgba(243, 201, 121, 0.3);
    animation-delay: -5s;
}

.orb.three {
    width: 180px;
    height: 180px;
    left: 52vw;
    top: 76vh;
    background: rgba(243, 222, 213, 0.42);
    animation-delay: -9s;
}

@keyframes floatOrb {

    0%,
    100% {
        transform: translate3d(0, 0, 0) scale(1);
    }

    50% {
        transform: translate3d(26px, -34px, 0) scale(1.08);
    }
}

.floating-leaves {
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.leaf-petal {
    position: absolute;
    width: 12px;
    height: 22px;
    border-radius: 90% 0 90% 0;
    background: linear-gradient(145deg, rgba(184, 226, 189, 0.74), rgba(79, 157, 104, 0.22));
    box-shadow: 0 8px 22px rgba(18, 51, 29, 0.1);
    animation: drift linear forwards;
}

@keyframes drift {
    from {
        transform: translate3d(0, -10vh, 0) rotate(0deg);
        opacity: 0;
    }

    12% {
        opacity: 0.72;
    }

    to {
        transform: translate3d(var(--x), 110vh, 0) rotate(540deg);
        opacity: 0;
    }
}

.wrap {
    max-width: var(--max);
    margin: 0 auto;
    width: min(100% - 36px, var(--max));
}

.section-pad {
    padding: 96px 0;
}

.nav {
    position: sticky;
    top: 14px;
    z-index: 50;
    margin: 14px auto 0;
    width: min(100% - 32px, var(--max));
    min-height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.74);
    background: rgba(255, 255, 255, 0.72);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 12px 10px 22px;
    box-shadow: 0 18px 60px rgba(18, 51, 29, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.nav.is-scrolled {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 46px rgba(18, 51, 29, 0.16);
}

.brand {
    font-size: 1.16rem;
    font-weight: 900;
    color: var(--forest);
    letter-spacing: -0.03em;
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    background: conic-gradient(from 145deg, var(--forest), var(--meadow), var(--sun), var(--forest));
    color: white;
    box-shadow: 0 12px 26px rgba(46, 94, 58, 0.24);
    position: relative;
    overflow: hidden;
}

.brand-mark::after {
    content: "";
    width: 16px;
    height: 23px;
    border-radius: 100% 0 100% 0;
    background: rgba(255, 255, 255, 0.88);
    transform: rotate(45deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(38, 53, 40, 0.78);
    font-size: 0.88rem;
    font-weight: 750;
}

.nav-links a {
    border-radius: 999px;
    padding: 9px 13px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
    color: var(--forest);
    background: rgba(79, 157, 104, 0.1);
    transform: translateY(-1px);
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--forest), var(--forest-2));
    font-size: 0.92rem;
    font-weight: 850;
    padding: 13px 18px;
    border-radius: 999px;
    box-shadow: 0 12px 34px rgba(31, 82, 48, 0.24);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.nav-cta:hover,
.btn-primary:hover,
.btn-light:hover,
.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 44px rgba(31, 82, 48, 0.25);
}

.phone-dot {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
}

.hero {
    position: relative;
    padding: 96px 0 88px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.74fr);
    gap: 54px;
    align-items: center;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 850;
    color: var(--forest-2);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(46, 94, 58, 0.12);
    border-radius: 999px;
    padding: 9px 13px;
    box-shadow: 0 12px 34px rgba(18, 51, 29, 0.08);
    margin-bottom: 24px;
}

.pill .ping {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--meadow);
    box-shadow: 0 0 0 0 rgba(79, 157, 104, 0.54);
    animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
    100% {
        box-shadow: 0 0 0 13px rgba(79, 157, 104, 0);
    }
}

.hero h1 {
    max-width: 820px;
    font-size: clamp(2.5rem, 8.1vw, 4.5rem);
    font-weight: 950;
    line-height: 0.93;
    color: var(--ink);
    letter-spacing: -0.075em;
    margin-bottom: 24px;
}

.hero h1 .soft {
    color: transparent;
    background: linear-gradient(115deg, var(--forest), var(--meadow) 48%, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    filter: drop-shadow(0 10px 26px rgba(79, 157, 104, 0.14));
}

.hero-sub {
    font-size: 1rem;
    color: var(--forest-2);
    font-weight: 500;
    line-height: 1.42;
    margin-bottom: 34px;
}

.cta-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
}

.btn-primary,
.btn-light,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    border-radius: 999px;
    font-weight: 900;
    letter-spacing: -0.02em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--forest) 0%, var(--forest-2) 54%, var(--meadow) 100%);
    padding: 17px 31px;
    font-size: 1.05rem;
    box-shadow: 0 18px 48px rgba(31, 82, 48, 0.27);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-120%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
    transition: transform 0.75s ease;
}

.btn-primary:hover::before {
    transform: translateX(120%);
}

.hero-note {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-width: 690px;
    margin-top: 34px;
}

.trust-chip {
    position: relative;
    overflow: hidden;
    min-height: 88px;
    padding: 18px 18px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.64);
    border: 1px solid rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 46px rgba(18, 51, 29, 0.08);
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 850;
}

.trust-chip::before {
    content: "";
    display: block;
    width: 34px;
    height: 4px;
    border-radius: 99px;
    margin-bottom: 13px;
    background: linear-gradient(90deg, var(--gold), var(--meadow));
}

.hero-art {
    position: relative;
    min-height: 560px;
    display: grid;
    place-items: center;
}

.phone-scene {
    position: relative;
    width: min(100%, 420px);
    min-height: 520px;
    border-radius: 44px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.36)),
        radial-gradient(circle at 20% 12%, rgba(243, 201, 121, 0.44), transparent 34%),
        radial-gradient(circle at 84% 88%, rgba(79, 157, 104, 0.36), transparent 36%);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow);
    isolation: isolate;
    overflow: hidden;
}

.phone-scene::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 34px;
    border: 1px solid rgba(18, 51, 29, 0.08);
    pointer-events: none;
    z-index: 2;
}

.phone-scene::after {
    content: "";
    position: absolute;
    inset: 26px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(18, 51, 29, 0.02), rgba(18, 51, 29, 0.1));
    z-index: -1;
}


@keyframes levitate {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-14px) rotate(1deg);
    }
}

.wave {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 72px;
    padding: 14px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(234, 247, 237, 0.92), rgba(255, 255, 255, 0.6));
    border: 1px solid rgba(46, 94, 58, 0.08);
    margin-bottom: 18px;
    overflow: hidden;
}

.bar {
    width: 7px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--meadow), var(--forest-2));
    height: 20px;
    animation: wave 1.1s ease-in-out infinite alternate;
}

.bar:nth-child(2n) {
    animation-delay: -0.2s;
    height: 38px;
}

.bar:nth-child(3n) {
    animation-delay: -0.45s;
    height: 54px;
}

.bar:nth-child(5n) {
    animation-delay: -0.7s;
    height: 29px;
}

@keyframes wave {
    from {
        transform: scaleY(0.6);
        opacity: 0.58;
    }

    to {
        transform: scaleY(1.08);
        opacity: 1;
    }
}

.mini-row {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: var(--forest-2);
    font-size: 0.78rem;
    font-weight: 850;
}

.floating-card {
    position: absolute;
    z-index: 4;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 18px 48px rgba(18, 51, 29, 0.14);
    padding: 17px 18px;
    color: var(--forest);
    font-weight: 900;
    letter-spacing: -0.02em;
    animation: floaty 6.5s ease-in-out infinite;
}

.floating-card small {
    display: block;
    color: var(--muted);
    font-size: 0.74rem;
    letter-spacing: 0;
    font-weight: 800;
    margin-top: 1px;
}

.floating-card.left {
    left: -16px;
    top: 92px;
}

.floating-card.right {
    right: -8px;
    bottom: 126px;
    animation-delay: -3s;
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-14px);
    }
}

.section-head {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--forest-2);
    font-size: 0.76rem;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 14px;
}

.section-eyebrow::before {
    content: "";
    width: 30px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold), var(--meadow));
}

h2 {
    font-size: clamp(2.1rem, 4.8vw, 4.65rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
    font-weight: 950;
    margin-bottom: 1.5rem;
}

.intro-card{
    position: relative;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    padding: clamp(26px, 5vw, 58px);
    background: linear-gradient(135deg, rgba(18, 51, 29, 0.94), rgba(31, 82, 48, 0.9)), radial-gradient(circle at 12% 6%, rgba(243, 201, 121, 0.22), transparent 38%);
    color: white;
    text-align: center;
}

.intro-card p{
    margin-top: 1rem;
}

.how {
    position: relative;
    padding: 104px 0;
}

.how-panel {
    position: relative;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    padding: clamp(26px, 5vw, 58px);
}

.how-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 0% 0%, rgba(243, 201, 121, 0.28), transparent 36%),
        radial-gradient(circle at 100% 100%, rgba(79, 157, 104, 0.22), transparent 38%);
    pointer-events: none;
}

.how-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 48px;
    align-items: start;
}

.how-intro {
    color: var(--muted);
    font-size: 1.08rem;
    max-width: 440px;
    margin-top: 20px;
}

.steps {
    display: grid;
    gap: 15px;
    counter-reset: step;
}

.step-row {
    position: relative;
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    align-items: start;
    min-height: 124px;
    padding: 18px;
    border-radius: 27px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(46, 94, 58, 0.09);
    box-shadow: 0 12px 38px rgba(18, 51, 29, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.step-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 52px rgba(18, 51, 29, 0.11);
    background: rgba(255, 255, 255, 0.88);
}

.step-num {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 20px;
    color: white;
    font-weight: 950;
    font-size: 1.05rem;
    background: linear-gradient(145deg, var(--forest), var(--meadow));
    box-shadow: 0 15px 30px rgba(31, 82, 48, 0.22);
}

.step-text strong {
    display: block;
    color: var(--forest);
    font-size: 1.1rem;
    letter-spacing: -0.025em;
    margin: 3px 0 5px;
}

.step-text p {
    color: var(--muted);
    font-size: 0.98rem;
}

.step-text a {
    color: var(--forest-2);
    font-weight: 900;
}

.gendered {
    padding: 96px 0;
}

.gendered-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 0.76fr;
    gap: 40px;
    align-items: center;
    border-radius: var(--radius-lg);
    padding: clamp(26px, 5vw, 58px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.52)),
        radial-gradient(circle at 95% 8%, rgba(243, 201, 121, 0.22), transparent 38%);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.gendered-card.alt {
    grid-template-columns: 0.76fr 1fr;
    background:
        linear-gradient(135deg, rgba(18, 51, 29, 0.94), rgba(31, 82, 48, 0.9)),
        radial-gradient(circle at 12% 6%, rgba(243, 201, 121, 0.22), transparent 38%);
    color: white;
}

.gendered-card.alt h2,
.gendered-card.alt .section-eyebrow,
.gendered-card.alt .benefit-list li,
.gendered-card.alt .gender-visual .mini-card {
    color: white;
}

.gendered-card.alt .section-eyebrow::before {
    background: linear-gradient(90deg, var(--sun), var(--leaf));
}

.gendered-card.alt .benefit-list li {
    color: rgba(255, 255, 255, 0.83);
}

.gendered-card.alt .benefit-list li strong {
    color: #fff;
}

.gendered-card.alt .benefit-list li::before {
    background: rgba(255, 255, 255, 0.13);
    color: var(--sun);
}

.benefit-list {
    list-style: none;
    display: grid;
    gap: 13px;
    margin: 30px 0 34px;
}

.benefit-list li {
    position: relative;
    min-height: 54px;
    align-content: center;
    padding-left: 62px;
    color: var(--muted);
    font-size: 1rem;
}

.benefit-list li::before {
    content: "\2714";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--forest-2);
    border-radius: 16px;
    background: rgba(79, 157, 104, 0.12);
    font-weight: 950;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.54);
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(18px);
    padding: 16px 28px;
}

.btn-light {
    color: var(--forest);
    background: #fff;
    padding: 16px 30px;
    box-shadow: 0 16px 44px rgba(18, 51, 29, 0.14);
}

.gender-visual {
    position: relative;
    min-height: 400px;
    overflow: hidden;
    border-radius: 2rem;
}

.halo {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: conic-gradient(from 90deg, rgba(184, 226, 189, 0.3), rgba(243, 201, 121, 0.34), rgba(79, 157, 104, 0.24), rgba(184, 226, 189, 0.3));
    animation: spin 14s linear infinite;
    filter: blur(0.2px);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.mini-card {
    position: relative;
    width: min(100%, 285px);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 24px 54px rgba(18, 51, 29, 0.12);
    backdrop-filter: blur(18px);
    padding: 26px;
    text-align: center;
}

.gendered-card.alt .mini-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.17);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.2);
}

.mini-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 18px;
    border-radius: 25px;
    display: grid;
    place-items: center;
    color: white;
    background: linear-gradient(135deg, var(--forest), var(--meadow));
    box-shadow: 0 18px 36px rgba(31, 82, 48, 0.22);
}

.gendered-card.alt .mini-icon {
    background: linear-gradient(135deg, var(--sun), var(--meadow));
}

.mini-card strong {
    display: block;
    font-size: 1.12rem;
    color: var(--forest);
    letter-spacing: -0.03em;
    margin-bottom: 7px;
}

.gendered-card.alt .mini-card strong {
    color: white;
}

.mini-card span {
    color: var(--muted);
    font-size: 0.92rem;
}

.gendered-card.alt .mini-card span {
    color: rgba(255, 255, 255, 0.72);
}

.testimonials {
    padding: 100px 0;
}

.testimonials .section-head {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.testimonials .section-eyebrow {
    justify-content: center;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.testi-card {
    position: relative;
    min-height: 310px;
    padding: 30px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 46px rgba(18, 51, 29, 0.08);
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 68px rgba(18, 51, 29, 0.13);
}

.testi-card::before {
    content: "\201C";
    position: absolute;
    top: 0px;
    right: 18px;
    color: rgba(79, 157, 104, 0.11);
    font-size: 8rem;
    line-height: 1;
    font-family: Georgia, serif;
}

.testi-stars {
    color: var(--gold);
    letter-spacing: 0.12em;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.testi-quote {
    position: relative;
    z-index: 1;
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testi-name {
    color: var(--forest-2);
    font-size: 0.88rem;
    font-weight: 900;
}

.safety {
    padding: 100px 0;
}

.safety-shell {
    position: relative;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, rgba(18, 51, 29, 0.96), rgba(31, 82, 48, 0.91)),
        radial-gradient(circle at 14% 12%, rgba(243, 201, 121, 0.2), transparent 32%);
    color: white;
    padding: clamp(30px, 5vw, 58px);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.safety-shell::before {
    content: "";
    position: absolute;
    inset: -20% auto auto -12%;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(243, 201, 121, 0.13);
    filter: blur(2px);
}

.safety-shell .section-head {
    position: relative;
    max-width: 670px;
}

.safety-shell h2,
.safety-shell .section-eyebrow {
    color: white;
}

.safety-shell .section-eyebrow::before {
    background: linear-gradient(90deg, var(--sun), var(--leaf));
}

.safety-cols {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.safety-col {
    padding: 26px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(18px);
}

.safety-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    color: var(--sun);
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 18px;
}

.safety-col h3 {
    color: white;
    font-size: 1.04rem;
    margin-bottom: 7px;
    letter-spacing: -0.02em;
}

.safety-col p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.94rem;
}

.faq {
    padding: 96px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.68fr 1fr;
    gap: 46px;
    align-items: start;
}

.faq-note {
    color: var(--muted);
    font-size: 1.02rem;
    margin-top: 20px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.84);
    box-shadow: 0 16px 40px rgba(18, 51, 29, 0.07);
    overflow: hidden;
    transition: box-shadow 0.24s ease, transform 0.24s ease;
}

.faq-item.open {
    transform: translateY(-2px);
    box-shadow: 0 22px 54px rgba(18, 51, 29, 0.12);
}

.faq-q {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    padding: 22px 24px;
    color: var(--forest);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.faq-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    color: var(--forest-2);
    background: rgba(79, 157, 104, 0.12);
    font-size: 1.18rem;
    transition: transform 0.24s ease, background 0.24s ease;
    flex: 0 0 auto;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    color: var(--muted);
    padding: 0 24px;
    transition: max-height 0.34s ease, padding 0.34s ease;
}

.faq-item.open .faq-a {
    max-height: 240px;
    padding: 0 24px 23px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: rgba(243, 201, 121, 0.25);
}

.final-cta {
    position: relative;
    padding: 110px 0 104px;
    text-align: center;
    overflow: hidden;
}

.final-card {
    position: relative;
    border-radius: 46px;
    padding: clamp(36px, 7vw, 78px) 22px;
    background:
        radial-gradient(circle at 18% 20%, rgba(243, 201, 121, 0.34), transparent 30%),
        radial-gradient(circle at 82% 70%, rgba(184, 226, 189, 0.28), transparent 32%),
        linear-gradient(135deg, rgba(18, 51, 29, 0.96), rgba(31, 82, 48, 0.92));
    color: white;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.final-card::before,
.final-card::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.final-card::before {
    width: 360px;
    height: 360px;
    left: -130px;
    bottom: -150px;
}

.final-card::after {
    width: 260px;
    height: 260px;
    right: -90px;
    top: -90px;
}

.final-card h2 {
    position: relative;
    color: white;
    max-width: 760px;
    margin: 0 auto 20px;
}

.final-card p {
    position: relative;
    max-width: 660px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.1rem;
}

.btn-number {
    position: relative;
    display: block;
    width: fit-content;
    margin: 0 auto 14px;
    color: #fff;
    font-size: clamp(1.8rem, 5vw, 3.6rem);
    font-weight: 950;
    letter-spacing: -0.06em;
    line-height: 1;
    transition: transform 0.2s ease;
}

.btn-number:hover {
    transform: scale(1.03);
}

footer {
    background: #0c1f12;
    color: rgba(255, 255, 255, 0.64);
    padding: 54px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 28px;
    align-items: start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding-bottom: 28px;
    margin-bottom: 22px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.16rem;
    font-weight: 950;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.footer-desc {
    max-width: 610px;
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.86rem;
    font-weight: 850;
}

.footer-disclaimer {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.magnetic {
    will-change: transform;
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
    }

    .hero-grid,
    .how-grid,
    .gendered-card,
    .gendered-card.alt,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .gendered-card.alt .gender-visual {
        order: 2;
    }

    .hero-art {
        min-height: 470px;
    }

    .phone-scene {
        min-height: 470px;
    }

    .trust-strip,
    .testi-grid,
    .safety-cols {
        grid-template-columns: 1fr;
    }

    .testi-card {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .nav {
        top: 8px;
        width: min(100% - 18px, var(--max));
        padding-left: 14px;
        border-radius: 28px;
    }

    .nav-cta {
        padding: 12px 13px;
        font-size: 0.82rem;
    }

    .phone-dot {
        display: none;
    }

    .hero {
        padding-top: 70px;
    }

    .floating-card {
        display: none;
    }

    .cta-block {
        align-items: stretch;
    }

    .btn-primary,
    .btn-light,
    .btn-outline {
        width: 100%;
    }

    .section-pad,
    .how,
    .gendered,
    .testimonials,
    .safety,
    .faq,
    .final-cta {
        padding: 70px 0;
    }

    h2 {
        font-size: clamp(2.25rem, 11vw, 3.5rem);
    }

    .step-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .leaf-petal {
        display: none;
    }
}