:root {
    --ink: #18201c;
    --muted: #58645d;
    --line: #d9e0dc;
    --paper: #f7f5ef;
    --white: #ffffff;
    --green: #146b4a;
    --green-dark: #0f4e37;
    --yellow: #f2c94c;
    --blue: #255f85;
    --error: #9f2f25;
    --success: #156247;
    --shadow: 0 18px 44px rgba(20, 31, 25, 0.14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.55;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    background: rgba(247, 245, 239, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.brand {
    display: inline-flex;
    align-items: center;
    font-size: 1.35rem;
    font-weight: 800;
    text-decoration: none;
}

.brand img {
    height: 38px;
    width: auto;
}

.site-nav {
    display: none;
}

.hero,
.section__inner,
.final-cta {
    width: min(1120px, calc(100% - 32px));
    margin-inline: auto;
}

.hero {
    display: grid;
    gap: 24px;
    padding: 34px 0 44px;
}

.thank-you {
    display: flex;
    align-items: center;
    min-height: calc(100vh - 154px);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1 {
    max-width: 760px;
    margin-bottom: 18px;
    font-size: clamp(2.3rem, 10vw, 4.65rem);
    line-height: 0.98;
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(1.85rem, 7vw, 3rem);
    line-height: 1.05;
}

h3 {
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.lede {
    max-width: 700px;
    color: #2f3934;
    font-size: 1.1rem;
}

.hero__actions,
.final-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.button--primary {
    color: var(--white);
    background: var(--green);
}

.button--primary:hover {
    background: var(--green-dark);
}

.button--secondary {
    color: var(--ink);
    background: var(--yellow);
}

.button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(37, 95, 133, 0.45);
    outline-offset: 3px;
}

.trust-note {
    margin: 14px 0 0;
    color: var(--muted);
    font-weight: 700;
}

.hero__image {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero__image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.section {
    padding: 54px 0;
    background: var(--white);
}

.section:nth-of-type(even) {
    background: var(--paper);
}

.section-copy {
    max-width: 760px;
    color: var(--muted);
}

.split,
.lead-preview,
.form-layout {
    display: grid;
    gap: 26px;
}

.check-list,
.benefit-grid {
    padding: 0;
    margin: 0;
    list-style: none;
}

.check-list li,
.benefit-grid li {
    position: relative;
    padding: 12px 0 12px 34px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
}

.check-list li::before,
.benefit-grid li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 16px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: inset 0 0 0 5px var(--green);
}

.steps,
.template-grid,
.benefit-grid,
.pricing-grid {
    display: grid;
    gap: 14px;
}

.steps article,
.template-card,
.pricing-grid article,
.lead-card,
.early-form {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

.steps article,
.template-card,
.pricing-grid article {
    padding: 18px;
}

.steps span {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 50%;
    color: var(--white);
    background: var(--blue);
    font-weight: 800;
}

.section--lead {
    background: #ecf3ef;
}

.lead-card {
    padding: 20px;
    box-shadow: var(--shadow);
}

.lead-card strong {
    display: block;
    margin-bottom: 14px;
    font-size: 1.2rem;
}

.lead-card dl {
    margin: 0;
}

.lead-card div {
    display: grid;
    grid-template-columns: minmax(90px, 0.8fr) 1.2fr;
    gap: 12px;
    padding: 9px 0;
    border-top: 1px solid var(--line);
}

.lead-card dt {
    color: var(--muted);
    font-weight: 800;
}

.lead-card dd {
    margin: 0;
}

.template-card p,
.pricing-grid p {
    margin: 0;
    color: var(--muted);
}

.section--form {
    background: var(--green-dark);
    color: var(--white);
}

.section--form .eyebrow,
.section--form p {
    color: #dfeee7;
}

.early-form {
    display: grid;
    gap: 14px;
    padding: 18px;
    color: var(--ink);
}

.field-grid {
    display: grid;
    gap: 14px;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 800;
}

input,
select {
    width: 100%;
    min-height: 48px;
    padding: 11px 12px;
    border: 1px solid #b8c4bd;
    border-radius: 8px;
    color: var(--ink);
    background: var(--white);
    font: inherit;
}

.checkbox {
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
}

.checkbox input {
    min-height: 22px;
    margin-top: 2px;
}

.privacy-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.notice {
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 700;
}

.notice ul {
    margin-bottom: 0;
    padding-left: 20px;
}

.notice--success {
    color: var(--success);
    background: #e7f4ee;
    border: 1px solid #abd5c5;
}

.notice--error {
    color: var(--error);
    background: #fff0ed;
    border: 1px solid #e0aaa3;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.faq-list {
    display: grid;
    gap: 10px;
}

details {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
}

summary {
    cursor: pointer;
    font-weight: 800;
}

details p {
    margin: 12px 0 0;
    color: var(--muted);
}

.final-cta {
    justify-content: space-between;
    padding: 38px 0;
}

.final-cta h2 {
    margin-bottom: 8px;
}

.final-cta p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
}

.site-footer {
    padding: 24px 18px;
    color: var(--muted);
    text-align: center;
    background: var(--white);
    border-top: 1px solid var(--line);
}

.site-footer p {
    margin: 0;
}

@media (min-width: 680px) {
    .site-nav {
        display: flex;
        gap: 18px;
        color: var(--muted);
        font-weight: 800;
    }

    .site-nav a {
        text-decoration: none;
    }

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

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 920px) {
    .hero {
        grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
        align-items: center;
        min-height: calc(100vh - 72px);
        padding: 46px 0;
    }

    .hero__image img {
        aspect-ratio: 5 / 6;
    }

    .split,
    .lead-preview,
    .form-layout {
        grid-template-columns: 0.9fr 1.1fr;
        align-items: start;
    }

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

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

    .benefit-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .section {
        padding: 72px 0;
    }
}
