:root {
    --navy: #0c344d;
    --olive: #7e902d;
    --navy-dark: #082638;
    --navy-soft: #eaf1f5;
    --olive-soft: #f2f6e4;
    --text: #183142;
    --muted: #5b6f7c;
    --white: #ffffff;
    --border: #d8e1e7;
    --shadow: 0 18px 40px rgba(12, 52, 77, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --shell: 1120px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #f6fafc 0%, #ffffff 40%, #f8fbfc 100%);
}

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

a {
    color: inherit;
}

.shell {
    width: min(var(--shell), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(12, 52, 77, 0.08);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 88px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    min-width: 0;
}

.brand-logo {
    width: 58px;
    height: 58px;
    object-fit: cover;
    border-radius: 14px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(12, 52, 77, 0.08);
}

.brand-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.brand-name {
    font-size: 1.08rem;
    font-weight: 700;
    color: var(--navy);
}

.brand-tag {
    font-size: 0.88rem;
    color: var(--muted);
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
}

.nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 12px 18px;
    border-radius: 999px;
}

.page-hero {
    padding: 68px 0 32px;
}

.page-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 30px;
    align-items: start;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--olive);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.84rem;
}

.page-hero-copy h1 {
    margin: 0;
    font-size: clamp(2.2rem, 3.6vw, 3.7rem);
    line-height: 1.05;
    color: var(--navy);
    max-width: 13ch;
}

.page-hero-text {
    margin: 18px 0 0;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--muted);
    max-width: 62ch;
}

.hero-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    color: var(--navy);
    font-weight: 700;
    margin-top: 24px;
}

.hero-contact a {
    text-decoration: none;
}

.hero-contact span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--olive);
}

.info-card,
.form-card,
.support-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.info-card {
    padding: 28px;
}

.info-card h2,
.form-card h2,
.support-card h2 {
    margin: 0 0 14px;
    color: var(--navy);
    font-size: 1.45rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: var(--text);
    line-height: 1.65;
}

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

.check-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--olive);
    box-shadow: 0 0 0 6px rgba(126, 144, 45, 0.12);
}

.form-section {
    padding: 8px 0 60px;
}

.form-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.55fr;
    gap: 24px;
    align-items: start;
}

.form-card {
    padding: 30px;
}

.form-intro {
    margin: 0 0 24px;
    color: var(--muted);
    line-height: 1.7;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.field-group {
    margin-bottom: 18px;
}

.field-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--navy);
    font-size: 0.95rem;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    color: var(--text);
    background: #fcfeff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

input:focus,
select:focus,
textarea:focus {
    border-color: rgba(12, 52, 77, 0.35);
    box-shadow: 0 0 0 4px rgba(12, 52, 77, 0.08);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    border: none;
    cursor: pointer;
    font: inherit;
}

.button:hover {
    transform: translateY(-1px);
}

.button-primary {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 14px 28px rgba(12, 52, 77, 0.16);
}

.button-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--border);
}

.submit-button {
    width: 100%;
    margin-top: 8px;
}

.support-card {
    padding: 28px;
}

.support-card h3 {
    margin: 0 0 10px;
    color: var(--navy);
    font-size: 1.08rem;
}

.support-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.support-link {
    display: block;
    text-decoration: none;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.support-divider {
    height: 1px;
    background: var(--border);
    margin: 22px 0;
}

.support-button {
    width: 100%;
    margin-top: 16px;
}

.site-footer {
    border-top: 1px solid rgba(12, 52, 77, 0.08);
    background: #fbfdfe;
}

.footer-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
}

.footer-brand .brand-logo {
    width: 52px;
    height: 52px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.footer-links a {
    text-decoration: none;
    color: var(--navy);
    font-weight: 600;
}

@media (max-width: 980px) {
    .nav-wrap {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 0;
    }

    .nav {
        gap: 16px;
    }

    .page-hero-grid,
    .form-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(var(--shell), calc(100% - 24px));
    }

    .page-hero {
        padding-top: 42px;
    }

    .page-hero-copy h1 {
        max-width: none;
    }

    .info-card,
    .form-card,
    .support-card {
        padding: 22px;
    }

    .field-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .nav {
        width: 100%;
    }

    .nav a {
        font-size: 0.95rem;
    }

    .hero-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-contact span {
        display: none;
    }
}