:root {
    --color-primary: #0B5FFF;
    --color-secondary: #00B8A9;
    --color-accent: #FFB81C;
    --color-dark: #0F172A;
    --color-mid: #475569;
    --color-light: #F8FAFC;
    --color-white: #FFFFFF;
    --color-border: #E2E8F0;
    --font-base: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --shadow-card: 0 24px 48px rgba(15, 23, 42, 0.08);
    --transition-base: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-dark);
    background: var(--color-light);
    line-height: 1.6;
    font-size: 16px;
}

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

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

a:hover,
a:focus {
    color: var(--color-secondary);
}

h1, h2, h3, h4 {
    margin: 0 0 16px;
    line-height: 1.2;
    color: var(--color-dark);
}

p {
    margin: 0 0 16px;
}

ul, ol {
    margin: 0 0 16px 24px;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
}

section {
    padding: 96px 0;
}

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

.section--cta {
    background: linear-gradient(135deg, rgba(11, 95, 255, 0.08), rgba(0, 184, 169, 0.08));
}

.section-header {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: center;
}

.eyebrow {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    margin: 0 0 12px;
    font-weight: 600;
}

.hero-section {
    padding-top: 128px;
    padding-bottom: 96px;
    background: var(--color-light);
}

.hero-section--secondary,
.hero-section--services,
.hero-section--contact,
.hero-section--legal,
.hero-section--thanks {
    background: var(--color-white);
}

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

.hero-section__text h1 {
    font-size: 40px;
}

.hero-section__image img {
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.hero-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

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

.hero-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--color-secondary);
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.hero-meta {
    color: var(--color-mid);
    font-size: 14px;
}

.grid {
    display: grid;
    gap: 32px;
}

.grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metrics-grid {
    margin-top: 48px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.metric-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    text-align: center;
}

.metric-card h3 {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    transition: transform var(--transition-base);
}

.card:hover {
    transform: translateY(-6px);
}

.card--outlined {
    background: transparent;
    border: 1px solid var(--color-border);
    box-shadow: none;
}

.list-check {
    list-style: none;
    padding: 0;
}

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

.list-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
    font-weight: 600;
}

.ordered-list {
    padding-left: 24px;
}

.image-frame {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.table-wrapper {
    overflow-x: auto;
}

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

table th,
table td {
    padding: 20px;
    text-align: left;
    border-bottom: 1px solid var(--color-border);
}

table th {
    background: rgba(11, 95, 255, 0.08);
    font-weight: 600;
    color: var(--color-dark);
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 999px;
    padding: 14px 28px;
    border: none;
    cursor: pointer;
    transition: background var(--transition-base), color var(--transition-base), box-shadow var(--transition-base);
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 12px 24px rgba(11, 95, 255, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
    background: #0845cc;
}

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

.btn-outline:hover,
.btn-outline:focus {
    background: var(--color-primary);
    color: var(--color-white);
}

.form {
    display: grid;
    gap: 16px;
    background: var(--color-white);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-card);
}

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

.form-field label {
    font-weight: 600;
    color: var(--color-mid);
}

.form-field input,
.form-field textarea {
    border-radius: 12px;
    border: 1px solid var(--color-border);
    padding: 14px 16px;
    font-size: 16px;
    font-family: var(--font-base);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    background: var(--color-light);
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(11, 95, 255, 0.15);
    background: var(--color-white);
}

.form-disclaimer {
    font-size: 14px;
    color: var(--color-mid);
}

.contact-card {
    background: var(--color-white);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.contact-cards {
    display: grid;
    gap: 20px;
}

.summary-card {
    background: var(--color-white);
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow-card);
}

.summary-card ul {
    margin: 0;
    padding-left: 20px;
}

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

details {
    background: var(--color-white);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: var(--shadow-card);
}

summary {
    font-weight: 600;
    cursor: pointer;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    float: right;
    font-size: 20px;
    transition: transform var(--transition-base);
}

details[open] summary::after {
    transform: rotate(45deg);
}

details p {
    margin-top: 12px;
    color: var(--color-mid);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.site-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    color: var(--color-dark);
}

.site-logo__img {
    max-height: 50px;
    width: auto;
}

.nav-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-open {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle-open span {
    width: 26px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 3px;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 24px;
}

.site-nav ul {
    display: flex;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: var(--color-mid);
    font-weight: 500;
    position: relative;
    padding-bottom: 4px;
}

.site-nav a.is-active,
.site-nav a:hover {
    color: var(--color-primary);
}

.site-nav a.is-active::after,
.site-nav a:hover::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
}

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

.site-footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 64px 0 32px;
}

.site-footer__top {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.site-footer__logo {
    max-height: 100px;
    width: auto;
    margin-bottom: 16px;
}

.site-footer__menu h3 {
    margin-bottom: 16px;
    color: var(--color-white);
}

.site-footer__menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__menu li {
    margin-bottom: 12px;
}

.site-footer__menu a {
    color: rgba(248, 250, 252, 0.76);
}

.site-footer__menu a:hover {
    color: var(--color-secondary);
}

.site-footer__bottom {
    border-top: 1px solid rgba(248, 250, 252, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    color: rgba(248, 250, 252, 0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 560px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    padding: 24px;
    display: none;
    z-index: 1000;
}

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

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

.table-wrapper table {
    min-width: 720px;
}

@media (max-width: 1024px) {
    .hero-section__content {
        grid-template-columns: 1fr;
    }

    .grid--four {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .site-footer__top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .grid--two,
    .grid--three,
    .grid--four,
    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .nav-toggle {
        display: block;
        position: absolute;
        height: 0;
        width: 0;
        opacity: 0;
    }

    .nav-toggle-open {
        display: flex;
    }

    .nav-panel {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateY(-100%);
        transition: transform var(--transition-base);
        gap: 32px;
    }

    .nav-toggle:checked ~ .nav-panel {
        transform: translateY(0);
    }

    .nav-toggle-close {
        display: block;
        position: absolute;
        top: 32px;
        right: 32px;
        font-size: 32px;
        color: var(--color-white);
        cursor: pointer;
    }

    .site-nav ul {
        flex-direction: column;
        gap: 24px;
    }

    .site-nav a {
        color: var(--color-white);
        font-size: 20px;
    }

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

    .hero-section__content {
        gap: 32px;
    }

    .hero-section__text h1 {
        font-size: 32px;
    }

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .cookie-banner {
        right: 12px;
        left: 12px;
        bottom: 12px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 15px;
    }

    .btn {
        width: 100%;
    }

    .hero-list li {
        padding-left: 22px;
    }

    .hero-list li::before {
        width: 10px;
        height: 10px;
    }
}