:root {
    --midnight: #0B1B2B;
    --delft: #1F3C88;
    --teal: #1BBFB3;
    --amber: #FFB800;
    --cloud: #F5F7FA;
    --graphite: #273142;
    --white: #FFFFFF;
    --text: #1F2430;
    --muted: #5B6374;
    --border: #D7DDE8;
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-soft: 0 16px 40px rgba(15, 35, 52, 0.08);
    --shadow-card: 0 14px 30px rgba(15, 35, 52, 0.12);
    --max-width: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

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

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0 0 16px;
    color: var(--midnight);
}

p {
    margin: 0 0 16px;
}

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

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

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

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

.top-bar {
    background: var(--graphite);
    color: var(--cloud);
    font-size: 14px;
}

.top-bar-container {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    padding: 10px 0;
}

.top-bar-item {
    opacity: 0.8;
}

.site-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 20;
    box-shadow: 0 8px 30px rgba(15, 35, 52, 0.12);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--midnight);
    font-weight: 600;
    font-size: 20px;
}

.logo-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(31,60,136,0.9), rgba(27,191,179,0.85));
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: 1px;
}

.desktop-nav {
    margin-left: auto;
}

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

.desktop-nav a {
    color: var(--graphite);
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease, color 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus {
    background: rgba(31, 60, 136, 0.08);
    color: var(--delft);
}

.desktop-nav a.is-active {
    color: var(--delft);
    background: rgba(31, 60, 136, 0.12);
}

.primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--delft), var(--teal));
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-cta:hover,
.primary-cta:focus {
    transform: translateY(-1px);
    box-shadow: var(--shadow-card);
}

.secondary-cta {
    display: inline-flex;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(31, 60, 136, 0.25);
    color: var(--delft);
    font-weight: 600;
    transition: background 0.2s ease;
}

.secondary-cta:hover,
.secondary-cta:focus {
    background: rgba(31, 60, 136, 0.06);
}

.nav-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: var(--graphite);
    border-radius: 2px;
}

.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11, 27, 43, 0.96);
    color: var(--cloud);
    padding: 32px;
    flex-direction: column;
    gap: 32px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.nav-toggle:checked ~ .mobile-nav {
    transform: translateY(0);
}

.mobile-nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-brand {
    font-size: 20px;
    font-weight: 600;
}

.mobile-close {
    font-size: 32px;
    cursor: pointer;
    color: var(--cloud);
}

.mobile-nav-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.mobile-nav-list a {
    color: var(--cloud);
    font-size: 20px;
    font-weight: 500;
}

.mobile-nav-list a.is-active {
    color: var(--amber);
}

.mobile-nav-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 16px;
    opacity: 0.85;
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(245, 247, 250, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.inner-hero {
    padding-top: 60px;
}

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

.hero-stats {
    margin: 32px 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--delft);
}

