:root {
    --primary: #1D4ED8;
    --secondary: #0F172A;
    --accent: #22C55E;
    --bg: #F8FAFC;
    --text: #111827;
    --border: #E2E8F0;
    --gradient: linear-gradient(135deg, #1D4ED8, #06B6D4);
}

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

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

img {
    max-width: 100%;
    display: block;
    border-radius: 12px;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.site-header {
    background: white;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 50px;
}

.logo-footer {
    height: 100px;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    align-items: center;
}

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

.desktop-cta {
    display: inline-block;
}

.burger,
.close,
.nav-toggle {
    display: none;
}

.sticky-cta {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: var(--accent);
    color: white;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 700;
    z-index: 999;
}

.hero {
    background: var(--gradient);
    color: white;
    padding: 60px 0 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: start;
}

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

.hero-list {
    margin-top: 16px;
    padding-left: 18px;
}

.hero-form {
    background: white;
    color: var(--text);
    padding: 24px;
    border-radius: 16px;
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-image {
    margin-top: 40px;
}

.section {
    padding: 60px 0;
}

.section.light {
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.card {
    background: white;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card h3 {
    color: var(--secondary);
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
}

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

.btn-accent {
    background: var(--accent);
    color: white;
}

.page-hero {
    background: var(--secondary);
    color: white;
    padding: 60px 0;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
}

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

.values-list,
.steps {
    margin-top: 16px;
    padding-left: 20px;
}

.faq {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px;
}

.site-footer {
    background: var(--secondary);
    color: white;
    padding: 40px 0 0;
}

.site-footer a {
    color: #dbeafe;
}

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

.footer-legal {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 24px;
    padding: 20px 0;
}

.legal-grid {
    display: grid;
    gap: 16px;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-top: 1px solid var(--border);
    padding: 16px;
    display: none;
    z-index: 2000;
}

.cookie-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 900px) {
    .desktop-cta {
        display: none;
    }
    .burger {
        display: inline-block;
        background: var(--primary);
        color: white;
        padding: 8px 12px;
        border-radius: 6px;
        cursor: pointer;
    }
    .nav {
        display: none;
        position: fixed;
        inset: 0;
        background: var(--secondary);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        z-index: 1500;
    }
    .nav ul {
        flex-direction: column;
        gap: 24px;
    }
    .nav a {
        color: white;
        font-size: 1.2rem;
    }
    .close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        color: white;
        font-size: 2rem;
        cursor: pointer;
    }
    .nav-toggle:checked ~ .nav {
        display: flex;
    }
}

@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .sticky-cta {
        right: 12px;
        bottom: 12px;
        padding: 10px 14px;
    }
}