:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.6;

  --max-w: 1200px;
  --space-x: 24px;
  --space-y: 20px;
  --gap: 16px;

  --radius-xl: 16px;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-sm: 4px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 0.25s;
  --anim-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --random-number: 1;

  --brand: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #3b82f6;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #475569;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #0f172a;

  --bg-alt: #f8fafc;
  --fg-on-alt: #1e293b;

  --surface-1: #ffffff;
  --surface-2: #f8fafc;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #f1f5f9;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #3b82f6;

  --bg-accent: #dbeafe;
  --fg-on-accent: #1e40af;
  --bg-accent-hover: #60a5fa;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(var(--gap) * 1.5);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 998;
    }

    .main-nav.is-open + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        line-height: 1.4;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6278;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-social {
            justify-content: center;
        }
    }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-note p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-note button[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.intro-focus-light {

        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
    }

    .intro-focus-light::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        height: 100%;
        background: var(--bg-alt);
        clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
        z-index: 0;
    }

    .intro-focus-light .intro-focus-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .intro-focus-light .intro-focus-light__hero {
        max-width: 900px;

    }

    .intro-focus-light .intro-focus-light__question {
        font-size: clamp(16px, 2vw, 20px);
        color: var(--accent);
        font-weight: 700;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;

        transform: translateY(20px);
    }

    .intro-focus-light .intro-focus-light__headline {
        font-size: clamp(40px, 7vw, 72px);
        font-weight: 900;
        margin: 0 0 1.5rem;
        line-height: 1.05;
        transform: translateY(30px);
    }

    .intro-focus-light .intro-focus-light__lead {
        font-size: clamp(18px, 2.5vw, 24px);
        margin: 0 0 3rem;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        max-width: 700px;

        transform: translateY(30px);
    }

    .intro-focus-light .intro-focus-light__stats {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: var(--gap);

    }

    .intro-focus-light .intro-focus-light__stat {
        padding: 1.5rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        text-align: center;
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(20px);
    }

    .intro-focus-light .intro-focus-light__stat:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .intro-focus-light .intro-focus-light__stat-value {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 900;
        color: var(--brand);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .intro-focus-light .intro-focus-light__stat-label {
        font-size: clamp(12px, 1.5vw, 14px);
        color: var(--neutral-600);
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.value-lanes {
        padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 40px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .value-lanes .wrap {
        max-width: 960px;
        margin: 0 auto;
    }

    .value-lanes header {
        margin-bottom: 14px;
    }

    .value-lanes h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 52px);
    }

    .value-lanes header p {
        margin: 10px 0 0;
        opacity: 0.9;
    }

    .value-lanes .lanes {
        display: grid;
        gap: 10px;
    }

    .value-lanes article {
        display: grid;
        grid-template-columns: 44px 1fr;
        gap: 10px;
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        padding: 12px;
    }

    .value-lanes .step {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: var(--fg-on-primary);
        color: var(--bg-primary);
        display: grid;
        place-items: center;
        font-weight: 600;
    }

    .value-lanes h3 {
        margin: 0 0 6px;
    }

    .value-lanes article p {
        margin: 0 0 6px;
        opacity: 0.9;
    }

    .value-lanes article span {
        font-size: .85rem;
        opacity: 0.8;
    }

.visual-highlights-light {

        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
        position: relative;
    }

    .visual-highlights-light::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 15%, rgba(0, 86, 179, 0.08), transparent 55%);
        pointer-events: none;
    }

    .visual-highlights-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .visual-highlights-light__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

        transform: translateY(-20px);
    }

    .visual-highlights-light h2 {
        margin: 0 0 1rem;
        font-size: clamp(30px, 4.8vw, 48px);
        font-weight: 800;
    }

    .visual-highlights-light__subtitle {
        margin: 0;
        color: var(--neutral-600);
        font-size: clamp(16px, 2vw, 20px);
    }

    .visual-highlights-light__board {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .visual-highlights-light__tile {
        margin: 0;
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        overflow: hidden;
        box-shadow: var(--shadow-md);

        transform: translateY(32px);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .visual-highlights-light__tile:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(0);
    }

    .visual-highlights-light__snapshot {
        position: relative;
        padding-top: 62%;
        overflow: hidden;
    }

    .visual-highlights-light__snapshot img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .visual-highlights-light__tile:hover img {
        transform: scale(1.04);
    }

    .visual-highlights-light__chip {
        position: absolute;
        bottom: 16px;
        left: 16px;
        padding: 6px 14px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        box-shadow: 0 6px 14px rgba(255, 107, 53, 0.25);
    }

    .visual-highlights-light__tile figcaption {
        padding: clamp(20px, 3vw, 28px);
    }

    .visual-highlights-light__caption {
        margin: 0 0 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: var(--neutral-600);
    }

    .visual-highlights-light__tile h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(18px, 2.2vw, 24px);
        color: var(--fg-on-page);
    }

    .visual-highlights-light__tile p {
        margin: 0;
        color: var(--neutral-600);
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .touch-orbit .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-orbit header {
        margin-bottom: 14px;
        text-align: center;
    }

    .touch-orbit h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .touch-orbit header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

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

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

.next-check {
        padding: clamp(60px, 9vw, 108px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .next-check .wrap {
        max-width: 780px;
        margin: 0 auto;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface-light);
        border-radius: 18px;
        padding: clamp(18px, 3vw, 28px);
    }

    .next-check .k {
        margin: 0;
        color: var(--bg-primary);
        font-weight: 600;
    }

    .next-check h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.2vw, 44px);
    }

    .next-check .text {
        margin: 0;
        color: var(--fg-on-accent);
    }

    .next-check ul {
        margin: 14px 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .next-check li a {
        text-decoration: none;
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-2);
        border-radius: 10px;
        padding: 9px 12px;
        display: flex;
        justify-content: space-between;
        gap: 8px;
    }

    .next-check .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(var(--gap) * 1.5);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 998;
    }

    .main-nav.is-open + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        line-height: 1.4;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6278;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-social {
            justify-content: center;
        }
    }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-note p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-note button[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.our-story--colored-v5 {

    padding: 64px 20px;
    background:
        radial-gradient(circle at top left, rgba(59,130,246,0.42), transparent),
        radial-gradient(circle at bottom right, rgba(236,72,153,0.42), transparent),
        var(--neutral-900);
    color: var(--neutral-0);
}

.our-story__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.our-story__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.our-story__layout {
    display: grid;
    grid-template-columns: minmax(0,1.6fr) minmax(0,1fr);
    gap: 24px;
    align-items: stretch;
}

.our-story__content h2 {
    margin: 0 0 8px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.our-story__lead {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-100);
}

.our-story__text {
    margin: 0;
    font-size: 0.92rem;
    color: var(--neutral-300);
    line-height: 1.7;
}

.our-story__side {
    display: grid;
    gap: 10px;
}

.our-story__stat {
    border-radius: var(--radius-xl);
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.75);
}

