:root {
    --color-primary: #0F172A;
    --color-secondary: #2563EB;
    --color-tertiary: #22D3EE;
    --color-success: #10B981;
    --color-background: #F8FAFC;
    --color-muted: #94A3B8;
    --color-white: #FFFFFF;
    --color-dark: #0F172A;
    --font-family: "Inter", "Segoe UI", Arial, sans-serif;
    --max-width: 1200px;
    --transition: 0.2s ease-in-out;
}

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

body {
    margin: 0;
    font-family: var(--font-family);
    background-color: var(--color-background);
    color: var(--color-primary);
    line-height: 1.6;
}

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

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

a:hover,
a:focus {
    color: var(--color-tertiary);
    text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-primary);
    margin-top: 0;
    line-height: 1.2;
}

p, ul, ol {
    margin-top: 0;
}

ul, ol {
    padding-left: 1.2rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.button-primary {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
}

.button-primary:hover,
.button-primary:focus {
    background: var(--color-tertiary);
    border-color: var(--color-tertiary);
    color: var(--color-primary);
}

.button-secondary {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.button-secondary:hover,
.button-secondary:focus {
    color: var(--color-white);
    background: var(--color-secondary);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip-link:focus {
    position: fixed;
    left: 1rem;
    top: 1rem;
    width: auto;
    height: auto;
    padding: 0.75rem 1rem;
    background: var(--color-secondary);
    color: var(--color-white);
    z-index: 1000;
    border-radius: 0.5rem;
}

.container {
    width: 92%;
    max-width: var(--max-width);
    margin: 0 auto;
}

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

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

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

.align-center {
    align-items: center;
}

.align-start {
    align-items: start;
}

.section {
    padding: 5rem 0;
    background-color: var(--color-white);
}

.section--light {
    background-color: var(--color-background);
}

.section--accent {
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(16,185,129,0.1));
}

.section-content {
    display: grid;
    gap: 1.25rem;
}

.section-content.centered {
    text-align: center;
    justify-items: center;
}

.section-media {
    overflow: hidden;
    border-radius: 1.25rem;
    box-shadow: 0 30px 60px -30px rgba(15, 23, 42, 0.25);
    background: var(--color-background);
}

.section-media img {
    width: 100%;
    height: auto;
}

.section-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.section-points li {
    position: relative;
    padding-left: 1.75rem;
}

.section-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.9rem;
    height: 0.9rem;
    border-radius: 0.3rem;
    background: var(--color-success);
    opacity: 0.9;
}

.section-points--columns {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.section-list h3 {
    margin-bottom: 0.5rem;
}

.section-list ul {
    margin: 0;
}

.section-steps {
    counter-reset: step-counter;
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.25rem;
}

.section-steps li {
    background: var(--color-background);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.section-steps li::before {
    counter-increment: step-counter;
    content: counter(step-counter);
    display: inline-flex;
    width: 2.25rem;
    height: 2.25rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-white);
    margin-right: 0.75rem;
    font-weight: 600;
}

.section-subgrid {
    margin-top: 3rem;
}

.section-stats,
.metrics-grid,
.timeline {
    display: grid;
    gap: 1.5rem;
}

.stat-card,
.metrics-grid li,
.summary-card,
.contact-card,
.card {
    background: var(--color-white);
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 60px -40px rgba(15, 23, 42, 0.25);
}

.stat-value,
.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

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

.section-stats {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metrics-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    background: var(--color-white);
    border-radius: 1.25rem;
    padding: 1.5rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.timeline-number {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--color-secondary);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.contact-details p {
    margin: 0 0 0.5rem 0;
}

.contact-details a {
    font-weight: 600;
}

.contact-section .contact-details strong {
    display: inline-block;
    min-width: 110px;
}

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

.form-row {
    display: grid;
    gap: 0.5rem;
}

.form-row label {
    font-weight: 600;
    color: var(--color-primary);
}

.form-row input,
.form-row textarea {
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: var(--color-white);
    font: inherit;
    transition: var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: var(--color-secondary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

.consent-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 0.75rem;
}

.consent-row input[type="checkbox"] {
    margin-top: 0.4rem;
    width: 1.25rem;
    height: 1.25rem;
}

.consent-row label a {
    color: var(--color-secondary);
    text-decoration: underline;
}

.hero {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.hero--inner {
    padding-top: 5rem;
    padding-bottom: 4rem;
}

.hero-content {
    display: grid;
    gap: 1.25rem;
}

.hero-highlights {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: grid;
    gap: 0.75rem;
}

.hero-highlights li {
    padding-left: 1.5rem;
    position: relative;
}

.hero-highlights li::before {
    content: "•";
    color: var(--color-success);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.25rem;
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
}

.site-header {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 900;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.logo-img {
    display: block;
    height: auto;
}

.header-logo {
    max-width: 50px;
}

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

.nav-toggle {
    display: none;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-list a {
    font-weight: 600;
    color: var(--color-primary);
}

.nav-list a[aria-current="page"] {
    color: var(--color-secondary);
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    position: relative;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-toggle-label span::before {
    top: -7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

.nav-close {
    display: none;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-white);
    cursor: pointer;
}

.site-footer {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 4rem 0 3rem;
}

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

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0 0;
    display: grid;
    gap: 0.5rem;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.footer-note {
    grid-column: 1 / -1;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(248, 250, 252, 0.12);
}

.cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.3);
    display: none;
    z-index: 950;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--color-tertiary);
    text-decoration: underline;
}

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

.faq-item {
    background: var(--color-white);
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 30px 60px -40px rgba(15, 23, 42, 0.2);
}

.faq-item h3 {
    margin-bottom: 0.75rem;
}

.summary-card {
    display: grid;
    gap: 1rem;
}

.summary-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.5rem;
}

.summary-note h3 {
    margin-bottom: 0.5rem;
}

.hero-stats {
    display: grid;
    gap: 1rem;
}

.hero-stats .stat-card {
    background: var(--color-background);
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: none;
}

.cookies-table {
    display: grid;
    gap: 1.5rem;
}

.cookies-row {
    display: grid;
    gap: 1.25rem;
    background: var(--color-white);
    border-radius: 1.25rem;
    padding: 1.75rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.cookies-row .cookies-col h3 {
    margin-bottom: 0.5rem;
}

.card {
    text-align: left;
}

.card h3 {
    margin-bottom: 0.75rem;
}

.card p {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 4rem 0;
    }

    .hero {
        padding-top: 4.5rem;
    }

    .hero-cta {
        justify-content: center;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 2.5rem;
        transform: translateX(100%);
        transition: transform var(--transition);
        padding: 2rem;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-list a {
        font-size: 1.5rem;
        color: var(--color-white);
    }

    .nav-toggle-label {
        display: inline-flex;
        padding: 0.75rem;
    }

    .nav-close {
        display: block;
    }

    .nav-toggle:checked ~ .site-nav {
        transform: translateX(0);
    }

    .hero-media {
        order: -1;
    }

    .cookie-banner {
        bottom: 1rem;
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 600px) {
    .hero {
        padding-top: 4rem;
        padding-bottom: 3rem;
    }

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

    .container {
        width: 90%;
    }

    .stat-card,
    .metrics-grid li,
    .timeline-step,
    .faq-item,
    .cookies-row,
    .card,
    .summary-card,
    .contact-card {
        padding: 1.25rem;
    }

    .section {
        padding: 3rem 0;
    }

    .cookie-banner {
        padding: 1.25rem;
    }

    .consent-row {
        grid-template-columns: auto 1fr;
    }
}