:root {
    --bg: #f8fafc;
    --surface: #ffffff;
    --ink: #0f172a;
    --muted: #475569;
    --soft: #e2e8f0;
    --brand: #0284c7;
    --brand-dark: #075985;
    --accent: #16a34a;
    --accent-dark: #15803d;
    --warn: #f59e0b;
    --shadow: 0 18px 50px rgba(15, 23, 42, .10);
    --radius: 24px;
    --radius-sm: 14px;
    --max: 1180px;
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 17px;
}

body.test-mode::before {
    content: "TEST MODE - noindex/noarchive";
    display: block;
    background: #111827;
    color: #fff;
    text-align: center;
    padding: .45rem 1rem;
    font-size: .85rem;
    letter-spacing: .04em;
}

img, svg {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--brand-dark);
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

a:hover { color: var(--accent-dark); }

.container {
    width: min(var(--max), calc(100% - 40px));
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: #fff;
    color: #000;
    padding: .75rem 1rem;
    z-index: 20;
}

.skip-link:focus { left: 0; }

.top-strip {
    background: #0f172a;
    color: #e2e8f0;
    font-size: .93rem;
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: .55rem 0;
}

.top-strip a { color: #fff; text-decoration: none; font-weight: 700; }

.site-header {
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(148, 163, 184, .22);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(12px);
}

.nav-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 86px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }

.brand img { width: 214px; }

.primary-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: .35rem;
}

.primary-nav a {
    display: inline-flex;
    padding: .65rem .8rem;
    border-radius: 999px;
    text-decoration: none;
    color: #1f2937;
    font-weight: 700;
    font-size: .95rem;
}

.primary-nav a:hover,
.primary-nav a.active {
    background: #e0f2fe;
    color: #075985;
}

.menu-toggle {
    display: none;
    border: 1px solid var(--soft);
    background: #fff;
    border-radius: 999px;
    padding: .65rem 1rem;
    font: inherit;
    font-weight: 800;
}

.hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 20%, rgba(14, 165, 233, .20), transparent 28rem),
        radial-gradient(circle at 90% 10%, rgba(34, 197, 94, .14), transparent 28rem),
        linear-gradient(135deg, #f8fafc 0%, #e0f2fe 55%, #f0fdf4 100%);
    padding: 5.5rem 0 4.5rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 3rem;
    align-items: center;
}

.kicker {
    margin: 0 0 .85rem;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 900;
    font-size: .84rem;
}

h1, h2, h3 {
    line-height: 1.12;
    margin: 0 0 1rem;
}

h1 {
    font-size: clamp(2.45rem, 6vw, 5.2rem);
    letter-spacing: -.055em;
}

.hero p.lede,
.page-hero p.lede {
    color: #334155;
    font-size: clamp(1.13rem, 2vw, 1.35rem);
    max-width: 750px;
    margin: 0 0 1.6rem;
}

.hero-actions,
.button-row {
    display: flex;
    flex-wrap: wrap;
    gap: .9rem;
    margin-top: 1.4rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    min-height: 48px;
    padding: .8rem 1.15rem;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(2, 132, 199, .23);
    border: 0;
    cursor: pointer;
}

.button:hover {
    color: #fff;
    background: var(--brand-dark);
}

.button-secondary {
    background: #fff;
    color: #0f172a;
    box-shadow: none;
    border: 1px solid var(--soft);
}

.button-secondary:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.button-light {
    background: #fff;
    color: #075985;
    box-shadow: none;
}

.button-light:hover {
    background: #e0f2fe;
    color: #075985;
}

.hero-panel {
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(148, 163, 184, .25);
    box-shadow: var(--shadow);
    border-radius: calc(var(--radius) + 10px);
    padding: 1rem;
}

.hero-panel img {
    border-radius: var(--radius);
    display: block;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: .9rem;
    margin-top: 1.4rem;
}

.trust-stat {
    background: rgba(255,255,255,.74);
    border: 1px solid rgba(148, 163, 184, .24);
    border-radius: 18px;
    padding: .95rem;
}

.trust-stat strong {
    display: block;
    font-size: 1.35rem;
    line-height: 1;
}

.trust-stat span {
    display: block;
    color: var(--muted);
    font-size: .88rem;
    margin-top: .25rem;
}

section {
    padding: 4.5rem 0;
}

