:root {
    --primary: #2563EB;
    --secondary: #0F172A;
    --accent: #22C55E;
    --background: #F8FAFC;
    --surface: #FFFFFF;
    --text: #0B1220;
    --muted: #64748B;
}

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

body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.6;
}

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

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

.container {
    width: min(1200px, 92%);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    background: var(--surface);
    border-bottom: 1px solid #e2e8f0;
    z-index: 100;
}

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

.logo {
    height: 50px;
    width: auto;
}

.logo-footer {
    height: 100px;
    width: auto;
    margin-bottom: 12px;
}

.nav-toggle {
    display: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 24px;
}

.main-nav a {
    font-weight: 600;
}

.nav-open,
.nav-close {
    display: none;
    font-size: 18px;
    cursor: pointer;
}

.hero {
    padding: 80px 0;
    background: var(--surface);
}

.small-hero {
    padding: 60px 0;
}

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

.hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

.hero p {
    margin-bottom: 16px;
    color: var(--muted);
}

.section {
    padding: 70px 0;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.surface {
    background: var(--surface);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card, .case-card {
    background: var(--surface);
    padding: 24px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}

.case-card img {
    margin-bottom: 16px;
    border-radius: 8px;
}

.note {
    margin-top: 24px;
    color: var(--muted);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.process-step {
    background: var(--background);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: center;
}

.image-block img {
    border-radius: 12px;
}

.list {
    list-style: disc;
    padding-left: 20px;
    color: var(--muted);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-item {
    background: var(--surface);
    border: 1px solid #e2e8f0;
    padding: 20px;
    border-radius: 10px;
}

.contact-section {
    background: var(--surface);
}

.contact-form {
    margin-top: 24px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-field label {
    margin-bottom: 8px;
    font-weight: 600;
}

.form-field input,
.form-field textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cbd5f5;
    background: var(--surface);
    font-size: 16px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

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

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

.site-footer {
    background: var(--secondary);
    color: #fff;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.footer-grid a {
    color: #fff;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 16px;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--surface);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    max-width: 320px;
    z-index: 200;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 16px;
}

.summary-box {
    margin-top: 20px;
    padding: 20px;
    background: var(--surface);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

@media (max-width: 900px) {
    .hero-grid,
    .two-col,
    .grid-3,
    .process-grid,
    .faq-grid,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-open {
        display: block;
        background: var(--primary);
        color: #fff;
        padding: 8px 14px;
        border-radius: 6px;
    }
    .main-nav {
        position: fixed;
        inset: 0;
        background: var(--surface);
        display: none;
        align-items: center;
        justify-content: center;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 20px;
        font-size: 20px;
    }
    .nav-close {
        display: none;
        position: fixed;
        top: 20px;
        right: 20px;
        background: var(--secondary);
        color: #fff;
        padding: 6px 14px;
        border-radius: 6px;
        font-size: 28px;
        z-index: 110;
    }
    .nav-toggle:checked ~ .main-nav {
        display: flex;
    }
    .nav-toggle:checked ~ .nav-close {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    .section {
        padding: 50px 0;
    }
    .cookie-banner {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}