.stat-label {
    color: var(--muted);
    font-size: 14px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section {
    padding: 80px 0;
}

.section-headline {
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 48px;
    align-items: center;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.section-card,
.section-image,
.section-text {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.section-image {
    padding: 0;
    box-shadow: none;
    background: transparent;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: grid;
    gap: 12px;
}

.highlight-list li {
    position: relative;
    padding-left: 26px;
    color: var(--graphite);
}

.highlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 0 4px rgba(27, 191, 179, 0.15);
}

.card-list {
    display: grid;
    gap: 24px;
}

.card-list.two {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card-list.three {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(39, 49, 66, 0.08);
    backdrop-filter: blur(6px);
}

.card ul {
    padding-left: 20px;
    margin: 16px 0 0;
}

.card ul li {
    margin-bottom: 8px;
}

.image-card {
    padding: 0;
    overflow: hidden;
}

.pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.pill-list span {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(31, 60, 136, 0.08);
    color: var(--delft);
    font-weight: 500;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

th, td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    text-align: left;
}

th {
    background: rgba(31, 60, 136, 0.08);
    font-weight: 600;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.dashboard-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.metric-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 16px;
}

.metric-list li {
    display: grid;
    gap: 4px;
}

.metric-list li span {
    font-weight: 600;
    color: var(--delft);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-box {
    text-align: center;
    background: linear-gradient(135deg, rgba(31, 60, 136, 0.92), rgba(27, 191, 179, 0.9));
    padding: 60px;
    border-radius: var(--radius-lg);
    color: var(--white);
    box-shadow: var(--shadow-card);
}

.cta-box h2,
.cta-box p {
    color: var(--white);
}

.faq-contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.faq-panel {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 16px;
}

.faq-item {
    border-bottom: 1px solid rgba(39, 49, 66, 0.1);
    padding-bottom: 12px;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    padding: 12px 0;
    color: var(--graphite);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
}

.toggle-icon {
    font-size: 22px;
    color: var(--delft);
    width: 24px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    color: var(--muted);
    padding-right: 20px;
}

.faq-item.open .faq-answer {
    margin-top: 8px;
}

.contact-panel {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.contact-form {
    display: grid;
    gap: 16px;
}

.form-group {
    display: grid;
    gap: 6px;
}

label {
    font-weight: 500;
    color: var(--graphite);
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(39, 49, 66, 0.2);
    font-size: 16px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
    border-color: var(--teal);
    outline: none;
    box-shadow: 0 0 0 3px rgba(27, 191, 179, 0.2);
}

textarea {
    resize: vertical;
}

.form-disclaimer {
    font-size: 14px;
    color: var(--muted);
    margin: 4px 0 0;
}

.info-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border-left: 6px solid rgba(31, 60, 136, 0.4);
}

.timeline {
    display: grid;
    gap: 24px;
}

.timeline-item {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    position: relative;
    border-left: 6px solid var(--teal);
}

.timeline-year {
    font-weight: 600;
    color: var(--delft);
    margin-bottom: 8px;
    display: block;
}

.form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
}

.lead-summary {
    margin: 24px 0;
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.lead-summary ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.legal-hero {
    padding: 60px 0;
    background: rgba(31, 60, 136, 0.08);
}

.legal-section {
    padding: 60px 0;
}

.legal-section h2 {
    margin-top: 40px;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.legal-table th,
.legal-table td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
}

.legal-table th {
    background: rgba(31, 60, 136, 0.12);
    text-align: left;
}

.thanks-section {
    padding: 80px 0;
}

.site-footer {
    background: var(--midnight);
    color: var(--cloud);
    margin-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    padding: 60px 24px;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer-column p,
.footer-column li {
    color: rgba(255, 255, 255, 0.76);
    margin-bottom: 8px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.86);
}

.footer-menu a:hover {
    color: var(--amber);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}

.footer-bottom {
    background: rgba(11, 27, 43, 0.92);
}

.footer-bottom-container {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    max-width: 360px;
    background: rgba(15, 35, 52, 0.95);
    color: var(--cloud);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    z-index: 50;
    display: none;
}

.cookie-banner a {
    color: var(--amber);
    text-decoration: underline;
}

.cookie-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

.cookie-actions button {
    flex: 1;
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--delft), var(--teal));
    color: var(--white);
}

.cookie-decline {
    background: transparent;
    border: 1px solid rgba(245, 247, 250, 0.4);
    color: var(--cloud);
}

@media (max-width: 1040px) {
    .hero-grid,
    .section-grid,
    .form-wrapper {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 60px 0;
    }

    .section-card,
    .section-text {
        padding: 28px;
    }

    .faq-contact-grid {
        grid-template-columns: 1fr;
    }
}

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

    .primary-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

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

    .cta-box {
        padding: 48px 32px;
    }
}

@media (max-width: 640px) {
    .top-bar-container {
        justify-content: flex-start;
    }

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

    .card-list.two,
    .card-list.three {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    .cookie-actions {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .nav-container {
        padding: 16px;
    }

    .section-card,
    .section-text {
        padding: 24px;
    }

    .form-wrapper {
        padding: 28px;
        gap: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
}