.section-heading {
    max-width: 830px;
    margin-bottom: 2rem;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading h2,
.page-content h2 {
    font-size: clamp(2rem, 4vw, 3.1rem);
    letter-spacing: -.04em;
}

.section-heading p,
.page-content p {
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 1.25rem;
}

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

.card {
    background: var(--surface);
    border: 1px solid rgba(148, 163, 184, .26);
    border-radius: var(--radius);
    padding: 1.45rem;
    box-shadow: 0 8px 28px rgba(15,23,42,.055);
}

.card h3 {
    font-size: 1.28rem;
}

.card p:last-child,
.card ul:last-child {
    margin-bottom: 0;
}

.card ul,
.check-list {
    padding-left: 1.1rem;
    color: var(--muted);
}

.check-list li {
    margin: .45rem 0;
}

.text-link {
    font-weight: 900;
    text-decoration: none;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: start;
}

.highlight-box {
    background: #0f172a;
    color: #e2e8f0;
    border-radius: calc(var(--radius) + 4px);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.highlight-box h2,
.highlight-box h3 {
    color: #fff;
}

.highlight-box p,
.highlight-box li {
    color: #cbd5e1;
}

.badge-list {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    padding: 0;
    list-style: none;
    margin: 1rem 0 0;
}

.badge-list li {
    background: #e0f2fe;
    color: #075985;
    font-weight: 800;
    border-radius: 999px;
    padding: .38rem .72rem;
    font-size: .93rem;
}

.page-hero {
    background:
        radial-gradient(circle at 85% 20%, rgba(14,165,233,.18), transparent 26rem),
        linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 4.7rem 0 3.6rem;
    border-bottom: 1px solid rgba(148, 163, 184, .22);
}

.page-hero .container {
    max-width: 980px;
}

.breadcrumb {
    color: var(--muted);
    font-size: .9rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    text-decoration: none;
    font-weight: 800;
}

.page-content {
    padding: 4rem 0;
}

.prose {
    max-width: 900px;
}

.prose h2 {
    margin-top: 2.5rem;
}

.prose h3 {
    margin-top: 1.8rem;
}

.cta-band {
    width: min(var(--max), calc(100% - 40px));
    margin: 4.5rem auto;
    background: linear-gradient(135deg, #075985, #0f172a 60%, #15803d);
    color: #fff;
    border-radius: calc(var(--radius) + 8px);
    padding: clamp(1.4rem, 4vw, 2.4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    box-shadow: var(--shadow);
}

.cta-band h2 {
    font-size: clamp(1.8rem, 4vw, 2.7rem);
    color: #fff;
}

.cta-band p {
    color: #e0f2fe;
    margin: 0;
    max-width: 760px;
}

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

.price {
    font-size: 2rem;
    font-weight: 950;
    letter-spacing: -.04em;
    margin: .6rem 0;
}

.price small {
    font-size: .92rem;
    color: var(--muted);
    font-weight: 700;
}

.featured-card {
    border: 2px solid rgba(14, 165, 233, .5);
    transform: translateY(-8px);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr);
    gap: 2rem;
}

.form-card {
    background: #fff;
    border: 1px solid rgba(148, 163, 184, .3);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

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

label {
    display: grid;
    gap: .38rem;
    font-weight: 850;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 14px;
    padding: .85rem .95rem;
    font: inherit;
    background: #fff;
    color: var(--ink);
}

textarea {
    min-height: 150px;
    resize: vertical;
}

.form-note {
    color: var(--muted);
    font-size: .94rem;
}

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

.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 4rem 0 1.3rem;
}

.site-footer a {
    color: #e0f2fe;
    text-decoration: none;
}

.site-footer a:hover {
    color: #fff;
    text-decoration: underline;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .8fr .8fr;
    gap: 2rem;
}

.footer-logo {
    width: 210px;
    margin-bottom: 1rem;
}

.site-footer h2 {
    color: #fff;
    font-size: 1.05rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer li {
    margin: .42rem 0;
}

.footer-bottom {
    margin-top: 2.4rem;
    border-top: 1px solid rgba(255,255,255,.12);
    padding-top: 1.2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: .9rem;
}

@media (max-width: 980px) {
    .hero-grid,
    .split,
    .contact-layout {
        grid-template-columns: 1fr;
    }

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

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

    .primary-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 100%;
        background: #fff;
        border: 1px solid var(--soft);
        box-shadow: var(--shadow);
        border-radius: 20px;
        padding: .75rem;
        justify-content: flex-start;
    }

    .primary-nav.open {
        display: flex;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-header {
        position: relative;
    }

    .nav-shell {
        position: relative;
    }
}

@media (max-width: 720px) {
    body { font-size: 16px; }

    .top-strip-inner,
    .footer-bottom,
    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }

    .grid-2,
    .grid-3,
    .grid-4,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 3.4rem;
    }

    .brand img {
        width: 178px;
    }
}


.turnstile-wrap {
  margin: 18px 0 8px;
}

.turnstile-wrap iframe {
  max-width: 100%;
}
