:root {
  --font-family: "Archivo", 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.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 200ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #2563eb;
  --brand-contrast: #ffffff;
  --accent: #0891b2;
  --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: #f1f5f9;
  --fg-on-surface: #0f172a;
  --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: #f0f9ff;
  --fg-on-accent: #164e63;
  --bg-accent-hover: #0e7490;

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

  --gradient-hero: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  --gradient-accent: linear-gradient(135deg, #0891b2 0%, #0e7490 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(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    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(--link-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}

.nav-link {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 5;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 0 var(--space-x);
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.5rem;
    }

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

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .copyright {
        color: #777;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }

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

.cookie-dock {
        position: fixed;
        right: 16px;
        bottom: 16px;
        width: min(420px, calc(100% - 32px));
        z-index: 1100;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-dock .wrap {
        padding: 14px;
        display: grid;
        gap: 10px;
    }

    .cookie-dock h2 {
        margin: 0;
        font-size: 1rem;
    }

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

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

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

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

.intro-cardline {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .intro-cardline .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1.1fr;
        gap: 16px;
        align-items: center;
    }

    .intro-cardline .media {
        order: var(--random-number);
    }

    .intro-cardline .copy {
        order: 1;
    }

    .intro-cardline .media img {
        width: 100%;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
    }

    .intro-cardline .badge {
        margin: 0 0 8px;
        display: inline-block;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        padding: 6px 12px;
        border-radius: var(--radius-md);
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.02em;
    }

    .intro-cardline h1 {
        margin: 0 0 8px;
        font-size: clamp(32px, 5.2vw, 54px);
        line-height: 1.15;
        font-weight: 700;
        color: var(--neutral-900);
    }

    .intro-cardline .subtitle {
        margin: 0 0 16px;
        color: var(--neutral-600);
        font-size: 1.25rem;
        line-height: 1.4;
    }

    .intro-cardline .desc {
        margin: 0 0 20px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        font-size: 1.05rem;
    }

    .intro-cardline .question {
        margin: 0 0 24px;
        padding: 16px 20px;
        border-left: 4px solid var(--brand);
        background: var(--surface-2);
        color: var(--fg-on-page);
        font-weight: 600;
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
    }

    .intro-cardline .btn {
        text-decoration: none;
        padding: 14px 28px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        display: inline-block;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        cursor: pointer;
        font-size: 1rem;
    }

    .intro-cardline .btn:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 900px) {
        .intro-cardline .wrap {
            grid-template-columns: 1fr;
            gap: 32px;
        }
        .intro-cardline .media {
            order: 1;
        }
        .intro-cardline .copy {
            order: 2;
        }
    }

.value-points-radiant {
        background: radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.22), transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.2), transparent 50%),
        var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(20px, 4vw, 56px);
        position: relative;
        overflow: hidden;
    }

    .value-points-radiant__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .value-points-radiant__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 90px);
        transform: translateY(-20px);
    }

    .value-points-radiant__eyebrow {
        margin: 0 0 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: clamp(14px, 2vw, 18px);
        color: rgba(255, 255, 255, 0.7);
    }

    .value-points-radiant h2 {
        margin: 0;
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
    }

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

    .value-points-radiant__card {
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.45);
        transform: translateY(40px);
        position: relative;
        overflow: hidden;
    }

    .value-points-radiant__card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 60%);
        transition: opacity 0.3s ease;
    }

    .value-points-radiant__card:hover::after {
        opacity: 1;
    }

    .value-points-radiant__marker {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        letter-spacing: 0.08em;
        margin-bottom: 1rem;
    }

    .value-points-radiant__card h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.3vw, 26px);
        color: var(--neutral-0);
    }

    .value-points-radiant__card p {
        margin: 0 0 1rem;
        color: rgba(255, 255, 255, 0.78);
    }

    .value-points-radiant__hint {
        display: inline-flex;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 11px;
        color: rgba(255, 255, 255, 0.7);
    }

