:root {
    --ink: #17372f;
    --muted: #5f716b;
    --green: #2f6f5e;
    --green-dark: #205446;
    --mint: #dceee5;
    --cream: #f7f4ec;
    --white: #ffffff;
    --line: rgba(23, 55, 47, .12);
    --shadow: 0 24px 70px rgba(22, 54, 46, .12);
    --radius: 24px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
}

/* NAV */
.nav {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    color: white;
}

.nav-inner {
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.logo-image {
    width: 42px;
    height: 42px;
    display: block;
    object-fit: contain;
    object-position: center;
    flex: 0 0 auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    font-size: 14px;
    font-weight: 600;
}

.nav-links a {
    opacity: .9;
    transition: .2s ease;
}

.nav-links a:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.nav-cta {
    padding: 12px 18px;
    border-radius: 999px;
    background: white;
    color: var(--green-dark);
}

/* HERO */
.hero {
    min-height: 820px;
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
    color: white;
    overflow: hidden;
    background: #17372f;
}

/* Hero Image */
.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Black Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.60);
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    width: min(900px, calc(100% - 40px));
    text-align: center;
    padding-top: 70px;
}

.eyebrow {
    width: fit-content;
    margin: 0 auto 22px;
    padding: 8px 14px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(54px, 8vw, 104px);
    line-height: .95;
    letter-spacing: -.075em;
    max-width: 900px;
    margin: 0 auto 28px;
}

.hero h1 span {
    color: #dceee5;
}

.hero-copy {
    max-width: 620px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(17px, 2vw, 20px);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .15);
}

.btn-primary {
    background: #dceee5;
    color: #1c5042;
}

.btn-secondary {
    color: white;
    border: 1px solid rgba(255, 255, 255, .4);
    background: rgba(255, 255, 255, .1);
    backdrop-filter: blur(10px);
}

.hero-note {
    margin-top: 18px;
    font-size: 12px;
    color: rgba(255, 255, 255, .72);
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .14em;
    opacity: .72;
}

/* INTRO */
.intro {
    padding: 110px 0;
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.section-label {
    color: var(--green);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 800;
    margin-bottom: 14px;
}

.intro h2,
.pricing h2,
.why h2 {
    font-family: "Manrope", sans-serif;
    letter-spacing: -.055em;
    line-height: 1.02;
    font-size: clamp(38px, 5vw, 64px);
}

.intro-text {
    color: var(--muted);
    font-size: 18px;
    max-width: 590px;
}

.intro-text p + p {
    margin-top: 18px;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.trust-pill {
    border: 1px solid var(--line);
    background: white;
    border-radius: 999px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 700;
}

/* PRICING */
.pricing {
    padding: 110px 0 120px;
    background: #eaf3ed;
}

.pricing-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.pricing-head p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 17px;
}

.plans {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.plan {
    position: relative;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: white;
    box-shadow: 0 15px 45px rgba(23, 55, 47, .07);
}

.plan.featured {
    color: white;
    background: var(--green-dark);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.badge {
    position: absolute;
    right: 22px;
    top: 22px;
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    background: #dceee5;
    color: var(--green-dark);
}

.plan-name {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--green);
}

.featured .plan-name {
    color: #cfe8dc;
}

.price {
    margin: 15px 0 5px;
    font-family: "Manrope", sans-serif;
    font-size: 58px;
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: 1;
}

.price small {
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    letter-spacing: 0;
    font-weight: 600;
    opacity: .7;
}

.plan-desc {
    color: var(--muted);
    margin: 15px 0 26px;
    min-height: 50px;
}

.featured .plan-desc {
    color: rgba(255, 255, 255, .76);
}

.features {
    list-style: none;
    display: grid;
    gap: 13px;
    margin-bottom: 28px;
}

.features li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.features li::before {
    content: "✓";
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    flex: 0 0 20px;
    border-radius: 50%;
    background: var(--mint);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 900;
}

.plan .btn {
    width: 100%;
}

.plan:not(.featured) .btn {
    background: var(--green-dark);
    color: white;
}

.featured .btn {
    background: #dceee5;
    color: var(--green-dark);
}

/* WHY */
.why {
    padding: 110px 0;
    background: white;
}

.why-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 40px;
    margin-bottom: 45px;
}

.why-head p {
    max-width: 440px;
    color: var(--muted);
    font-size: 17px;
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.card {
    padding: 30px;
    border-radius: 20px;
    background: var(--cream);
    border: 1px solid var(--line);
}

.icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    margin-bottom: 24px;
    background: var(--mint);
    color: var(--green-dark);
    font-size: 20px;
}

.card h3 {
    font-family: "Manrope", sans-serif;
    font-size: 21px;
    letter-spacing: -.035em;
    margin-bottom: 9px;
}

.card p {
    color: var(--muted);
    font-size: 14px;
}

/* CTA */
.final-cta {
    padding: 120px 0;
    background: var(--green-dark);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 6vw, 76px);
    letter-spacing: -.065em;
    line-height: 1;
    max-width: 800px;
    margin: 0 auto 22px;
}

.final-cta p {
    max-width: 560px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, .75);
}

/* FOOTER */
footer {
    padding: 72px 0 24px;
    background: #163a31;
    color: rgba(255, 255, 255, .72);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    top: -250px;
    right: -120px;
    background: rgba(220, 238, 229, .08);
    filter: blur(8px);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 50px;
    padding-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.04em;
}

.footer-logo .logo-image {
    width: 38px;
    height: 38px;
}

.footer-brand p {
    margin-top: 16px;
    max-width: 330px;
    color: rgba(255, 255, 255, .62);
    font-size: 14px;
    line-height: 1.7;
}

