:root {
    --color-primary: #2563eb;
    --color-secondary: #7c3aed;
    --color-accent: #f97316;
    --color-dark: #0f172a;
    --color-muted: #475569;
    --color-light: #f8fafc;
    --color-white: #ffffff;
    --shadow-soft: 0 20px 45px rgba(15, 23, 42, 0.18);
    --shadow-hover: 0 28px 60px rgba(15, 23, 42, 0.22);
    --shadow-card: 0 16px 40px rgba(15, 23, 42, 0.14);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-pill: 999px;
    --space-2xs: 0.5rem;
    --space-xs: 0.75rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --container-width: 1200px;
    --font-heading: 'Lato', 'Segoe UI', sans-serif;
    --font-body: 'Roboto', 'Segoe UI', sans-serif;
    --gradient-primary: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(124, 58, 237, 0.95) 100%);
    --gradient-secondary: linear-gradient(145deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 118, 110, 0.85) 100%);
    --gradient-soft: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(124, 58, 237, 0.06) 100%);
    --transition-base: all 0.35s ease;
}

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

html {
    font-size: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--color-dark);
    background: var(--color-light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 1.6;
    font-size: clamp(1rem, 0.96rem + 0.25vw, 1.125rem);
}

main {
    flex: 1 0 auto;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    object-fit: cover;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover,
a:focus {
    opacity: 0.85;
}

.container {
    width: min(100% - 2rem, var(--container-width));
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.section-header .section-eyebrow {
    display: inline-flex;
    padding: 0.35rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--radius-pill);
    background: rgba(37, 99, 235, 0.12);
    color: var(--color-primary);
    letter-spacing: 0.02em;
}

.section-header h2 {
    margin: var(--space-xs) 0 var(--space-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(2rem, 1.8rem + 1.2vw, 2.75rem);
    line-height: 1.2;
}

.section-header p {
    max-width: 720px;
    margin: 0 auto;
    color: var(--color-muted);
}

.page-section {
    padding: var(--space-2xl) 0;
}

.page-section.alt-background {
    background: var(--gradient-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    box-shadow: 0 6px 24px rgba(15, 23, 42, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) var(--space-sm);
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-primary);
}

.nav-toggle {
    background: transparent;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    width: 48px;
    height: 48px;
    padding: 0;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: var(--color-dark);
    transition: var(--transition-base);
}

.nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
    position: relative;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    right: 0;
    top: 64px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    width: 85vw;
    max-width: 320px;
}

.nav-menu.is-open {
    max-height: 550px;
    opacity: 1;
    visibility: visible;
}

.nav-menu li {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-menu a {
    display: block;
    padding: 0.95rem 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.nav-menu a:hover,
.nav-menu a:focus {
    color: var(--color-primary);
}

@media (min-width: 1024px) {
    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: var(--space-md);
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
        max-height: unset;
        opacity: 1;
        visibility: visible;
        width: auto;
    }

    .nav-menu li {
        border: none;
    }

    .nav-menu a {
        padding: 0.25rem 0;
        color: var(--color-muted);
        position: relative;
    }

    .nav-menu a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -0.5rem;
        width: 100%;
        height: 2px;
        background: var(--color-primary);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .nav-menu a:hover::after,
    .nav-menu a:focus::after {
        transform: scaleX(1);
    }

    .nav-menu a:hover,
    .nav-menu a:focus {
        color: var(--color-primary);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 1.8rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-base);
}

.btn:hover,
.btn:focus {
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.btn.btn-secondary {
    background: transparent;
    color: var(--color-dark);
    border: 1px solid rgba(15, 23, 42, 0.2);
    box-shadow: none;
}

.btn.btn-secondary:hover,
.btn.btn-secondary:focus {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn.btn-light {
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--color-white);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.9rem;
    background: rgba(37, 99, 235, 0.14);
    color: var(--color-primary);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.95rem;
}

.page-hero {
    padding: var(--space-2xl) 0 var(--space-xl);
    position: relative;
    overflow: hidden;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right, rgba(124, 58, 237, 0.25), transparent 55%);
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero.homepage-hero {
    background: var(--gradient-primary);
    color: var(--color-white);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.page-hero.homepage-hero::after {
    background: radial-gradient(ellipse at bottom left, rgba(15, 23, 42, 0.35), transparent 60%);
}

.page-hero.homepage-hero .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    padding: 0.45rem 1.1rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.35);
    margin-bottom: var(--space-sm);
    backdrop-filter: blur(10px);
}

.page-hero.homepage-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 2.35rem + 1.9vw, 3.9rem);
    line-height: 1.1;
    margin-bottom: var(--space-md);
}

