:root {
    --ink: #1f2933;
    --muted: #5d6978;
    --line: #dce3ea;
    --paper: #ffffff;
    --soft: #f4f7f6;
    --soft-green: #e6f0eb;
    --green: #2f6f5e;
    --green-dark: #234f44;
    --blue: #255f85;
    --gold: #b9822b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
}

a {
    color: var(--green);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.site-header {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 14px clamp(18px, 4vw, 56px);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.96);
    position: sticky;
    top: 0;
    z-index: 10;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
}

.brand:hover {
    text-decoration: none;
}

.brand-mark {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 6px;
    background: var(--green);
    color: white;
    font-weight: 700;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--muted);
    font-size: 12px;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 14px;
    font-size: 14px;
}

.site-nav a {
    color: var(--ink);
    padding: 5px 0;
}

.site-nav a[aria-current="page"] {
    color: var(--green);
    border-bottom: 2px solid var(--green);
}

.section {
    padding: clamp(42px, 7vw, 84px) clamp(18px, 4vw, 56px);
}

.section.alt {
    background: var(--soft);
}

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

.hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: calc(92vh - 76px);
    padding: clamp(36px, 5vw, 72px) clamp(18px, 4vw, 56px);
    background: #16241f;
    color: white;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 32, 27, 0.88) 0%, rgba(18, 32, 27, 0.70) 42%, rgba(18, 32, 27, 0.18) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

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

.eyebrow {
    color: var(--green);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0;
    margin: 0 0 12px;
}

h1,
h2,
h3 {
    line-height: 1.15;
    letter-spacing: 0;
    margin: 0 0 16px;
}

h1 {
    font-size: clamp(38px, 6vw, 68px);
}

h2 {
    font-size: clamp(28px, 4vw, 44px);
}

h3 {
    font-size: 20px;
}

.lead {
    font-size: clamp(18px, 2.2vw, 22px);
    color: var(--muted);
    margin: 0 0 24px;
}

.hero .lead,
.hero .trust-row span {
    color: rgba(255, 255, 255, 0.86);
}

.hero .eyebrow {
    color: #bfe3d3;
}

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

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    margin-top: 26px;
}

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    padding: 11px 18px;
    font-weight: 700;
    border: 1px solid var(--green);
}

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

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

.button.disabled {
    color: #6b7280;
    background: #eef0f2;
    border-color: #cfd6dd;
    cursor: not-allowed;
}

.button:hover {
    text-decoration: none;
}

.media-frame video,
.media-frame img {
    width: 100%;
    display: block;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #111827;
    box-shadow: 0 18px 42px rgba(31, 41, 51, 0.14);
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 30px;
}

.trust-row span {
    display: block;
    border-left: 3px solid var(--gold);
    padding-left: 12px;
    color: var(--muted);
    font-size: 14px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 28px;
}

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

.card {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    padding: 22px;
}

.card p {
    color: var(--muted);
    margin: 0;
}

.card img {
    width: 100%;
    display: block;
    border: 1px solid var(--line);
    border-radius: 6px;
    margin-bottom: 16px;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 28px;
    padding: 0;
    margin: 24px 0 0;
    list-style: none;
}

.feature-list li {
    padding: 10px 0 10px 26px;
    position: relative;
    color: var(--muted);
    border-bottom: 1px solid #edf1f4;
}

.feature-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    position: absolute;
    left: 4px;
    top: 19px;
}

.page-hero {
    background: var(--soft-green);
    padding: clamp(42px, 6vw, 72px) clamp(18px, 4vw, 56px);
}

.page-hero .inner {
    max-width: 900px;
}

.notice {
    border-left: 4px solid var(--blue);
    background: #eef6fb;
    padding: 16px 18px;
    color: var(--ink);
    margin: 22px 0;
}

.price-box {
    max-width: 680px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 28px;
    background: white;
}

.price {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    margin: 14px 0;
}

.form-grid {
    display: grid;
    gap: 14px;
    max-width: 720px;
}

label {
    font-weight: 700;
}

input,
textarea {
    width: 100%;
    margin-top: 6px;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 11px 12px;
    font: inherit;
}

textarea {
    min-height: 150px;
}

.legal {
    max-width: 900px;
}

.legal h2 {
    font-size: 24px;
    margin-top: 32px;
}

.site-footer {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding: 28px clamp(18px, 4vw, 56px);
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #f8faf9;
}

.site-footer p {
    margin: 4px 0 0;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

@media (max-width: 860px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
        padding-top: 82px;
        padding-bottom: 82px;
    }

    .grid,
    .grid.two,
    .trust-row,
    .feature-list {
        grid-template-columns: 1fr;
    }
}
