@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1E40AF;
    --secondary: #06B6D4;
    --accent: #F97316;
    --background: #F8FAFC;
    --text: #0F172A;
    --neutral: #94A3B8;
    --white: #ffffff;
}

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

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

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

a {
    color: inherit;
    text-decoration: none;
}

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

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

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

.logo {
    max-height: 50px;
}

.logo-footer {
    max-height: 100px;
}

.nav-container {
    position: relative;
}

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

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

.burger {
    display: none;
    font-weight: 600;
    background: var(--primary);
    color: var(--white);
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
}

#nav-toggle {
    display: none;
}

.nav .close {
    display: none;
}

.hero {
    padding: 80px 0;
    background: linear-gradient(120deg, rgba(30,64,175,0.08), rgba(6,182,212,0.08));
}

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

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

.hero-text h1 {
    font-size: clamp(2.2rem, 3vw, 3.2rem);
    margin-bottom: 16px;
}

.hero-text p {
    margin-bottom: 18px;
    color: #1f2937;
}

.keyword-line {
    font-size: 0.95rem;
    color: var(--neutral);
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

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

.btn-primary:hover {
    background: #1e3a8a;
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(30,64,175,0.08);
}

.section {
    padding: 70px 0;
}

.section.alt {
    background: var(--white);
}

.section-head {
    margin-bottom: 40px;
}

.section-head h2 {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    margin-bottom: 12px;
}

.section-head p {
    color: #334155;
}

.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 24px;
}

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

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

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

.card {
    background: var(--white);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.card h3 {
    margin-bottom: 12px;
}

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

.check-list {
    list-style: none;
    margin-top: 16px;
}

.check-list li {
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.numbered-list {
    padding-left: 20px;
    margin-top: 16px;
}

.cta-box {
    background: var(--primary);
    color: var(--white);
    padding: 28px;
    border-radius: 16px;
}

.cta-box h3 {
    margin-bottom: 10px;
}

.form-card {
    background: var(--white);
    padding: 28px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.contact-form label {
    display: block;
    margin: 12px 0 6px;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #cbd5f5;
    font-family: inherit;
}

.contact-form button {
    margin-top: 16px;
    width: 100%;
}

.faq details {
    background: var(--white);
    padding: 18px;
    margin-bottom: 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 8px;
}

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

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

.footer-nav ul {
    list-style: none;
    margin-top: 12px;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #e2e8f0;
}

.footer-bottom {
    border-top: 1px solid rgba(248, 250, 252, 0.2);
    padding-top: 16px;
    margin-top: 24px;
    font-size: 0.9rem;
    color: #e2e8f0;
}

.legal h1 {
    font-size: clamp(2rem, 2.5vw, 2.6rem);
    margin-bottom: 20px;
}

.legal h2 {
    margin-top: 26px;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.legal p {
    margin-bottom: 16px;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    left: 20px;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    padding: 20px;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
    display: none;
    z-index: 100;
}

.cookie-banner.show {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-info {
    margin-top: 16px;
}

@media (max-width: 900px) {
    .nav ul {
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .burger {
        display: inline-flex;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--background);
        display: none;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        z-index: 100;
    }

    #nav-toggle:checked ~ .nav {
        display: flex;
    }

    .nav ul {
        flex-direction: column;
        gap: 18px;
        font-size: 1.2rem;
    }

    .nav .close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        cursor: pointer;
        color: var(--primary);
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
    }
    .btn {
        width: 100%;
    }
    .cookie-banner {
        right: 10px;
        left: 10px;
    }
}