.our-story__stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.our-story__stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.our-story__stat--brand .our-story__stat-value {
    color: var(--bg-primary);
}
.our-story__stat--accent .our-story__stat-value {
    color: var(--accent);
}
.our-story__stat--accent .our-story__stat-value {
    color: var(--accent);
}

@media (max-width: 768px) {
    .our-story__layout {
        grid-template-columns: minmax(0,1fr);
    }
}

.service-block-section {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

.service-block-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: center;
}

.service-block--flip {
    direction: rtl;
}

.service-block--flip > * {
    direction: ltr;
}

.service-block__image {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    width: 100%;
    display: block;
}

.service-block__content h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-block__content p {
    color: var(--neutral-600);
    margin-bottom: var(--space-y);
}

.service-block__content ul {
    margin-left: 1.5rem;
    color: var(--neutral-600);
}

.faq-tiles {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .faq-tiles .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .faq-tiles header {
        margin-bottom: 14px;
    }

    .faq-tiles h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-accent);
    }

    .faq-tiles header p {
        margin: 10px 0 0;
        color: var(--fg-on-accent);
        opacity: 0.85;
    }

    .faq-tiles .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 10px;
    }

    .faq-tiles .tile {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .faq-tiles .tile:hover {
        transform: translateY(-2px);
    }

    .faq-tiles .meta {
        margin: 0 0 6px;
        font-size: .85rem;
        color: var(--neutral-600);
    }

    .faq-tiles h3 {
        margin: 0 0 8px;
        color: var(--neutral-800);
    }

    .faq-tiles .tile p {
        margin: 0;
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(var(--gap) * 1.5);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 998;
    }

    .main-nav.is-open + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        line-height: 1.4;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6278;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-social {
            justify-content: center;
        }
    }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-note p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-note button[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.hiw-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .hiw-l2__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .hiw-l2__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .hiw-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .hiw-l2__sub {
        margin: 10px 0 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .hiw-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .hiw-l2__tabs {
        position: relative;
        display: flex;
        gap: 8px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface);
        overflow: auto;
    }

    .hiw-l2__tab {
        flex: 0 0 auto;
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-page);
        padding: 10px 12px;
        border-radius: 999px;
        font-weight: 900;
        cursor: pointer;
        white-space: nowrap;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .hiw-l2__tab:hover {
        transform: translateY(-1px);
    }

    .hiw-l2__tab.is-on {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: rgba(255, 107, 53, 0.35);
    }

    .hiw-l2__underline {
        position: absolute;
        height: 3px;
        bottom: 6px;
        left: 12px;
        width: 40px;
        border-radius: 999px;
        background: var(--bg-primary);
        transform: translateX(0);
        transition: transform 420ms var(--anim-ease), width 420ms var(--anim-ease);
    }

    .hiw-l2__panes {
        padding: 16px;
    }

    .hiw-l2__pane {
        display: none;
    }

    .hiw-l2__pane.is-on {
        display: block;
    }

    .hiw-l2__n {
        width: 44px;
        height: 44px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 900;
    }

    .hiw-l2__pTitle {
        margin-top: 12px;
        font-weight: 900;
        letter-spacing: -.01em;
        font-size: clamp(18px, 2.2vw, 22px);
        color: var(--fg-on-page);
    }

    .hiw-l2__pText {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (prefers-reduced-motion: reduce) {
        .hiw-l2__underline {
            transition: none;
        }

        .hiw-l2__tab {
            transition: none;
        }
    }

.plans-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .plans-c1__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .plans-c1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .plans-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

    .plans-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .plans-c1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
    }

    .plans-c1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        padding: 16px;
        position: relative;
        overflow: hidden;
        backdrop-filter: blur(8px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .plans-c1__card:hover {
        transform: translateY(-4px);
    }

    /* живой контур */
    .plans-c1__rim {
        position: absolute;
        inset: -2px;
        border-radius: inherit;
        background: conic-gradient(from 0deg,
        rgba(255, 255, 255, 0.00),
        rgba(255, 255, 255, 0.22),
        rgba(255, 107, 53, 0.28),
        rgba(255, 255, 255, 0.22),
        rgba(255, 255, 255, 0.00)
        );
        
        
        mask-composite: exclude;
        padding: 2px;
        opacity: .7;
        animation: plansC1Rim 3.6s linear infinite;
        pointer-events: none;
    }

    @keyframes plansC1Rim {
        0% {
            transform: rotate(0deg)
        }
        100% {
            transform: rotate(360deg)
        }
    }

    .plans-c1__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        position: relative;
        z-index: 1;
    }

    .plans-c1__name {
        font-weight: 900;
        letter-spacing: -.01em;
    }

    .plans-c1__tag {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.16);
        color: rgba(255, 255, 255, .92);
        font-weight: 900;
        white-space: nowrap;
    }

    .plans-c1__price {
        margin-top: 12px;
        font-size: clamp(20px, 3vw, 34px);
        font-weight: 900;
        letter-spacing: -.02em;
        position: relative;
        z-index: 1;
    }

    .plans-c1__desc {
        margin-top: 6px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
        position: relative;
        z-index: 1;
    }

    .plans-c1__list {
        margin-top: 12px;
        display: grid;
        gap: 8px;
        position: relative;
        z-index: 1;
    }

    .plans-c1__feat {
        color: rgba(255, 255, 255, .88);
    }

    .plans-c1__btn {
        margin-top: 14px;
        width: 100%;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.16);
        color: var(--fg-on-primary);
        font-weight: 900;
        cursor: pointer;
        transition: background var(--anim-duration) var(--anim-ease), transform var(--anim-duration) var(--anim-ease);
        position: relative;
        z-index: 1;
    }

    .plans-c1__btn:hover {
        background: rgba(255, 255, 255, 0.22);
        transform: translateY(-1px);
    }

    @media (max-width: 980px) {
        .plans-c1__card {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .plans-c1__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .plans-c1__rim {
            animation: none;
        }
    }

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    color: var(--fg-on-page);
}

