:root {
    color-scheme: light;
    --ink: #172026;
    --muted: #5d6972;
    --line: #dfe5e8;
    --paper: #f7f9f7;
    --white: #ffffff;
    --green: #12805c;
    --green-dark: #0c5f45;
    --amber: #f0b429;
    --coral: #d95f43;
    --blue: #26547c;
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-premium: 0 20px 40px rgba(0,0,0,0.08);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes glow {
    0% { box-shadow: 0 0 5px var(--green); }
    50% { box-shadow: 0 0 20px var(--green); }
    100% { box-shadow: 0 0 5px var(--green); }
}

.reveal {
    animation: fadeIn 0.8s ease-out forwards;
}


* {
    box-sizing: border-box;
}

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

a {
    color: inherit;
    text-decoration: none;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    gap: 24px;
    min-height: 72px;
    padding: 12px clamp(18px, 4vw, 64px);
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(10px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.brand img {
    max-width: 148px;
    max-height: 42px;
}

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

.nav {
    display: flex;
    gap: 18px;
    margin-left: auto;
    color: var(--muted);
    font-size: 15px;
}

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

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 700;
    white-space: nowrap;
}

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

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

.button.secondary {
    color: var(--ink);
    background: #fff;
    border-color: var(--line);
}

.button.compact {
    min-height: 38px;
    color: #fff;
    background: var(--blue);
}

.button.full {
    width: 100%;
}

.hero {
    position: relative;
    min-height: min(720px, calc(100vh - 30px));
    display: grid;
    align-items: end;
    padding: clamp(36px, 6vw, 84px);
    overflow: hidden;
    background: #152019;
}

.hero-media {
    position: absolute;
    inset: 0;
}

.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(12, 21, 16, .96), rgba(12, 21, 16, .74), rgba(12, 21, 16, .82)),
        linear-gradient(0deg, rgba(12, 21, 16, .28), rgba(12, 21, 16, .28));
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 58%;
    opacity: .42;
    filter: blur(3px) saturate(.82);
    transform: scale(1.04);
}

.hero-content {
    position: relative;
    max-width: 760px;
    color: #fff;
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--amber);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 720px;
    font-size: clamp(42px, 7vw, 86px);
    line-height: .98;
    letter-spacing: 0;
}

.hero p:not(.eyebrow) {
    max-width: 610px;
    margin: 20px 0 0;
    color: rgba(255, 255, 255, .86);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.stats-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.stats-strip div {
    padding: 24px clamp(18px, 4vw, 64px);
    border-right: 1px solid var(--line);
}

.stats-strip strong {
    display: block;
    color: var(--coral);
    font-size: 30px;
    line-height: 1;
}

.stats-strip span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
}

.section {
    padding: clamp(48px, 7vw, 92px) clamp(18px, 4vw, 64px);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 28px;
}

.section-heading h2,
.contact-band h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: 0;
}

.feature-grid,
.plans-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.feature,
.plan,
.testimonial,
details {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
}

.feature {
    padding: 24px;
}

.feature-icon {
    display: block;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--green), var(--amber));
}

.feature h3,
.plan h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.feature p,
.contact-band p,
.testimonial p {
    color: var(--muted);
}

.plans-section {
    background: #eef4f0;
}

.plan {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: space-between;
    padding: 26px;
}

.plan-kicker {
    margin: 0 0 8px;
    color: var(--green);
    font-weight: 800;
}

.price {
    margin: 16px 0;
    font-size: 42px;
    font-weight: 900;
}

.price span {
    margin-right: 6px;
    color: var(--muted);
    font-size: 18px;
}

.plan-items {
    display: grid;
    gap: 8px;
    margin: 0 0 22px;
    padding: 0;
    list-style: none;
    color: var(--muted);
}

.plan-items li::before {
    content: "✓";
    margin-right: 8px;
    color: var(--green);
    font-weight: 900;
}

.testimonial {
    padding: 22px;
}

.testimonial strong,
.testimonial span {
    display: block;
}

.testimonial span {
    color: var(--muted);
    font-size: 14px;
}

.faq-section {
    background: #fff;
}

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

details {
    padding: 18px 20px;
}

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

details div {
    margin-top: 14px;
    color: var(--muted);
}

.contact-band {
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(320px, 520px);
    gap: 24px;
    align-items: start;
    margin: clamp(18px, 4vw, 64px);
    padding: clamp(28px, 5vw, 54px);
    color: #fff;
    background: #17382d;
    border-radius: 8px;
}

.contact-band p {
    max-width: 660px;
    color: rgba(255, 255, 255, .82);
}

.contact-band .button {
    margin: 8px 8px 0 0;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    padding: 18px;
    color: var(--ink);
    background: #fff;
    border-radius: 8px;
}

.page-form {
    max-width: 860px;
    border: 1px solid var(--line);
}

.notice {
    max-width: 860px;
    padding: 14px 16px;
    color: var(--green-dark);
    background: #e8f5ef;
    border: 1px solid #b8dfcf;
    border-radius: 8px;
}

.contact-form label {
    display: grid;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    min-height: 42px;
    padding: 10px 12px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.full-row {
    grid-column: 1 / -1;
}

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

.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 28px clamp(18px, 4vw, 64px);
    color: var(--muted);
    background: #fff;
    border-top: 1px solid var(--line);
}

.footer-legal {
    display: flex;
    gap: 18px;
    font-size: 13px;
}

.footer-legal a {
    color: var(--muted);
    text-decoration: none;
    transition: color .2s;
}

.footer-legal a:hover {
    color: var(--green);
    text-decoration: underline;
}

.simple-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    padding: 24px;
}

.not-found {
    max-width: 520px;
    text-align: center;
}

@media (max-width: 900px) {
    .topbar {
        flex-wrap: wrap;
    }

    .nav {
        order: 3;
        width: 100%;
        margin-left: 0;
        overflow-x: auto;
    }

    .stats-strip,
    .feature-grid,
    .plans-grid,
    .testimonial-grid,
    .contact-band {
        grid-template-columns: 1fr;
    }

    .stats-strip div {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

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

@media (max-width: 560px) {
    .topbar {
        gap: 12px;
    }

    .topbar .button {
        width: 100%;
    }

    .hero {
        min-height: 640px;
        padding: 28px 18px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero p:not(.eyebrow) {
        font-size: 17px;
    }

    .hero-actions .button,
    .contact-band .button {
        width: 100%;
    }

    .footer {
        flex-direction: column;
    }
}