.page-hero.homepage-hero p {
    max-width: 640px;
    font-size: clamp(1.05rem, 1.01rem + 0.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: var(--space-lg);
}

.page-hero.internal-hero {
    background: linear-gradient(140deg, rgba(248, 250, 252, 0.96) 0%, rgba(37, 99, 235, 0.08) 100%);
    color: var(--color-dark);
    padding: var(--space-2xl) 0;
}

.page-hero.internal-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 2.2rem + 1vw, 3rem);
    margin-bottom: var(--space-sm);
}

.page-hero.internal-hero p {
    max-width: 620px;
    color: var(--color-muted);
}

.hero-grid {
    display: grid;
    gap: var(--space-lg);
}

.hero-grid .hero-content {
    display: flex;
    flex-direction: column;
}

.hero-grid .hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-sm);
}

.hero-grid .hero-media {
    position: relative;
}

.hero-grid .hero-media img {
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
}

.hero-grid .hero-media::after {
    content: "";
    position: absolute;
    inset: 10% -6%;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.12);
    filter: blur(40px);
    z-index: -1;
}

.hero-metrics {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-lg);
}

.hero-metrics .metric-card {
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    backdrop-filter: blur(12px);
}

.metric-card strong {
    display: block;
    font-size: clamp(1.5rem, 1.3rem + 1vw, 2.4rem);
    font-family: var(--font-heading);
}

.metric-card span {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.grid {
    display: grid;
    gap: var(--space-lg);
}

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

.card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius-lg);
    padding: var(--space-lg) var(--space-md);
    box-shadow: var(--shadow-card);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(37, 99, 235, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.card > * {
    position: relative;
    z-index: 1;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card:hover::before {
    opacity: 1;
}

.card h3 {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    margin-bottom: var(--space-xs);
    color: var(--color-dark);
}

.card p {
    color: var(--color-muted);
    margin-bottom: var(--space-sm);
}

.card a.inline-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
    color: var(--color-primary);
}

.card a.inline-link span {
    transition: transform 0.3s ease;
}

.card a.inline-link:hover span {
    transform: translateX(4px);
}

.media-card img {
    margin-bottom: var(--space-md);
    height: 220px;
}

.stat-grid {
    display: grid;
    gap: var(--space-md);
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.stat-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: clamp(1.8rem, 1.5rem + 0.9vw, 2.4rem);
    font-family: var(--font-heading);
    color: var(--color-primary);
}

.stat-card span {
    color: var(--color-muted);
}

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

.value-grid .card {
    padding: var(--space-lg);
}

.value-grid .card .badge {
    margin-bottom: var(--space-sm);
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-sm);
}

.highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    background: rgba(255, 255, 255, 0.68);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    box-shadow: var(--shadow-card);
}

.highlight-list span.icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.12);
    color: var(--color-primary);
    font-weight: 700;
}

.faq-grid {
    gap: var(--space-md);
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card);
}

.faq-item h3 {
    margin-top: 0;
    margin-bottom: var(--space-xs);
    font-family: var(--font-heading);
}

.faq-item p + p {
    margin-top: var(--space-xs);
}

.policy-section {
    margin-bottom: var(--space-lg);
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.policy-section h2,
.policy-section h3 {
    font-family: var(--font-heading);
    margin-top: 0;
    color: var(--color-primary);
}

.policy-section p,
.policy-section ul {
    color: var(--color-muted);
}

.policy-section ul {
    padding-left: 1.5rem;
}

.policy-section ul li {
    margin-bottom: 0.5rem;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

thead {
    background: rgba(37, 99, 235, 0.1);
}

th,
td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

tbody tr:last-child td {
    border-bottom: none;
}

th {
    font-family: var(--font-heading);
    color: var(--color-dark);
    font-weight: 700;
}

.list-block {
    display: grid;
    gap: var(--space-sm);
}

.list-block li {
    list-style: none;
    position: relative;
    padding-left: 1.8rem;
    color: var(--color-muted);
}

.list-block li::before {
    content: "•";
    position: absolute;
    left: 0.6rem;
    color: var(--color-primary);
    font-size: 1.4rem;
    line-height: 1;
    top: 0.2rem;
}

.form-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

form {
    display: grid;
    gap: var(--space-sm);
}

label {
    font-weight: 600;
    color: var(--color-dark);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

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

.form-grid {
    display: grid;
    gap: var(--space-sm);
}

@media (min-width: 768px) {
    .form-grid.two-column {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-details {
    display: grid;
    gap: var(--space-md);
}

.contact-card {
    background: var(--color-white);
    padding: var(--space-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.contact-card h3 {
    font-family: var(--font-heading);
    margin-top: 0;
}

.contact-card a {
    color: var(--color-primary);
    font-weight: 600;
}

.site-footer {
    background: var(--color-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: var(--space-2xl) 0 var(--space-lg);
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(37, 99, 235, 0.15), transparent 50%);
    pointer-events: none;
}

.footer-inner {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--space-lg);
}

.footer-grid {
    display: grid;
    gap: var(--space-lg);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: var(--space-xs);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
}

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

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.footer-contact p {
    margin: 0;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-xl);
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
}

.footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

.newsletter-card {
    background: var(--gradient-secondary);
    color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-lg);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.newsletter-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.25), transparent 55%);
    pointer-events: none;
}

.newsletter-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 1.6rem + 0.8vw, 2.4rem);
    margin-bottom: var(--space-sm);
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    max-width: 520px;
    display: grid;
    gap: var(--space-sm);
}

