:root {
    --bg: #f7f8fb;
    --surface: #ffffff;
    --text: #1f2937;
    --muted: #4b5563;
    --primary: #0f3d8a;
    --primary-dark: #0b2c63;
    --accent: #0ea5e9;
    --success-bg: #ecfdf3;
    --success-text: #166534;
    --error-bg: #fef2f2;
    --error-text: #991b1b;
    --border: #d1d5db;
    --focus: #f59e0b;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}

html {
    scroll-padding-top: 92px;
}

.container {
    width: min(1100px, 92%);
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--focus);
    color: #111;
    padding: .5rem .75rem;
    z-index: 1000;
}

.skip-link:focus {
    left: .5rem;
    top: .5rem;
}

.site-header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

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

.brand-logo {
    display: block;
    width: auto;
    height: 46px;
}

.section[id],
section[id] {
    scroll-margin-top: 92px;
}

.main-nav {
    display: flex;
    gap: .35rem;
    align-items: center;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    padding: .5rem .75rem;
    border-radius: .5rem;
}

.main-nav a[aria-current="page"] {
    background: #e5edff;
    color: var(--primary);
    font-weight: 600;
}

.menu-toggle {
    display: none;
}

main {
    padding: 2rem 0 3rem;
}

.hero {
    background: linear-gradient(120deg, #eff6ff 0%, #f0f9ff 100%);
    border: 1px solid #bfdbfe;
    border-radius: 1rem;
    padding: 2rem;
}

.hero-premium {
    position: relative;
    overflow: hidden;
}

.hero-premium::after {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(14, 165, 233, .2) 0%, rgba(14, 165, 233, 0) 70%);
    right: -80px;
    top: -70px;
    pointer-events: none;
}

.hero-metrics {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.hero-metrics span {
    display: inline-flex;
    align-items: center;
    border: 1px solid #bfdbfe;
    background: rgba(255, 255, 255, .75);
    color: #0f3d8a;
    border-radius: 999px;
    padding: .35rem .7rem;
    font-weight: 600;
    font-size: .86rem;
}

.section {
    margin-top: 1.5rem;
}

.section-header {
    margin-bottom: .9rem;
}

.section-header p {
    color: var(--muted);
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: .07em;
    font-size: .75rem;
    color: var(--muted);
    font-weight: 700;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: .65rem 1rem;
    text-decoration: none;
    border-radius: .55rem;
    border: 1px solid transparent;
    font-weight: 600;
}

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

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

.btn-secondary {
    border-color: var(--border);
    color: var(--text);
    background: var(--surface);
}

.grid {
    margin-top: 1.25rem;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: .85rem;
    padding: 1.2rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.service-card {
    padding: .8rem;
    transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(15, 23, 42, .1);
}

.card-body {
    padding: .2rem .35rem .45rem;
}

.card-body h3 {
    margin-bottom: .25rem;
}

.service-media {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: .7rem;
    border: 1px solid var(--border);
    margin-bottom: .85rem;
}

.split-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

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

.rate-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-color: #c7d2fe;
}

.rate {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.rate span {
    display: block;
    font-size: .95rem;
    font-weight: 500;
    color: var(--muted);
}

.requirements-card {
    margin-top: 1rem;
}

.checklist {
    list-style: none;
    padding-left: 0;
    margin: 0 0 1rem;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    margin-bottom: .45rem;
}

.checklist-icon {
    margin-top: .16rem;
    color: #1d4ed8;
    flex-shrink: 0;
}

.steps {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: .85rem;
    padding: 1.1rem 1.2rem;
    margin: 0;
}

.steps li {
    margin-bottom: .95rem;
}

.steps li:last-child {
    margin-bottom: 0;
}

.steps h3 {
    margin-bottom: .35rem;
}

.premium-steps {
    list-style: none;
    counter-reset: process-step;
    padding: 1.2rem;
}

.premium-steps li {
    position: relative;
    padding-left: 3rem;
}

.premium-steps li::before {
    counter-increment: process-step;
    content: counter(process-step);
    position: absolute;
    left: .2rem;
    top: .1rem;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    background: #dbeafe;
    color: #1e3a8a;
    font-weight: 800;
    display: grid;
    place-items: center;
}

.contact-band {
    background: #111827;
    color: #f3f4f6;
    border-radius: .9rem;
    padding: 1.25rem;
    border: 1px solid #1f2937;
    box-shadow: 0 14px 30px rgba(2, 6, 23, .32);
}

.contact-band a {
    color: #93c5fd;
}

.contact-band-copy {
    font-size: 1.02rem;
}

.flash {
    padding: .75rem 1rem;
    border-radius: .6rem;
    margin-bottom: 1rem;
}

.flash-success {
    background: var(--success-bg);
    color: var(--success-text);
}

.flash-error {
    background: var(--error-bg);
    color: var(--error-text);
}

.site-footer {
    background: #111827;
    color: #f3f4f6;
    padding: 1rem 0;
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
}

.site-footer a {
    color: #93c5fd;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: .25rem;
}

input,
select,
textarea,
button {
    font: inherit;
}

input,
select,
textarea {
    width: 100%;
    padding: .6rem .65rem;
    border: 1px solid var(--border);
    border-radius: .5rem;
    background: #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .9rem;
}

.field {
    margin-bottom: .3rem;
}

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

.required {
    color: #b91c1c;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 2px;
}

@media (max-width: 860px) {
    .brand-logo {
        height: 100px;
    }

    .menu-toggle {
        display: inline-flex;
        border: 1px solid var(--border);
        background: #fff;
        color: var(--text);
        border-radius: .5rem;
        padding: .5rem .7rem;
    }

    .main-nav {
        position: absolute;
        top: 68px;
        right: 4%;
        left: 4%;
        background: var(--surface);
        border: 1px solid var(--border);
        border-radius: .7rem;
        padding: .5rem;
        flex-direction: column;
        align-items: stretch;
        display: none;
    }

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

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