.visual-highlights-carousel {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(60px, 8vw, 108px) clamp(18px, 4vw, 56px);
    }

    .visual-highlights-carousel__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

        transform: translateY(-20px);
    }

    .visual-highlights-carousel__h p {
        margin: 0 0 0.75rem;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: var(--brand);
        font-size: 13px;
    }

    .visual-highlights-carousel__h h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 50px);
        font-weight: 800;
        color: var(--fg-on-alt);
    }

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

    .visual-highlights-carousel__slide {
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        overflow: hidden;

        transform: translateY(30px);
        box-shadow: var(--shadow-lg);
        display: flex;
        flex-direction: column;
    }

    .visual-highlights-carousel__img {
        position: relative;
        padding-top: 60%;
    }

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

    .visual-highlights-carousel__slide:hover img {
        transform: scale(1.05);
    }

    .visual-highlights-carousel__flag {
        position: absolute;
        top: 16px;
        right: 16px;
        background: var(--bg-page);
        border-radius: 999px;
        padding: 6px 14px;
        font-size: 12px;
        color: var(--accent);
        font-weight: 600;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        box-shadow: 0 12px 20px rgba(0, 86, 179, 0.15);
    }

    .visual-highlights-carousel__text {
        padding: clamp(20px, 3vw, 28px);
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

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

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

    .visual-highlights-carousel__note {
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        color: var(--brand);
    }

.why-choose-alt {
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .why-choose-alt::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: backgroundPulse 4s ease-in-out infinite;
    }

    @keyframes backgroundPulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            opacity: 1;
            transform: scale(1.1);
        }
    }

    .why-choose-alt .why-choose-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .why-choose-alt .why-choose-alt__h {
        color: var(--fg-on-surface-light);
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);
    }

    .why-choose-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-surface-light);
    }

    .why-choose-alt .why-choose-alt__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

    .why-choose-alt .why-choose-alt__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2vw, 24px);
    }

    .why-choose-alt .why-choose-alt__item {
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        background: var(--surface-light);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        align-items: flex-start;
        position: relative;
        overflow: hidden;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .why-choose-alt .why-choose-alt__item:hover {
        transform: translateX(8px);
        box-shadow: -8px 8px 24px rgba(0, 0, 0, 0.15);
    }

    .why-choose-alt .why-choose-alt__item:hover::before {
        left: 100%;
    }

    .why-choose-alt .why-choose-alt__number {
        flex-shrink: 0;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-radius: var(--radius-md);
        font-size: clamp(20px, 2.5vw, 28px);
        font-weight: 700;
        position: relative;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover .why-choose-alt__number {
        transform: rotate(360deg) scale(1.1);
    }

    .why-choose-alt .why-choose-alt__number::after {
        content: '';
        position: absolute;
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-radius: var(--radius-md);
        border: 2px solid var(--bg-accent);
        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% {
            transform: scale(1);
        }
        50% {
            opacity: 0.6;
            transform: scale(1.2);
        }
    }

    .why-choose-alt .why-choose-alt__content {
        flex: 1;
    }

    .why-choose-alt .why-choose-alt__item h3 {
        font-size: clamp(18px, 2.2vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .why-choose-alt .why-choose-alt__item:hover h3 {
        color: var(--bg-accent);
    }

    .why-choose-alt .why-choose-alt__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

.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(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    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(--link-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}

.nav-link {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 5;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 0 var(--space-x);
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.5rem;
    }

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

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .copyright {
        color: #777;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }

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

.cookie-dock {
        position: fixed;
        right: 16px;
        bottom: 16px;
        width: min(420px, calc(100% - 32px));
        z-index: 1100;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-dock .wrap {
        padding: 14px;
        display: grid;
        gap: 10px;
    }

    .cookie-dock h2 {
        margin: 0;
        font-size: 1rem;
    }

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

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

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

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

.identity-aurora {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .identity-aurora::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.18), transparent 55%),
        radial-gradient(circle at 80% 0%, rgba(255, 99, 71, 0.35), transparent 40%);
        opacity: 0.8;
        pointer-events: none;
    }

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

    .identity-aurora__h {
        text-align: center;
        margin-bottom: clamp(48px, 6vw, 80px);

        transform: translateY(-20px);
    }

    .identity-aurora__eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 0.85rem;
        color: var(--link);
        margin: 0 0 0.75rem;
    }

    .identity-aurora h2 {
        font-size: clamp(36px, 5vw, 60px);
        margin: 0 0 1rem;
    }

    .identity-aurora__lead {
        margin: 0 auto;
        max-width: 720px;
        color: rgba(255, 255, 255, 0.82);
        font-size: clamp(18px, 2.4vw, 22px);
    }

    .identity-aurora__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .identity-aurora__card {
        background: rgba(8, 16, 42, 0.6);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 25px 50px rgba(3, 6, 26, 0.45);
        backdrop-filter: blur(16px);
        transform: translateY(30px);
    }

    .identity-aurora__card::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        padding: 1px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
        
        
        mask-composite: exclude;
        pointer-events: none;
    }

    .identity-aurora__icon {
        width: 64px;
        height: 64px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
        margin-bottom: 1.25rem;
    }

    .identity-aurora__meta {
        margin-bottom: 0.75rem;
    }

    .identity-aurora__tag {
        display: inline-flex;
        align-items: center;
        padding: 0.25rem 0.85rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.14);
        color: rgba(255, 255, 255, 0.85);
        font-size: 0.85rem;
        letter-spacing: 0.05em;
        text-transform: uppercase;
    }

    .identity-aurora__card h3 {
        margin: 0.35rem 0 0.75rem;
        font-size: clamp(20px, 2.4vw, 26px);
    }

    .identity-aurora__body {
        margin: 0 0 1.25rem;
        color: rgba(255, 255, 255, 0.78);
    }

    .identity-aurora__foot {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
        color: var(--link);
    }

    .identity-aurora__foot::before {
        content: "";
        width: 36px;
        height: 2px;
        background: linear-gradient(90deg, transparent, currentColor);
    }

.gallery--light-v6 {
    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--neutral-900);
    font-family: var(--font-family);
    font-weight: 600;
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
    transition: transform var(--anim-duration) var(--anim-ease);
    cursor: pointer;
}

.gallery__thumb:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.gallery__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.our-story {

        color: var(--fg-on-page);
        background: var(--bg-alt);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .our-story .our-story__content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(24px, 4vw, 48px);
        align-items: center;
    }

    .our-story .our-story__text h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-alt);
    }

    .our-story .our-story__text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 1rem;
    }

    .our-story .our-story__image {
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .our-story .our-story__image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    @media (max-width: 768px) {
        .our-story .our-story__content {
            grid-template-columns: 1fr;
        }
    }

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

    .faq-board .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .faq-board .head {
        margin-bottom: 14px;
    }

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

    .faq-board .head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .faq-board .board {
        display: grid;
        gap: 8px;
    }

    .faq-board details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
    }

    .faq-board summary {
        cursor: pointer;
        font-weight: 600;
    }

    .faq-board details p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    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(--link-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}

