:root {
    --ink: #15191d;
    --muted: #5f6872;
    --line: #d9dee4;
    --surface: #f5f7f9;
    --white: #fff;
    --blue: #165a9f;
    --blue-dark: #0c3865;
    --green: #47745e;
    --accent: #f0b35a;
    --shadow: 0 24px 70px rgba(18, 33, 49, .13);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    background: var(--white);
}

a {
    color: inherit;
}

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

.sr-only,
.hidden-field {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 10;
    padding: .65rem 1rem;
    background: var(--ink);
    color: var(--white);
}

.skip-link:focus {
    top: 1rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 5;
    background: rgba(255, 255, 255, .94);
    border-bottom: 1px solid rgba(217, 222, 228, .85);
    backdrop-filter: blur(12px);
}

.nav-wrap {
    width: min(1180px, calc(100% - 40px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.brand {
    font-weight: 800;
    font-size: 1.15rem;
    text-decoration: none;
    letter-spacing: .02em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.site-nav a {
    color: var(--muted);
    font-weight: 700;
    font-size: .93rem;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    color: var(--blue-dark);
}

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--white);
}

.nav-toggle span:not(.sr-only) {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    align-items: end;
    color: var(--white);
    isolation: isolate;
}

.hero::after,
.image-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 20, 32, .76), rgba(8, 20, 32, .38) 48%, rgba(8, 20, 32, .12));
    z-index: -1;
}

.hero img,
.image-page img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-content,
.page-hero > div {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 96px;
}

.eyebrow {
    margin: 0 0 .8rem;
    color: var(--accent);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

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

h1 {
    max-width: 830px;
    margin-bottom: 1rem;
    font-size: clamp(2.55rem, 7vw, 5.8rem);
    line-height: .98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.05;
}

h3 {
    margin-bottom: .55rem;
    font-size: 1.2rem;
}

.hero p,
.page-hero p {
    max-width: 720px;
    font-size: 1.22rem;
}

.actions,
.cta-band {
    display: flex;
    align-items: center;
    gap: .9rem;
    flex-wrap: wrap;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .85rem 1.2rem;
    border: 1px solid transparent;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

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

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

.button.secondary {
    border-color: rgba(255, 255, 255, .75);
    color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.section,
.contact-layout,
.pricing-panel,
.legal {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 86px 0;
}

.intro,
.split,
.contact-layout,
.pricing-panel {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .86fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: start;
}

.copy,
.check-list,
.included p,
.price-card p,
.legal p {
    color: var(--muted);
    font-size: 1.05rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    padding-top: 0;
}

.feature-grid article {
    min-height: 220px;
    padding: 1.4rem;
    background: var(--surface);
    border: 1px solid var(--line);
}

.check-list {
    margin: 0;
    padding-left: 1.2rem;
}

.check-list li {
    margin-bottom: .8rem;
}

.cta-band {
    width: min(1180px, calc(100% - 40px));
    margin: 18px auto 92px;
    justify-content: space-between;
    padding: 2rem;
    color: var(--white);
    background: linear-gradient(135deg, var(--blue-dark), var(--green));
    border-radius: 8px;
}

.cta-band div {
    max-width: 760px;
}

.cta-band p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .82);
}

.page-hero {
    position: relative;
    isolation: isolate;
    color: var(--white);
}

.page-hero.image-page {
    min-height: 520px;
    display: grid;
    align-items: end;
}

.page-hero.compact {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 86px 0 28px;
    color: var(--ink);
}

.page-hero.compact .eyebrow {
    color: var(--blue);
}

.pricing-panel {
    align-items: stretch;
}

.price-card,
.included,
.contact-form {
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.price-card h2 {
    color: var(--blue-dark);
}

.price-card h2 span {
    display: block;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 700;
}

.contact-note {
    padding: 1rem;
    background: var(--surface);
    border-left: 4px solid var(--blue);
    color: var(--muted);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

label {
    display: grid;
    gap: .4rem;
    font-weight: 800;
}

input,
textarea {
    width: 100%;
    padding: .85rem .95rem;
    border: 1px solid var(--line);
    border-radius: 6px;
    color: var(--ink);
    font: inherit;
}

input:focus,
textarea:focus {
    outline: 3px solid rgba(22, 90, 159, .18);
    border-color: var(--blue);
}

.notice {
    padding: .85rem 1rem;
    border-radius: 6px;
}

.notice p {
    margin-bottom: .25rem;
}

.notice.success {
    color: #174b32;
    background: #e7f5ed;
}

.notice.error {
    color: #6b1f1f;
    background: #fae8e8;
}

.legal {
    max-width: 820px;
}

.legal h2 {
    margin-top: 2.2rem;
    font-size: 1.45rem;
}

.site-footer {
    padding: 56px 0 28px;
    color: rgba(255, 255, 255, .78);
    background: #111820;
}

.footer-grid {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand,
.footer-heading {
    margin-bottom: .8rem;
    color: var(--white);
    font-weight: 800;
}

.site-footer a {
    display: block;
    margin-bottom: .45rem;
    color: rgba(255, 255, 255, .78);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
}

.copyright {
    width: min(1180px, calc(100% - 40px));
    margin: 2rem auto 0;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .14);
    font-size: .9rem;
}

@media (max-width: 860px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 72px;
        display: none;
        padding: .8rem;
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 8px;
        box-shadow: var(--shadow);
    }

    .site-nav.is-open {
        display: grid;
    }

    .hero {
        min-height: 620px;
    }

    .hero-content,
    .page-hero > div {
        padding-bottom: 64px;
    }

    .intro,
    .split,
    .contact-layout,
    .pricing-panel,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 560px) {
    .nav-wrap,
    .hero-content,
    .page-hero > div,
    .section,
    .contact-layout,
    .pricing-panel,
    .legal,
    .cta-band,
    .footer-grid,
    .copyright,
    .page-hero.compact {
        width: min(100% - 28px, 1180px);
    }

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

    .price-card,
    .included,
    .contact-form,
    .cta-band {
        padding: 1.25rem;
    }
}
