:root {
    --ink: #172033;
    --muted: #5d667a;
    --line: #e7ebf3;
    --soft: #f6f8fc;
    --primary: #5a67d8;
    --primary-dark: #3949ab;
    --teal: #1aa6a6;
    --lavender: #eef0ff;
}

body {
    color: var(--ink);
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    line-height: 1.7;
    padding-top: 72px;
}

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

a:hover {
    text-decoration: underline;
}

.navbar {
    min-height: 72px;
}

.navbar-brand {
    color: var(--ink);
    font-size: 1.45rem;
}

.nav-link {
    color: var(--muted);
    font-weight: 600;
}

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

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

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

.language-switcher {
    align-items: center;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    display: inline-flex;
    gap: 0;
    padding: 3px;
}

.language-switcher a {
    border-radius: 999px;
    color: var(--muted);
    font-size: .82rem;
    font-weight: 700;
    padding: .32rem .55rem;
}

.language-switcher a.active {
    background: #fff;
    color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(23, 32, 51, .08);
}

.hero-section {
    background: linear-gradient(135deg, #fff 0%, #f8fbff 52%, #effaf9 100%);
    padding: 88px 0 64px;
}

.hero-section h1,
.page-hero h1 {
    font-size: clamp(2.4rem, 6vw, 4.8rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.05;
}

.hero-copy {
    color: var(--muted);
    font-size: 1.18rem;
    max-width: 680px;
}

.hero-image {
    display: block;
    height: auto;
    max-width: 100%;
}

.status-note,
.risk-note {
    color: var(--muted);
}

.eyebrow {
    color: var(--teal);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.section {
    padding: 72px 0;
}

.soft-section {
    background: var(--soft);
}

.section-heading {
    margin-bottom: 32px;
    max-width: 820px;
}

.section-heading h2,
.cta-section h2,
.notice-box h2,
.legal-content h2 {
    font-weight: 800;
    letter-spacing: 0;
}

.section-heading p,
.page-hero p {
    color: var(--muted);
}

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

.feature-card,
.step-card,
.support-panel {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(23, 32, 51, .06);
    padding: 22px;
}

.feature-card {
    align-items: center;
    display: flex;
    font-weight: 700;
    gap: 12px;
    min-height: 82px;
}

.feature-card span {
    background: var(--lavender);
    border: 1px solid #dfe3ff;
    border-radius: 50%;
    height: 14px;
    width: 14px;
}

.step-number {
    align-items: center;
    background: #e9fbf8;
    border-radius: 50%;
    color: #0f766e;
    display: inline-flex;
    font-weight: 800;
    height: 38px;
    justify-content: center;
    margin-bottom: 16px;
    width: 38px;
}

.step-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
}

.step-card p {
    color: var(--muted);
    margin-bottom: 0;
}

.check-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.check-list li {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 14px 16px;
}

.notice-section {
    background: #fbfbff;
}

.notice-box {
    background: #fff;
    border: 1px solid #dfe3ff;
    border-left: 5px solid var(--primary);
    border-radius: 8px;
    box-shadow: 0 18px 40px rgba(90, 103, 216, .08);
    padding: 32px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--teal));
    color: #fff;
    text-align: center;
}

.cta-section p {
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
}

.page-hero {
    background: var(--soft);
    padding-bottom: 48px;
    padding-top: 64px;
}

.narrow {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.35rem;
    margin-top: 32px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.consent-text {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 24px;
}

.accordion-button {
    font-weight: 700;
}

.site-footer {
    background: #fbfcff;
    color: var(--muted);
    padding: 48px 0;
}

.footer-brand {
    color: var(--ink);
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-title {
    color: var(--ink);
    font-size: .9rem;
    font-weight: 800;
    text-transform: uppercase;
}

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

@media (max-width: 991.98px) {
    body {
        padding-top: 66px;
    }

    .hero-section,
    .section {
        padding: 52px 0;
    }

    .hero-section h1,
    .page-hero h1 {
        font-size: 2.45rem;
    }
}