.footer-title {
    color: #dceee5;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 16px;
}

.footer-links {
    display: grid;
    gap: 10px;
}

.footer-links a {
    width: fit-content;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
    transition: .2s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(3px);
}

.footer-bottom {
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    z-index: 1;
    font-size: 12px;
}

.footer-note {
    color: rgba(255, 255, 255, .45);
}

/* REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 800px) {
    .nav {
        top: 14px;
        left: 12px;
        width: calc(100% - 24px);
    }

    .nav-inner {
        width: 100%;
        height: 62px;
        padding: 0 8px 0 14px;
        border: 1px solid rgba(255, 255, 255, .20);
        border-radius: 18px;
        background: rgba(20, 58, 48, .58);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, .14);
    }

    .logo {
        gap: 8px;
        font-size: 16px;
        white-space: nowrap;
    }

    .logo-image {
        width: 34px;
        height: 34px;
    }

    .nav-links {
        gap: 0;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .nav-cta {
        padding: 9px 13px;
        font-size: 12px;
        border-radius: 999px;
        box-shadow: 0 5px 18px rgba(0, 0, 0, .10);
    }

    .hero {
        min-height: 720px;
    }

    .hero-content {
        padding-top: 92px;
    }

    .hero h1 {
        font-size: clamp(48px, 14vw, 76px);
    }

    .intro-grid,
    .plans,
    .cards {
        grid-template-columns: 1fr;
    }

    .intro {
        padding: 80px 0;
    }

    .pricing, .why {
        padding: 80px 0;
    }

    .plan.featured {
        transform: none;
    }

    .why-head {
        display: block;
    }

    .why-head p {
        margin-top: 18px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 38px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        width: min(100% - 28px, 1160px);
    }

    .nav {
        top: 10px;
        left: 8px;
        width: calc(100% - 16px);
    }

    .nav-inner {
        width: 100%;
        height: 58px;
        padding-left: 11px;
        padding-right: 7px;
        border-radius: 16px;
    }

    .logo {
        font-size: 14px;
    }

    .logo-image {
        width: 32px;
        height: 32px;
    }

    .nav-cta {
        padding: 8px 11px;
        font-size: 11px;
    }

    .hero-content {
        width: calc(100% - 28px);
    }

    .hero-copy {
        font-size: 16px;
    }

    .plan {
        padding: 27px;
    }

    .price {
        font-size: 52px;
    }
}

/* ENHANCED UI */
.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 180px;
    z-index: -1;
    background: linear-gradient(transparent, rgba(247, 244, 236, .22));
    pointer-events: none;
}

.floating-proof {
    position: absolute;
    left: clamp(18px, 5vw, 70px);
    bottom: 70px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 18px;
    background: rgba(255, 255, 255, .11);
    backdrop-filter: blur(16px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, .12);
    font-size: 12px;
    max-width: 205px;
}

.floating-proof strong {
    display: block;
    font-size: 18px;
    margin-bottom: 3px;
    color: #dceee5;
}

.story {
    padding: 105px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns:1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.story-visual {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(23, 55, 47, .14);
}

.story-visual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.story-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(280px, calc(100% - 48px));
    padding: 22px;
    border-radius: 22px;
    background: rgba(255, 255, 255, .88);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, .7);
    box-shadow: 0 18px 45px rgba(23, 55, 47, .16);
}

.story-card span {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--green);
}

.story-card p {
    margin-top: 7px;
    font-weight: 700;
    line-height: 1.4;
}

.steps {
    padding: 105px 0;
    background: var(--cream);
}

.steps-head {
    max-width: 650px;
    margin-bottom: 50px;
}

.steps-head h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: -.055em;
    line-height: 1.02;
}

.step-grid {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 16px;
}

.step {
    position: relative;
    padding: 32px;
    min-height: 230px;
    border-radius: 24px;
    background: #fff;
    border: 1px solid var(--line);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.step:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(23, 55, 47, .10);
}

.step-number {
    font-family: "Manrope", sans-serif;
    font-size: 54px;
    line-height: 1;
    color: #cfe5da;
    font-weight: 800;
}

.step h3 {
    margin-top: 28px;
    font-family: "Manrope", sans-serif;
    font-size: 22px;
}

.step p {
    margin-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.quote {
    padding: 105px 0;
    background: #eaf3ed;
}

.quote-box {
    max-width: 940px;
    margin: auto;
    text-align: center;
    padding: 60px 40px;
    border-radius: 32px;
    background: var(--green-dark);
    color: #fff;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.quote-box::before {
    content: "“";
    position: absolute;
    font-family: Georgia, serif;
    font-size: 220px;
    left: 24px;
    top: -55px;
    color: rgba(255, 255, 255, .07);
}

.quote-box blockquote {
    position: relative;
    font-family: "Manrope", sans-serif;
    font-size: clamp(26px, 4vw, 44px);
    line-height: 1.12;
    letter-spacing: -.04em;
    max-width: 760px;
    margin: auto;
}

.quote-box cite {
    display: block;
    margin-top: 22px;
    color: #cfe8dc;
    font-style: normal;
    font-size: 13px;
}

.section-center {
    text-align: center;
    max-width: 700px;
    margin: auto;
}

.section-center h2 {
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 5vw, 64px);
    letter-spacing: -.055em;
    line-height: 1.02;
}

@media (max-width: 800px) {
    .floating-proof {
        display: none;
    }

    .story-grid, .step-grid {
        grid-template-columns:1fr;
    }

    .story-visual {
        min-height: 390px;
    }

    .story, .steps, .quote, .faq {
        padding: 80px 0;
    }

    .quote-box {
        padding: 48px 24px;
    }
}
