@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&family=DM+Serif+Display&display=swap');

:root {
    /* Keep existing vars for CookieBanner etc */
    --primary: #1e40af;
    --primary-dark: #1e3a8a;
    --primary-light: #3b82f6;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    /* v4 design tokens */
    --ink: #0f1419;
    --ink-2: #536471;
    --ink-3: #8899a6;
    --ink-4: #b0bec5;
    --bg: #ffffff;
    --dim: #f7f9fa;
    --dimmer: #eff3f4;
    --line: #e1e8ed;
    --blue: #1d4ed8;
    --blue-hover: #1e40af;
    --blue-soft: #eff6ff;
    --pos: #16a34a;
    --neg: #dc2626;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    line-height: 1.6;
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    outline: none;
    border: none;
}

*:focus {
    outline: none;
}

/* Buttons */
.btn {
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-family: var(--sans);
}

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

    .btn-primary:hover {
        background: var(--blue-hover);
        transform: translateY(-1px);
    }

.btn-secondary {
    background: var(--bg);
    color: var(--ink-2);
    border: 1px solid var(--line);
}

    .btn-secondary:hover {
        border-color: var(--ink-3);
        color: var(--ink);
    }

/* Section basics */
.section-container {
    max-width: 1140px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .section-header h2 {
        font-family: var(--serif);
        font-size: 2.2rem;
        font-weight: 400;
        color: var(--ink);
        letter-spacing: -0.01em;
        margin-bottom: 0.75rem;
    }

    .section-header p {
        font-size: 1.05rem;
        color: var(--ink-2);
        max-width: 520px;
        margin: 0 auto;
    }

/* Section eyebrow */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--blue);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

    .section-eyebrow::before {
        content: '';
        width: 20px;
        height: 2px;
        background: var(--blue);
        border-radius: 1px;
    }

/* Divider */
.divider {
    border: none;
    border-top: 1px solid var(--line);
    max-width: 1140px;
    margin: 0 auto;
}

/* Cookie banner mobile fix */
@media (max-width: 640px) {
    .cookie-main {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    .btn-cookie {
        flex: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
}
