:root {
    --color-midnight: #0B1B3B;
    --color-blue: #1E4D8F;
    --color-teal: #1BB39B;
    --color-slate: #E8EEF4;
    --color-gold: #F0B429;
    --color-white: #ffffff;
    --color-text: #1A2233;
    --color-muted: #5C6A82;
    --max-width: 1200px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--color-text);
    background-color: var(--color-slate);
    line-height: 1.6;
}

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

a {
    color: var(--color-blue);
    text-decoration: none;
}

a:hover,
a:focus {
    color: var(--color-teal);
}

p {
    margin: 0 0 1.2rem 0;
}

h1, h2, h3, h4 {
    color: var(--color-midnight);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.4rem;
}

ul {
    padding-left: 1.2rem;
    margin: 0 0 1.2rem 0;
}

li {
    margin-bottom: 0.6rem;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 4.5rem 0;
}

.section:nth-child(even) {
    background-color: var(--color-white);
}

.section-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-teal);
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 10px;
    background: var(--color-blue);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    z-index: 100;
}

.skip-link:focus {
    left: 10px;
}

.nav-toggle {
    display: none;
}

.site-header {
    background-color: var(--color-white);
    border-bottom: 1px solid rgba(11, 27, 59, 0.08);
    position: sticky;
    top: 0;
    z-index: 90;
}

.top-bar {
    background-color: var(--color-midnight);
    color: var(--color-slate);
    font-size: 0.85rem;
}

.top-bar__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar__brand {
    font-weight: 600;
}

.top-bar__group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.top-bar__link {
    color: var(--color-slate);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    gap: 1.5rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--color-midnight);
}

.brand__logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    font-weight: 500;
    color: var(--color-midnight);
    position: relative;
    padding-bottom: 0.25rem;
}

.desktop-nav a.active {
    color: var(--color-blue);
    border-bottom: 2px solid var(--color-gold);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    cursor: pointer;
}

.burger span {
    width: 24px;
    height: 2px;
    background-color: var(--color-midnight);
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(11, 27, 59, 0.95);
    color: var(--color-white);
    z-index: 120;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.nav-toggle:checked ~ .mobile-nav {
    display: flex;
}

.mobile-nav__inner {
    width: 100%;
    max-width: 320px;
}

.mobile-nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.mobile-nav__close {
    font-size: 2rem;
    color: var(--color-white);
    cursor: pointer;
}

.mobile-nav__links ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav__links a {
    color: var(--color-white);
    font-size: 1.1rem;
}

.mobile-nav__links a.active {
    color: var(--color-gold);
}

.mobile-nav__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.mobile-nav__contact a {
    color: var(--color-teal);
}

.cta-fixed {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    background-color: var(--color-gold);
    color: var(--color-midnight);
    padding: 0.85rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(11, 27, 59, 0.25);
    z-index: 80;
}

.hero {
    background-color: var(--color-white);
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
    align-items: center;
}

.hero-text {
    max-width: 560px;
}

.hero-bullets {
    list-style: disc;
    padding-left: 1.2rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin: 2rem 0 1rem 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: none;
}

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

.btn-outline {
    border: 2px solid var(--color-blue);
    color: var(--color-blue);
    background-color: transparent;
}

.hero-note {
    font-size: 0.95rem;
    color: var(--color-muted);
}

.split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: center;
}

.split__media img {
    border-radius: 12px;
    box-shadow: 0 16px 30px rgba(11, 27, 59, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat {
    background-color: var(--color-white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 24px rgba(11, 27, 59, 0.08);
}

.stat__value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 0.5rem;
}

.stat__label {
    font-size: 0.95rem;
    color: var(--color-muted);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 18px 38px rgba(11, 27, 59, 0.08);
}

.card__list {
    list-style: disc;
    padding-left: 1.2rem;
    color: var(--color-muted);
}

.accent-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.accent-list li {
    background: rgba(27, 179, 155, 0.12);
    border-left: 4px solid var(--color-teal);
    padding: 0.8rem 1rem;
    margin-bottom: 0.8rem;
    border-radius: 8px;
}

.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background-color: var(--color-white);
    padding: 1.8rem;
    border-radius: 14px;
    box-shadow: 0 15px 32px rgba(11, 27, 59, 0.08);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.contact-list li {
    margin-bottom: 0.8rem;
    font-size: 0.98rem;
}

.contact-form {
    background-color: var(--color-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 18px 38px rgba(11, 27, 59, 0.08);
}

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

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-field label {
    font-weight: 600;
    font-size: 0.95rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.85rem;
    border-radius: 10px;
    border: 1px solid rgba(11, 27, 59, 0.2);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--color-white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: 2px solid var(--color-blue);
    border-color: transparent;
}

.form-footer {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-disclaimer {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.site-footer {
    background-color: var(--color-midnight);
    color: var(--color-slate);
    padding-top: 3rem;
}

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

.footer-brand__image {
    width: 90px;
    height: auto;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(232, 238, 244, 0.2);
    margin-top: 2.5rem;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(232, 238, 244, 0.8);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-midnight);
    color: var(--color-slate);
    padding: 1.25rem 0;
    z-index: 130;
}

.cookie-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner p {
    margin: 0;
    max-width: 760px;
}

.cookie-banner.is-hidden {
    display: none;
}

.legal-content .section {
    background-color: var(--color-white);
}

.legal-content h1 {
    margin-bottom: 1.5rem;
}

.legal-content h2 {
    margin-top: 2rem;
}

.legal-content ul {
    list-style: disc;
    padding-left: 1.4rem;
}

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

.timeline__item {
    background-color: var(--color-white);
    padding: 1.8rem;
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(11, 27, 59, 0.08);
}

.thanks-section {
    text-align: left;
}

.thanks-summary {
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 14px;
    box-shadow: 0 18px 34px rgba(11, 27, 59, 0.12);
    margin: 2rem 0;
}

.thanks-summary dl {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 0.5rem 2rem;
}

.thanks-summary dt {
    font-weight: 600;
    color: var(--color-midnight);
}

.thanks-summary dd {
    margin: 0;
    color: var(--color-muted);
}

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

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

    .desktop-nav {
        display: none;
    }

    .burger {
        display: flex;
    }

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

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

    .cookie-banner__content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.1rem;
    }

    h2 {
        font-size: 1.8rem;
    }

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

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

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

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

@media (max-width: 480px) {
    body {
        font-size: 0.95rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-fixed {
        right: 0.75rem;
        bottom: 0.75rem;
    }
}