.nav-link {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 5;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 0 var(--space-x);
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.5rem;
    }

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

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .copyright {
        color: #777;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }

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

.cookie-dock {
        position: fixed;
        right: 16px;
        bottom: 16px;
        width: min(420px, calc(100% - 32px));
        z-index: 1100;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-dock .wrap {
        padding: 14px;
        display: grid;
        gap: 10px;
    }

    .cookie-dock h2 {
        margin: 0;
        font-size: 1rem;
    }

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

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

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

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

.capabilities-light {

        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
    }

    .capabilities-light .capabilities-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    }

    .capabilities-light h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

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

    .capabilities-light .capabilities-light__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .capabilities-light .capabilities-light__card {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        transition: all var(--anim-duration) var(--anim-ease);

        transform: scale(0.95);
    }

    .capabilities-light .capabilities-light__card:hover {
        border-color: var(--brand);
        box-shadow: var(--shadow-md);
        transform: scale(1);
    }

    .capabilities-light .capabilities-light__visual {
        flex-shrink: 0;
        position: relative;
    }

    .capabilities-light .capabilities-light__badge {
        position: absolute;
        top: -8px;
        right: -8px;
        width: 24px;
        height: 24px;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        font-weight: 700;
        box-shadow: var(--shadow-sm);
    }

    .capabilities-light .capabilities-light__icon {
        width: 64px;
        height: 64px;
        background: var(--bg-accent);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
    }

    .capabilities-light .capabilities-light__content {
        flex: 1;
    }

    .capabilities-light .capabilities-light__card h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        font-weight: 700;
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .capabilities-light .capabilities-light__card p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

    .index-feedback-accordion__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .index-feedback-accordion__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-accordion__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-accordion__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback-accordion__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-feedback-accordion__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--bg-page);
        font: inherit;
    }

    .index-feedback-accordion__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .index-feedback-accordion__stars {
        color: var(--brand);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

.hiw-l1 {

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

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

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

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

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

    .hiw-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
        position: relative;
    }

    .hiw-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
    }

    /* коннектор к следующему карточке (пульсирует постоянно) */
    .hiw-l1__card:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        right: -16px;
        top: 50%;
        width: 15px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(0, 86, 179, 0.25), rgba(0, 86, 179, 0.75), rgba(0, 86, 179, 0.25));
        transform: translateY(-50%);
        animation: hiwL1Link 1.9s ease-in-out infinite;
    }

    @keyframes hiwL1Link {
        0%, 100% {
            opacity: .45;
            filter: blur(0px)
        }
        50% {
            opacity: 1;
            filter: blur(0.3px)
        }
    }

    .hiw-l1__head {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .hiw-l1__n {
        width: 40px;
        height: 40px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .hiw-l1__t {
        font-weight: 900;
        letter-spacing: -.01em;
    }

    .hiw-l1__d {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .hiw-l1__card:hover {
        transform: translateY(-3px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

        .hiw-l1__card:not(:nth-child(2n))::after {
            display: none;
        }
    }

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

        .hiw-l1__card::after {
            display: none;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .hiw-l1__card::after {
            animation: none;
        }
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    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(--link-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}

.nav-link {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 5;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 0 var(--space-x);
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.5rem;
    }

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

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .copyright {
        color: #777;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }

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

.cookie-dock {
        position: fixed;
        right: 16px;
        bottom: 16px;
        width: min(420px, calc(100% - 32px));
        z-index: 1100;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-dock .wrap {
        padding: 14px;
        display: grid;
        gap: 10px;
    }

    .cookie-dock h2 {
        margin: 0;
        font-size: 1rem;
    }

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

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

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

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

.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: 1.2fr .8fr;
        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;
        }
    }

.connect {
        color: var(--fg-on-page);
        background: var(--bg-page);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

    .connect .connect__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 16px;
        color: var(--fg-on-page);
    }

    .connect .connect__desc {
        text-align: center;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        color: var(--neutral-600);
        max-width: 700px;
        margin: 0 auto clamp(48px, 7vw, 72px);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 2px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(46px, 8vw, 70px);
        width: clamp(95px, 13.5vw, 135px);
        height: clamp(95px, 13.5vw, 135px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-2);
        border-radius: 50%;
        border: 2px solid var(--border-on-surface);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
        color: var(--fg-on-surface);
    }

.contact-wave {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        position: relative;
        overflow: hidden;
    }

    .contact-wave::before,
    .contact-wave::after {
        content: '';
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .contact-wave::before {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.22), transparent 55%);
        opacity: 0.9;
    }

    .contact-wave::after {
        background: radial-gradient(circle at 85% 65%, rgba(255, 107, 53, 0.28), transparent 55%);
        
        opacity: 0.85;
    }

    .contact-wave .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .contact-wave header {
        margin-bottom: 18px;
        max-width: 720px;
    }

    .contact-wave h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        letter-spacing: -0.02em;
        text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .contact-wave header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .contact-wave .grid {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .contact-wave .panel {
        border: 1px solid rgba(255, 255, 255, .28);
        background: linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .08));
        border-radius: var(--radius-lg);
        padding: 16px;
        backdrop-filter: blur(10px);
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .contact-wave .panel::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 60%);
        opacity: 0.7;
        pointer-events: none;
    }

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

    .contact-wave label {
        display: grid;
        gap: 6px;
        margin-bottom: 9px;
    }

    .contact-wave input,
    .contact-wave textarea,
    .contact-wave select {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .contact-wave button {
        border: 0;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        cursor: pointer;
    }

    .contact-wave .info p {
        margin: 0 0 10px;
        opacity: .95;
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .contact-wave .info p strong {
        color: var(--accent);
        letter-spacing: 0.02em;
    }

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

    .contact-wave .social a {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, .35);
        color: inherit;
        text-decoration: none;
        background: rgba(0, 0, 0, 0.15);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .contact-wave .social a:hover {
        transform: translateY(-2px);
        background: rgba(0, 0, 0, 0.28);
    }

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    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(--link-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}

.nav-link {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 5;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 0 var(--space-x);
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.5rem;
    }

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

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .copyright {
        color: #777;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }

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

.cookie-dock {
        position: fixed;
        right: 16px;
        bottom: 16px;
        width: min(420px, calc(100% - 32px));
        z-index: 1100;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-dock .wrap {
        padding: 14px;
        display: grid;
        gap: 10px;
    }

    .cookie-dock h2 {
        margin: 0;
        font-size: 1rem;
    }

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

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

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

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

.policy-capsules {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-accent);
    }

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

    .policy-capsules header {
        margin-bottom: 14px;
    }

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

    .policy-capsules header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

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

    .policy-capsules article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--neutral-0);
        padding: 14px 16px;
    }

    .policy-capsules h3 {
        margin: 0 0 6px;
    }

    .policy-capsules article p {
        margin: 0 0 6px;
        color: var(--neutral-600);
    }

    .policy-capsules span {
        font-size: .85rem;
        color: var(--neutral-600);
    }

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    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(--link-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}

.nav-link {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 5;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 0 var(--space-x);
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.5rem;
    }

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

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .copyright {
        color: #777;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }

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

.cookie-dock {
        position: fixed;
        right: 16px;
        bottom: 16px;
        width: min(420px, calc(100% - 32px));
        z-index: 1100;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-dock .wrap {
        padding: 14px;
        display: grid;
        gap: 10px;
    }

    .cookie-dock h2 {
        margin: 0;
        font-size: 1rem;
    }

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

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

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

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

.terms-panels {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(180deg, var(--bg-alt), var(--bg-page));
        color: var(--fg-on-page);
    }

    .terms-panels .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .terms-panels header {
        margin-bottom: 16px;
    }

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

    .terms-panels header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .terms-panels .panel {
        margin-bottom: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .9);
        padding: 14px;
    }

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    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(--link-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}

.nav-link {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 5;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 0 var(--space-x);
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.5rem;
    }

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

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .copyright {
        color: #777;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }

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

.cookie-dock {
        position: fixed;
        right: 16px;
        bottom: 16px;
        width: min(420px, calc(100% - 32px));
        z-index: 1100;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-dock .wrap {
        padding: 14px;
        display: grid;
        gap: 10px;
    }

    .cookie-dock h2 {
        margin: 0;
        font-size: 1rem;
    }

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

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

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

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

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

    .th-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: var(--space-x);
        padding: clamp(18px, 3vw, 30px);
    }

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

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

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

.site-header {
    background-color: var(--bg-page);
    color: var(--fg-on-page);
    border-bottom: 1px solid var(--border-on-surface-light);
    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(--link-hover);
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
}

.main-nav {
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) * 2);
}

.nav-link {
    color: var(--neutral-800);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover {
    color: var(--brand);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand);
    transition: width var(--anim-duration) var(--anim-ease);
}

.nav-link:hover::after {
    width: 100%;
}

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

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        padding-top: 5rem;
        z-index: 5;
    }

    .main-nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        padding: 0 var(--space-x);
        gap: var(--gap);
    }

    .nav-link {
        display: block;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-link::after {
        display: none;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

.site-footer {
        background-color: #f8f9fa;
        color: #333;
        padding: 2.5rem 1rem;
        border-top: 1px solid #eaeaea;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 0.95rem;
        line-height: 1.6;
    }

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

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

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

    .footer-disclaimer {
        font-size: 0.85rem;
        color: #666;
        margin-top: 0.5rem;
    }

    .footer-heading {
        font-size: 1.1rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 600;
    }

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

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

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

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

    .footer-contacts p {
        margin-bottom: 0.5rem;
    }

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

    .footer-contacts a:hover {
        text-decoration: underline;
    }

    .footer-bottom {
        max-width: 1200px;
        margin: 0 auto;
        padding-top: 1.5rem;
        border-top: 1px solid #ddd;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    .copyright {
        color: #777;
        margin: 0;
    }

    .footer-legal {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
    }

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

        .footer-bottom {
            flex-direction: column;
            text-align: center;
            gap: 0.75rem;
        }

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

.cookie-dock {
        position: fixed;
        right: 16px;
        bottom: 16px;
        width: min(420px, calc(100% - 32px));
        z-index: 1100;
        background: var(--surface-1);
        color: var(--fg-on-page);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
    }

    .cookie-dock .wrap {
        padding: 14px;
        display: grid;
        gap: 10px;
    }

    .cookie-dock h2 {
        margin: 0;
        font-size: 1rem;
    }

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

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

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

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

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

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

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

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

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