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

:root {
    --yellow: #ecb22a;
    --green: #34a12c;
    --green-dark: #236c1e;
    --green-light: #60e057;
    --ink: #1a1410;
    --ink-soft: #4a3f38;
    --ink-muted: #8a7d75;
    --cream: #faf8f4;
    --cream-dark: #f0ebe2;
    --white: #ffffff;
    --border: rgba(26, 20, 16, 0.12);
    --radius: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 2.5rem;
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.02em;
    text-decoration: none;
}

.logo span {
    color: var(--green);
}

nav a.nav-cta {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

nav a.nav-cta:hover {
    color: var(--green);
    border-color: var(--green);
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 5rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem 5rem 5rem;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1.5rem;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin-bottom: 1.5rem;
}

h1 em {
    font-style: italic;
    color: var(--green);
}

.hero-sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--ink-soft);
    max-width: 420px;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--ink);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.15s;
    width: fit-content;
}

.hero-cta:hover {
    background: var(--green);
    transform: translateY(-1px);
}

.hero-cta svg {
    transition: transform 0.2s;
}

.hero-cta:hover svg {
    transform: translateX(3px);
}

.hero-proof {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--ink-muted);
}

.hero-proof-divider {
    width: 1px;
    height: 16px;
    background: var(--border);
}

.hero-right {
    background: var(--ink);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 8px;
    padding: 2rem;
    width: 340px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.3);
}

.hero-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.hero-card-price {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.hero-card-price sup {
    font-size: 1.5rem;
    vertical-align: super;
}

.hero-card-label {
    font-size: 0.8rem;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
}

.hero-card-divider {
    height: 1px;
    background: var(--border);
    margin-bottom: 1.5rem;
}

.hero-card-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--ink-soft);
    margin-bottom: 0.75rem;
}

.check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.check svg {
    width: 10px;
    height: 10px;
    stroke: white;
    stroke-width: 2.5;
}

/* HOW IT WORKS */
.section {
    padding: 7rem 5rem;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin-bottom: 4rem;
    max-width: 560px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step {
    position: relative;
}

.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--cream-dark);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.65;
}

.step-line {
    position: absolute;
    top: 1.75rem;
    right: -1rem;
    width: 2rem;
    height: 1px;
    background: var(--border);
}

.step:last-child .step-line {
    display: none;
}

/* WHAT'S INCLUDED */
.included {
    background: var(--ink);
    color: var(--white);
}

.included h2 {
    color: var(--white);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
}

.included-item {
    background: var(--ink);
    padding: 2rem;
    transition: background 0.2s;
}

.included-item:hover {
    background: #2a2018;
}

.included-icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.included-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 1.8;
}

.included-item-title {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.included-item-desc {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

/* PRICING */
.pricing-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 3rem;
    max-width: 540px;
    margin: 0 auto;
    text-align: center;
}

.pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1;
    margin: 1.5rem 0 0.5rem;
}

.pricing-amount sup {
    font-size: 2rem;
    vertical-align: super;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--ink-muted);
    margin-bottom: 2.5rem;
}

.pricing-features {
    text-align: left;
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    margin-bottom: 2.5rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--ink-soft);
    margin-bottom: 0.875rem;
}

.pricing-cta {
    display: block;
    background: var(--green);
    color: var(--white);
    text-decoration: none;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    transition: background 0.2s, transform 0.15s;
}

.pricing-cta:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.pricing-guarantee {
    margin-top: 1.25rem;
    font-size: 0.78rem;
    color: var(--ink-muted);
}

/* FORM SECTION */
.form-section {
    background: var(--cream-dark);
    border-top: 1px solid var(--border);
}

.form-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.form-intro h2 {
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 0.95rem;
    color: var(--ink-soft);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.form-contact-info {
    font-size: 0.85rem;
    color: var(--ink-muted);
}

form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-muted);
    margin-bottom: 0.35rem;
}

input,
select,
textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink);
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(232, 93, 138, 0.12);
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7d75' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-submit {
    background: var(--ink);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: var(--green);
    transform: translateY(-1px);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--ink-muted);
    line-height: 1.5;
    margin-top: 0.25rem;
}

/* FAQ */
.faq-list {
    max-width: 680px;
}

.faq-item {
    border-top: 1px solid var(--border);
    padding: 1.5rem 0;
}

.faq-item:last-child {
    border-bottom: 1px solid var(--border);
}

.faq-q {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 0.75rem;
}

.faq-a {
    font-size: 0.875rem;
    color: var(--ink-muted);
    line-height: 1.7;
}

/* FOOTER */
footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.4);
    padding: 2.5rem 5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.8rem;
}

footer .logo {
    color: rgba(255, 255, 255, 0.7);
}

footer a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
}

footer a:hover {
    color: var(--green);
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 0.7s ease both;
}

.fade-up-1 {
    animation-delay: 0.1s;
}

.fade-up-2 {
    animation-delay: 0.22s;
}

.fade-up-3 {
    animation-delay: 0.34s;
}

.fade-up-4 {
    animation-delay: 0.46s;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        display: none;
    }

    .hero-left {
        padding: 5rem 2rem 3rem;
    }

    nav {
        padding: 1rem 1.5rem;
    }

    .section {
        padding: 5rem 2rem;
    }

    .steps {
        grid-template-columns: 1fr 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr 1fr;
    }

    .form-wrap {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .steps {
        grid-template-columns: 1fr;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    h1 {
        font-size: 2.4rem;
    }
}