@media (min-width: 480px) {
    .newsletter-form {
        grid-template-columns: 2fr 1fr;
        align-items: center;
    }
}

.newsletter-form input[type="email"] {
    border-radius: var(--radius-pill);
    border: none;
    padding: 1rem 1.4rem;
}

.timeline {
    display: grid;
    gap: var(--space-md);
}

.timeline-step {
    display: grid;
    gap: var(--space-xs);
    padding: var(--space-lg);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border-left: 4px solid var(--color-primary);
}

.timeline-step h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.4rem;
}

.timeline-step span {
    font-weight: 600;
    color: var(--color-primary);
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: var(--space-xs);
}

.checklist li {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
    color: var(--color-muted);
}

.checklist li::before {
    content: "✓";
    color: var(--color-primary);
    font-weight: 700;
    margin-top: 0.15rem;
}

.hero-secondary-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    color: rgba(255, 255, 255, 0.85);
}

.hero-secondary-cta span {
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: var(--space-sm);
    left: 50%;
    transform: translateX(-50%);
    width: min(1080px, calc(100% - 2rem));
    background: rgba(15, 23, 42, 0.92);
    color: rgba(255, 255, 255, 0.92);
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    backdrop-filter: blur(18px);
    z-index: 1100;
}

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

.cookie-content {
    display: grid;
    gap: var(--space-sm);
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.cookie-actions .btn {
    flex: 1 1 140px;
}

@media (min-width: 768px) {
    .cookie-content {
        grid-template-columns: 2fr 1fr;
        align-items: center;
        gap: var(--space-md);
    }

    .cookie-actions {
        justify-content: flex-end;
    }
}

.hero-grid + .hero-metrics {
    margin-top: var(--space-lg);
}

.hub-list {
    display: grid;
    gap: var(--space-md);
}

.hub-list .hub-card {
    display: grid;
    gap: var(--space-sm);
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: var(--space-lg);
}

.hub-card h3 {
    font-family: var(--font-heading);
    margin: 0;
}

.hub-card p {
    margin: 0;
    color: var(--color-muted);
}

.hero-media .floating-badge {
    position: absolute;
    bottom: 10%;
    left: 10%;
    background: rgba(255, 255, 255, 0.92);
    color: var(--color-dark);
    padding: 1rem 1.4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 0.35rem;
}

.floating-badge strong {
    font-size: 1.4rem;
    font-family: var(--font-heading);
}

.tag {
    display: inline-flex;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-pill);
    background: rgba(37, 99, 235, 0.12);
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.85rem;
}

blockquote {
    margin: 0;
    padding: var(--space-lg);
    background: rgba(37, 99, 235, 0.08);
    border-radius: var(--radius-lg);
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.7;
}

blockquote cite {
    display: block;
    margin-top: var(--space-sm);
    font-weight: 600;
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        align-items: center;
    }

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

@media (min-width: 1024px) {
    .page-hero {
        padding-top: calc(var(--space-2xl) + 2rem);
    }

    .page-hero.homepage-hero {
        padding-top: calc(var(--space-2xl) + 2rem);
        padding-bottom: calc(var(--space-2xl) + 2rem);
    }

    .page-section {
        padding: calc(var(--space-2xl) + 1rem) 0;
    }

    .newsletter-card {
        padding: var(--space-2xl);
    }
}

@media (max-width: 767px) {
    .header-inner {
        padding-inline: var(--space-sm);
    }

    .page-hero {
        padding: var(--space-xl) 0;
    }

    .card {
        padding: var(--space-md);
    }

    .cookie-banner {
        bottom: var(--space-xs);
    }
}

body.nav-open {
    overflow: hidden;
}