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

:root {
    --green: #1a4235;
    --green2: #25614f;
    --gold: #d4a373;
    --rust: #e07a5f;
    --cream: #fbfaf8;
    --stone: #a4a2a2;
    --white: #ffffff;
    --ink: #1f2937;
    --muted: #6b7280;
    --light: #f3f4f6;
    --border: #e5e7eb;
    --radius: 12px;
    --font-sans: 'Helvetica Neue', Helvetica, Arial, 'Liberation Sans', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--white);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 48px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 13px;
    color: var(--muted);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.15s;
}

.nav-links a:hover {
    color: var(--ink);
}

.btn-nav {
    background: var(--green);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    padding: 8px 20px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: var(--green2);
    transform: translateY(-1px);
}

/* HERO */
.hero {
    background: linear-gradient(135deg, var(--green) 0%, #1e4d3d 50%, var(--green) 100%);
    padding: 56px 48px 80px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 162, 78, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    max-width: 680px;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 20px;
    height: 1px;
    background: var(--gold);
}

.hero h1 {
    font-family: var(--font-sans);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 28px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(212, 162, 78, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(212, 162, 78, 0.4);
}

.btn-ghost {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.15s;
}

.btn-ghost:hover {
    color: rgba(255, 255, 255, 0.8);
}

.hero-note {
    margin-top: 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

/* TICKER */
.ticker {
    background: var(--gold);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-inner {
    display: inline-flex;
    gap: 48px;
    animation: scroll 22s linear infinite;
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 0.06em;
}

.ticker-item {
    flex-shrink: 0;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* STATS */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.stat {
    padding: 32px 32px;
    border-right: 1px solid var(--border);
}

.stat:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-sans);
    font-size: 36px;
    color: var(--green);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-lbl {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* SECTION */
section {
    padding: 80px 48px;
}

.section-tag {
    font-size: 11px;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-tag::before {
    content: '';
    display: block;
    width: 16px;
    height: 1px;
    background: var(--gold);
}

section h2 {
    font-family: var(--font-sans);
    font-size: clamp(28px, 3.5vw, 38px);
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    max-width: 560px;
}

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

.section-sub {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.65;
    max-width: 480px;
    margin-bottom: 48px;
}

/* VALUE PROPS */
.value-bg {
    background: var(--cream);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.value-card {
    background: var(--white);
    padding: 32px 28px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: #fafaf8;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.value-card:hover .value-icon {
    transform: scale(1.05) rotate(-3deg);
}

.value-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--green) 0%, #2D5A4A 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--white);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.value-card h3 {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

/* HOW IT WORKS */
.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    counter-reset: steps;
}

.how-item {
    counter-increment: steps;
    transition: transform 0.3s ease;
}

.how-item:hover {
    transform: translateY(-4px);
}

.how-n {
    font-family: var(--font-sans);
    font-size: 40px;
    font-weight: 700;
    color: var(--green);
    line-height: 1;
    margin-bottom: 16px;
    opacity: 0.85;
}

.how-item h3 {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
}

.how-item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}

.how-divider {
    width: 24px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 16px;
}

/* PRICING */
.pricing-bg {
    background: var(--green);
}

.pricing-bg .section-sub {
    color: rgba(255, 255, 255, 0.5);
}

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

.pricing-bg h2 em {
    color: var(--gold);
}

.pricing-bg .section-tag {
    color: rgba(201, 150, 58, 0.8);
}

.pricing-bg .section-tag::before {
    background: rgba(201, 150, 58, 0.8);
}

.pricing-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 720px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 28px;
}

.pricing-card.highlight {
    background: var(--gold);
    border-color: var(--gold);
}

.pricing-card h3 {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-card.highlight h3 {
    color: rgba(255, 255, 255, 0.75);
}

.price-rows {}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
}

.price-row:last-child {
    border-bottom: none;
}

.pricing-card.highlight .price-row {
    border-bottom-color: rgba(255, 255, 255, 0.15);
}

.price-lbl {
    color: rgba(255, 255, 255, 0.6);
}

.price-val {
    color: var(--white);
    font-weight: 500;
}

.price-val.free {
    color: #6ee7b7;
}

.price-val.highlight-val {
    color: var(--white);
    font-size: 15px;
}

.vs-note {
    margin-top: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.6;
}

/* ROI CALC */
.roi-section {
    background: var(--cream);
}

.roi-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.roi-controls {}

.slider-group {
    margin-bottom: 24px;
}

.slider-label {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 8px;
}

.slider-val {
    font-weight: 500;
    color: var(--ink);
}

input[type=range] {
    width: 100%;
    height: 3px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--stone);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--green);
    cursor: pointer;
    border: 2px solid var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.roi-result {
    background: var(--green);
    border-radius: 8px;
    padding: 32px;
}

.roi-result-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.roi-result-num {
    font-family: var(--font-sans);
    font-size: 44px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.roi-result-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 28px;
}

.roi-breakdown {}

.roi-line {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.roi-line:last-child {
    border-bottom: none;
}

.roi-line-lbl {
    color: rgba(255, 255, 255, 0.5);
}

.roi-line-val {
    color: var(--white);
    font-weight: 500;
}

.roi-line-val.deduct {
    color: rgba(255, 255, 255, 0.4);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    background: var(--white);
    padding: 28px;
}

.faq-q {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.4;
}

.faq-a {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.65;
}

/* FORM SECTION */
.form-section {
    background: var(--cream);
    padding: 80px 48px;
}

.form-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    max-width: 900px;
}

.form-left h2 {
    font-family: var(--font-sans);
    font-size: 34px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.form-left h2 em {
    font-style: italic;
    color: var(--green);
}

.form-left p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 28px;
}

.form-guarantees {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.guarantee {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--muted);
}

.guarantee-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    margin-top: 6px;
    flex-shrink: 0;
}

.form-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 36px;
}

.form-card h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
}

.form-card .form-sub {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 28px;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--muted);
    margin-bottom: 6px;
    letter-spacing: 0.02em;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    font-family: var(--font-sans);
    font-size: 14px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 14px;
    outline: none;
    transition: border-color 0.15s;
    -webkit-appearance: none;
    appearance: none;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--green);
}

.form-field textarea {
    resize: vertical;
    min-height: 80px;
}

.form-field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}

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

.btn-submit {
    width: 100%;
    background: var(--green);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    padding: 14px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    margin-top: 8px;
    transition: all 0.2s;
    letter-spacing: 0.01em;
}

.btn-submit:hover {
    background: var(--green2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 60, 52, 0.3);
}

.form-legal {
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    margin-top: 12px;
    line-height: 1.5;
}

/* SUCCESS STATE */
.form-success {
    display: none;
    text-align: center;
    padding: 32px 0;
}

.success-icon {
    width: 48px;
    height: 48px;
    background: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.success-icon svg {
    width: 22px;
    height: 22px;
    stroke: #065f46;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.form-success h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 13px;
    color: var(--muted);
}

/* FOOTER */
footer {
    background: var(--ink);
    padding: 32px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    font-family: var(--font-sans);
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

.footer-links a:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ANIMATIONS */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {
    nav {
        padding: 0 20px;
    }

    .hero,
    section,
    .form-section {
        padding: 56px 20px;
    }



    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .value-grid,
    .how-grid,
    .pricing-wrap,
    .roi-wrap,
    .faq-grid,
    .form-wrap {
        grid-template-columns: 1fr;
    }

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