.features--alt {
    background-color: var(--bg-alt);
    color: var(--fg-on-alt);
}

.features__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.features__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: inherit;
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-1);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: center;
    border: 1px solid var(--border-on-surface);
}

.features__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.features__icon {
    font-size: 2.5rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(var(--gap) * 1.5);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 998;
    }

    .main-nav.is-open + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        line-height: 1.4;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6278;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-social {
            justify-content: center;
        }
    }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-note p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-note button[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.clarifications-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        overflow: hidden;
        position: relative;
    }

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

    .clarifications-c1__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
    }

    .clarifications-c1__h {
        margin-bottom: clamp(14px, 2.2vw, 22px);
    }

    .clarifications-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        line-height: 1.1;
        letter-spacing: -.02em;
    }

    .clarifications-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

.contact-rail {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .contact-rail .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contact-rail .intro {
        margin-bottom: 18px;
        max-width: 720px;
    }

    .contact-rail h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        letter-spacing: -0.02em;
    }

    .contact-rail .intro p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .contact-rail .layout {
        display: grid;
        grid-template-columns: minmax(260px, 1fr) minmax(220px, 320px);
        gap: 16px;
        position: relative;
    }

    .contact-rail .layout::before {
        content: '';
        position: absolute;
        left: -10px;
        top: 0;
        width: 3px;
        height: 100%;
        background: var(--bg-primary);
        border-radius: 999px;
        opacity: 0.25;
    }

    .contact-rail .info,
    .contact-rail .social-box {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-rail h3 {
        margin: 0 0 12px;
    }

    .contact-rail .items {
        display: grid;
        gap: 10px;
    }

    .contact-rail .item {
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .contact-rail .label {
        display: block;
        font-size: 12px;
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--neutral-600);
        margin-bottom: 6px;
    }

    .contact-rail .value {
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .contact-rail .value a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-rail .value a:hover {
        color: var(--link-hover);
    }

    .contact-rail .social-title {
        margin: 0 0 10px;
        font-weight: 600;
        color: var(--fg-on-page);
    }

    .contact-rail .social {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .contact-rail .social a {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border: 1px solid var(--border-on-surface);
        border-radius: 50%;
        color: var(--fg-on-page);
        text-decoration: none;
        background: var(--surface-2);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-rail .social a:hover {
        transform: translateY(-2px);
    }

    @media (max-width: 860px) {
        .contact-rail .layout {
            grid-template-columns: 1fr;
        }

        .contact-rail .layout::before {
            display: none;
        }
    }

.form-glass {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .form-glass .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .form-glass header {
        margin-bottom: 14px;
    }

    .form-glass h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .form-glass header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .form-glass .grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .form-glass label {
        display: grid;
        gap: 6px;
        margin-bottom: 8px;
    }

    .form-glass input:not([type="checkbox"]),
    .form-glass textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .4);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .form-glass .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-glass button {
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: 9px 12px;
        cursor: pointer;
        font: inherit;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .form-glass button:hover {
        background: var(--bg-accent-hover);
    }

    .form-glass .info p {
        margin: 0 0 8px;
        opacity: .9;
    }

    @media (max-width: 860px) {
        .form-glass .grid {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(var(--gap) * 1.5);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 998;
    }

    .main-nav.is-open + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        line-height: 1.4;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6278;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-social {
            justify-content: center;
        }
    }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-note p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-note button[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.policy-lines {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .policy-lines .wrap {
        max-width: 840px;
        margin: 0 auto;
    }

    .policy-lines h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
    }

    .policy-lines .lead {
        margin: 10px 0 16px;
        color: var(--neutral-600);
    }

    .policy-lines ol {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .policy-lines li {
        border-left: 3px solid var(--ring);
        background: var(--surface-2);
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
        padding: 12px;
    }

    .policy-lines .head {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: baseline;
    }

    .policy-lines .head span {
        font-size: .9rem;
        color: var(--neutral-600);
    }

    .policy-lines li p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(var(--gap) * 1.5);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 998;
    }

    .main-nav.is-open + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        line-height: 1.4;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6278;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-social {
            justify-content: center;
        }
    }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-note p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-note button[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.terms-scroll {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .terms-scroll .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 16px;
    }

    .terms-scroll .sidebar {
        position: sticky;
        top: 16px;
        align-self: start;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        padding: 12px;
    }

    .terms-scroll .sidebar h2 {
        margin: 0;
        font-size: clamp(24px, 3vw, 30px);
    }

    .terms-scroll .sidebar p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .terms-scroll .content {
        display: grid;
        gap: 10px;
    }

    .terms-scroll .block {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .terms-scroll h3,
    .terms-scroll h4 {
        margin: 0 0 8px;
    }

    .terms-scroll p,
    .terms-scroll li {
        color: var(--neutral-600);
    }

    @media (max-width: 860px) {
        .terms-scroll .wrap {
            grid-template-columns: 1fr;
        }

        .terms-scroll .sidebar {
            position: static;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(var(--gap) * 1.5);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 998;
    }

    .main-nav.is-open + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        line-height: 1.4;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6278;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-social {
            justify-content: center;
        }
    }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-note p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-note button[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.th-core-a {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .th-core-a .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
    }

    .th-core-a h1 {
        margin: 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .th-core-a p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .th-core-a a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
}

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}

.logo:hover {
    color: var(--accent);
}

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}

.burger-line {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
    align-items: center;
}

.nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    padding: calc(var(--space-y) / 2) var(--space-x);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}

.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--surface-2);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 999;
        overflow-y: auto;
    }

    .main-nav.is-open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: calc(var(--gap) * 1.5);
        margin-top: 3rem;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: var(--space-y) var(--space-x);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .header-container::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        opacity: 0;
        visibility: hidden;
        transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
        z-index: 998;
    }

    .main-nav.is-open + .header-container::after {
        opacity: 1;
        visibility: visible;
    }
}

.site-footer {
        background-color: #2c3e50;
        color: #ecf0f1;
        padding: 2.5rem 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        margin-top: auto;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
    }

    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #3498db;
        margin-bottom: 1rem;
    }

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #bdc3c7;
        line-height: 1.4;
        margin-top: auto;
    }

    .footer-section h3 {
        color: #3498db;
        margin-bottom: 1.2rem;
        font-size: 1.2rem;
        border-bottom: 1px solid #4a6278;
        padding-bottom: 0.5rem;
    }

    .footer-nav,
    .footer-legal {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-nav li,
    .footer-legal li {
        margin-bottom: 0.7rem;
    }

    .footer-nav a,
    .footer-legal a {
        color: #ecf0f1;
        text-decoration: none;
        transition: color 0.2s ease;
    }

    .footer-nav a:hover,
    .footer-legal a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-contacts p {
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .footer-contacts a {
        color: #ecf0f1;
        text-decoration: none;
    }

    .footer-contacts a:hover {
        color: #3498db;
        text-decoration: underline;
    }

    .footer-social {
        margin-top: 1.5rem;
        display: flex;
        gap: 1rem;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #4a6278;
        color: white;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .footer-social a:hover {
        background-color: #3498db;
    }

    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2.5rem;
            text-align: center;
        }

        .footer-section h3 {
            border-bottom: none;
        }

        .footer-social {
            justify-content: center;
        }
    }

.cookie-note {
        position: fixed;
        inset: auto 12px 12px 12px;
        z-index: 1100;
    }

    .cookie-note .wrap {
        margin: 0 auto;
        max-width: 780px;
        border: 1px solid var(--border-on-surface-light);
        background: var(--bg-alt);
        border-radius: var(--radius-lg);
        padding: 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        flex-wrap: wrap;
    }

    .cookie-note h2 {
        margin: 0 0 4px;
        font-size: 1rem;
    }

    .cookie-note p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .cookie-note button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-page);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-note button[data-cookie='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.nf-core-f {
        padding: clamp(56px, 10vw, 110px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nf-core-f .box {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        background: var(--neutral-0);
        border: 1px solid var(--border-on-surface-light);
        border-radius: 20px;
        padding: clamp(18px, 3vw, 30px);
    }

    .nf-core-f h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
    }

    .nf-core-f p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nf-core-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 12px;
        background: var(--bg-primary);
        color: var(--neutral-0);
        text-decoration: none;
    }