:root {
    --bg: #06142d;
    --bg-soft: #0b2248;
    --surface: #ffffff;
    --surface-soft: #f5f8ff;
    --surface-muted: #eaf0fb;
    --text: #10203a;
    --text-soft: #53627c;
    --text-light: #cdd7eb;
    --border: rgba(9, 31, 68, 0.12);
    --primary: #14c38e;
    --primary-dark: #0d9d72;
    --accent: #f4c95d;
    --accent-strong: #f2b632;
    --danger: #ffce54;
    --shadow: 0 20px 50px rgba(4, 18, 43, 0.14);
    --shadow-soft: 0 12px 30px rgba(8, 25, 58, 0.08);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --container: 1200px;
    --header-height: 84px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    background: var(--surface-soft);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

button,
input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

section {
    position: relative;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto;
}

.section-spacing {
    padding: 96px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(20, 195, 142, 0.1);
    color: var(--primary-dark);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.section-heading h2,
.hero-content h1 {
    margin: 0 0 16px;
    line-height: 1.1;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.section-heading p,
.hero-lead,
.operator-description p,
.faq-answer p,
.footer-note,
.site-footer p {
    color: var(--text-soft);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
    background: rgba(6, 20, 45, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
    background: rgba(6, 20, 45, 0.94);
    box-shadow: 0 14px 34px rgba(3, 10, 25, 0.25);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-badge {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #082042;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(242, 182, 50, 0.28);
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-text strong {
    font-size: 1.06rem;
    color: #fff;
}

.brand-text span {
    font-size: 0.82rem;
    color: var(--text-light);
}

.main-nav {
    justify-self: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link {
    color: #f6f9ff;
    font-weight: 600;
    font-size: 0.96rem;
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--accent);
    transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 14px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #21d9a1);
    color: #062540;
    box-shadow: 0 14px 30px rgba(20, 195, 142, 0.28);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1ad79f, #40eab4);
    box-shadow: 0 18px 36px rgba(20, 195, 142, 0.34);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.92);
    color: var(--text);
    border-color: rgba(8, 32, 66, 0.1);
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: #fff;
}

.btn-header {
    min-height: 44px;
    padding: 0 18px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 700;
}

.text-link:hover {
    color: var(--primary);
}

.burger {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.burger span {
    width: 20px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform var(--transition), opacity var(--transition);
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero-section {
    padding: calc(var(--header-height) + 40px) 0 80px;
    background:
        radial-gradient(circle at top left, rgba(244, 201, 93, 0.18), transparent 35%),
        radial-gradient(circle at top right, rgba(20, 195, 142, 0.18), transparent 30%),
        linear-gradient(180deg, #06142d 0%, #0a2148 100%);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 34px;
    align-items: center;
}

.hero-content h1 {
    font-size: clamp(2.6rem, 5vw, 4.6rem);
    color: #fff;
    max-width: 760px;
}

.hero-lead {
    font-size: 1.08rem;
    color: #d9e3f5;
    max-width: 720px;
    margin-bottom: 28px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.benefit-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 11px 14px;
    border-radius: 999px;
    transition: background var(--transition), transform var(--transition);
}

.benefit-chip:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.hero-disclaimer {
    margin: 0;
    color: #b9c7e1;
    font-size: 0.94rem;
}

.hero-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.97));
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: 0 24px 60px rgba(3, 14, 35, 0.28);
}

.featured-mini-top,
.mini-brand,
.hero-stats,
.title-row,
.operator-rating,
.comparison-card-top,
.footer-bottom-inner,
.operator-branding,
.warning-item,
.help-links {
    display: flex;
    align-items: center;
}

.featured-mini-top,
.title-row,
.comparison-card-top {
    justify-content: space-between;
}

.mini-label,
.featured-tag {
    display: inline-flex;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(8, 32, 66, 0.08);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 700;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(244, 201, 93, 0.16);
    color: #7a5600;
    font-weight: 800;
}

.mini-brand {
    gap: 18px;
    margin: 24px 0 20px;
}

.mini-brand h2 {
    margin: 0 0 6px;
    font-size: 1.8rem;
}

.mini-brand p {
    margin: 0;
    color: var(--text-soft);
}

.logo-placeholder {
    width: 92px;
    height: 62px;
    border-radius: 22px;
    padding: 5px;
    background: linear-gradient(135deg, #091f44, #123973);
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.logo-placeholder span {
    color: #fff;
    font-weight: 800;
    font-size: 1.12rem;
    letter-spacing: 0.02em;
}

.logo-large {
    width: 118px;
    height: 118px;
    border-radius: 28px;
    flex-shrink: 0;
}

.mini-points,
.operator-advantages,
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mini-points li,
.operator-advantages li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mini-points li+li,
.operator-advantages li+li,
.footer-links li+li {
    margin-top: 12px;
}

.mini-points i,
.operator-advantages i,
.guide-card i,
.info-card i,
.detail-card i {
    color: var(--primary-dark);
}

.hero-stats {
    gap: 16px;
    margin-top: 24px;
    align-items: stretch;
}

.hero-stats>div {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px;
    box-shadow: var(--shadow-soft);
}

.hero-stats strong {
    display: block;
    margin-bottom: 6px;
}

.hero-stats span {
    color: var(--text-soft);
    font-size: 0.94rem;
}

.featured-section,
.methodology-section,
.faq-section {
    background: var(--surface);
}

.featured-operator {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 30px;
    padding: 34px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(8, 32, 66, 0.08);
}

.operator-main {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 28px;
    align-items: start;
    margin-bottom: 28px;
}

.operator-branding {
    gap: 22px;
    align-items: flex-start;
    padding: 24px;
    background: linear-gradient(180deg, #0a2148, #0d2f63);
    border-radius: 26px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.operator-title-wrap h3 {
    margin: 0 0 14px;
    font-size: 2rem;
    color: #fff;
}

.operator-rating {
    gap: 14px;
    margin-bottom: 18px;
}

.operator-rating strong {
    color: #fff;
    font-size: 1.12rem;
}

.stars {
    display: flex;
    gap: 6px;
    color: var(--accent);
}

.operator-bonus {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #d8e4f8;
}

.operator-description {
    padding: 8px 6px;
}

.operator-advantages {
    margin: 20px 0 28px;
}

.operator-cta {
    min-width: 220px;
}

.operator-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.detail-card,
.info-card,
.guide-card,
.comparison-card,
.aside-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}



.detail-card:hover,
.info-card:hover,
.guide-card:hover,
.comparison-card:hover,
.aside-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(6, 25, 60, 0.12);
    border-color: rgba(20, 195, 142, 0.22);
}

.detail-card i,
.info-card i,
.guide-card i {
    font-size: 1.36rem;
    margin-bottom: 14px;
}

.detail-card h4,
.info-card h3,
.guide-card h3,
.aside-card h3,
.footer-col h3 {
    margin: 0 0 10px;
}

.aside-card h3, .aside-card p {
    color: #06142d !important;
}

.detail-card p,
.info-card p,
.guide-card p,
.aside-card p {
    margin: 0;
    color: var(--text-soft);
}

.comparison-section,
.guides-section {
    background: linear-gradient(180deg, #f4f8ff 0%, #eef4ff 100%);
}

.comparison-table-wrap {
    overflow-x: auto;
    background: var(--surface);
    border-radius: 28px;
    padding: 16px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

.comparison-table th,
.comparison-table td {
    padding: 18px 16px;
    text-align: left;
    border-bottom: 1px solid rgba(8, 32, 66, 0.08);
}

.comparison-table thead th {
    font-size: 0.98rem;
    color: #fff;
    background: #0a2148;
}

.comparison-table thead th:first-child {
    border-top-left-radius: 18px;
}

.comparison-table thead th:last-child {
    border-top-right-radius: 18px;
}

.comparison-table tbody tr:hover {
    background: rgba(20, 195, 142, 0.05);
}

.featured-column {
    background: rgba(20, 195, 142, 0.09);
    font-weight: 700;
}

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

.comparison-card ul {
    padding-left: 18px;
    margin: 18px 0 0;
    color: var(--text-soft);
}

.comparison-card h3 {
    margin: 0;
}

.comparison-card span {
    color: var(--text-soft);
    font-size: 0.92rem;
}

.comparison-card-featured {
    border: 1px solid rgba(20, 195, 142, 0.32);
    background: linear-gradient(180deg, rgba(20, 195, 142, 0.08), #ffffff);
}

.method-grid,
.guides-grid {
    display: grid;
    gap: 20px;
}

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

.guides-grid {
    grid-template-columns: repeat(5, 1fr);
}

.responsible-section {
    background: linear-gradient(180deg, #081a3a 0%, #0b2248 100%);
}

.responsible-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 30px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(2, 10, 26, 0.24);
}

.responsible-content h2,
.responsible-content p,
.responsible-aside h3,
.responsible-aside p {
    color: #fff;
}

.responsible-content p {
    color: #d5e0f3;
}

.warning-list {
    display: grid;
    gap: 14px;
    margin: 24px 0 28px;
}

.warning-item {
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    color: #eef4ff;
}

.warning-item i {
    color: var(--danger);
}

.help-links {
    gap: 16px;
    flex-wrap: wrap;
}

.responsible-aside {
    display: grid;
    gap: 18px;
    align-content: start;
}

.age-badge,
.footer-age {
    display: inline-grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #07213f;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(244, 201, 93, 0.26);
}

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

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    text-align: left;
    padding: 22px 24px;
    font-weight: 800;
    color: var(--text);
}

.faq-question i {
    color: var(--primary-dark);
    transition: transform var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 24px 22px;
    margin: 0;
}

.faq-item.active .faq-question {
    background: rgba(20, 195, 142, 0.06);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.site-footer {
    background: #06142d;
    color: #fff;
    padding-top: 72px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 28px;
    padding-bottom: 42px;
}

.footer-brand-link {
    margin-bottom: 18px;
}

.footer-col p,
.footer-links a,
.footer-note {
    color: #c9d5ea;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
    justify-content: center;
    padding: 18px 0;
}

.footer-bottom p {
    margin: 0;
    color: #b8c8e4;
    text-align: center;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.reveal-delay {
    transition-delay: 0.14s;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1180px) {
    .operator-details {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 980px) {
    :root {
        --header-height: 78px;
    }

    .header-inner {
        grid-template-columns: auto auto;
        justify-content: space-between;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        background: rgba(6, 20, 45, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 22px;
        padding: 18px;
        box-shadow: 0 20px 50px rgba(1, 10, 26, 0.3);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
    }

    .main-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .burger {
        display: inline-flex;
    }

    .btn-header {
        display: none;
    }

    .hero-grid,
    .operator-main,
    .responsible-box {
        grid-template-columns: 1fr;
    }

    .comparison-cards,
    .method-grid,
    .guides-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 680px) {
    .section-spacing {
        padding: 74px 0;
    }

    .container {
        width: min(calc(100% - 24px), var(--container));
    }

    .hero-section {
        padding: calc(var(--header-height) + 28px) 0 64px;
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 8vw, 3rem);
    }

    .hero-card,
    .featured-operator,
    .responsible-box {
        padding: 22px;
    }

    .operator-branding {
        flex-direction: column;
    }

    .operator-details,
    .comparison-cards,
    .method-grid,
    .guides-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta,
    .help-links {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-stats {
        flex-direction: column;
    }

    .faq-question {
        padding: 18px 18px;
    }

    .faq-answer p {
        padding: 0 18px 18px;
    }

    .age-badge,
    .footer-age {
        width: 76px;
        height: 76px;
        font-size: 1.3rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
.logo-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    max-width: 1120px;
    margin: 25px auto;
    justify-content: center;
}

.logo-footer a {
    height: 48px;

}

.logo-footer a img {
    height: 100%;
    object-fit: contain;
}
.contact-section {
  background: var(--surface);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.contact-info {
  display: grid;
  gap: 18px;
}

.contact-info-card,
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.contact-info-card i {
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.contact-info-card h3 {
  margin: 0 0 10px;
}

.contact-info-card p {
  margin: 0 0 12px;
  color: var(--text-soft);
}

.contact-info-card a {
  color: var(--primary-dark);
  font-weight: 700;
}

.contact-info-card a:hover {
  color: var(--primary);
}

.contact-form {
  display: grid;
  gap: 18px;
}

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

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 700;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(8, 32, 66, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(20, 195, 142, 0.7);
  box-shadow: 0 0 0 4px rgba(20, 195, 142, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-soft);
  font-size: 0.95rem;
}

.form-consent input {
  margin-top: 4px;
}

@media (max-width: 980px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}.legal-page-section {
  background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.legal-page-wrapper {
  max-width: 980px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.legal-page-header {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(8, 32, 66, 0.08);
}

.legal-page-header h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: var(--text);
}

.legal-page-intro {
  margin: 0 0 16px;
  font-size: 1.04rem;
  color: var(--text-soft);
}

.legal-page-updated {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.legal-page-content {
  display: grid;
  gap: 22px;
}

.legal-block {
  padding: 24px 24px;
  background: #fbfdff;
  border: 1px solid rgba(8, 32, 66, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.legal-block h2 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  color: var(--text);
}

.legal-block p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.legal-block p + p {
  margin-top: 14px;
}

.legal-block a {
  color: var(--primary-dark);
  font-weight: 700;
  word-break: break-word;
}

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

@media (max-width: 680px) {
  .legal-page-wrapper {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .legal-page-header {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .legal-block {
    padding: 18px;
    border-radius: 16px;
  }

  .legal-block h2 {
    font-size: 1.12rem;
  }

  .legal-block p {
    line-height: 1.65;
  }
}.terms-page-section {
  background: linear-gradient(180deg, #f7faff 0%, #eef4ff 100%);
}

.terms-page-section .legal-page-wrapper {
  max-width: 980px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  box-shadow: var(--shadow);
}

.terms-page-section .legal-page-header {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(8, 32, 66, 0.08);
}

.terms-page-section .legal-page-header h1 {
  margin: 0 0 18px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
  color: var(--text);
}

.terms-page-section .legal-page-intro {
  margin: 0 0 16px;
  font-size: 1.04rem;
  color: var(--text-soft);
}

.terms-page-section .legal-page-updated {
  margin: 0;
  color: var(--primary-dark);
  font-weight: 700;
}

.terms-page-section .legal-page-content {
  display: grid;
  gap: 22px;
}

.terms-page-section .legal-block {
  padding: 24px;
  background: #fbfdff;
  border: 1px solid rgba(8, 32, 66, 0.08);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.terms-page-section .legal-block h2 {
  margin: 0 0 14px;
  font-size: 1.28rem;
  color: var(--text);
}

.terms-page-section .legal-block p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}

.terms-page-section .legal-block p + p {
  margin-top: 14px;
}

.terms-page-section .legal-block a {
  color: var(--primary-dark);
  font-weight: 700;
  word-break: break-word;
}

.terms-page-section .legal-block a:hover {
  color: var(--primary);
}

@media (max-width: 680px) {
  .terms-page-section .legal-page-wrapper {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .terms-page-section .legal-page-header {
    padding-bottom: 22px;
    margin-bottom: 22px;
  }

  .terms-page-section .legal-block {
    padding: 18px;
    border-radius: 16px;
  }

  .terms-page-section .legal-block h2 {
    font-size: 1.12rem;
  }

  .terms-page-section .legal-block p {
    line-height: 1.65;
  }
} 

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 25, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.age-box {
  background: #ffffff;
  max-width: 420px;
  width: 90%;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.age-icon {
  font-size: 36px;
  font-weight: 800;
  color: #0a2148;
  margin-bottom: 15px;
}

.age-box h2 {
  margin-bottom: 12px;
}

.age-warning {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}

.age-buttons {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
}


 

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1100px, calc(100% - 40px));
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  z-index: 9998;
}

.cookie-container {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cookie-text p {
  margin: 6px 0 0;
  color: #555;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

 

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.cookie-modal-box {
  background: #fff;
  width: 90%;
  max-width: 480px;
  padding: 30px;
  border-radius: 20px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}

.cookie-option p {
  font-size: 14px;
  color: #666;
}

.cookie-modal-actions {
  margin-top: 24px;
  text-align: right;
}


 

@media (max-width: 768px) {

.cookie-container{
flex-direction:column;
align-items:flex-start;
}

.cookie-actions{
width:100%;
justify-content:flex-end;
}

}