:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 13.9px;
  --line-height-base: 1.35;

  --max-w: 960px;
  --space-x: 0.74rem;
  --space-y: 0.7rem;
  --gap: 0.61rem;

  --radius-xl: 0.97rem;
  --radius-lg: 0.56rem;
  --radius-md: 0.43rem;
  --radius-sm: 0.18rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 3px 12px rgba(0,0,0,0.07);
  --shadow-lg: 0 8px 26px rgba(0,0,0,0.09);

  --overlay: rgba(15, 18, 22, 0.75);
  --anim-duration: 140ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #2A7DE3;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6C7A95;
  --neutral-800: #2C3A4B;
  --neutral-900: #0F1216;

  --bg-page: #0F1216;
  --fg-on-page: #E8EDF5;

  --bg-alt: #1A1F26;
  --fg-on-alt: #D1D9E6;

  --surface-1: #1A1F26;
  --surface-2: #242B35;
  --fg-on-surface: #E8EDF5;
  --border-on-surface: #2C3A4B;

  --surface-light: #2C3A4B;
  --fg-on-surface-light: #F5F7FA;
  --border-on-surface-light: #3D4D63;

  --bg-primary: #2A7DE3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1A6BCF;
  --ring: #2A7DE3;

  --bg-accent: rgba(255, 107, 53, 0.1);
  --fg-on-accent: #FF6B35;
  --bg-accent-hover: #E55A2A;

  --link: #4DABFF;
  --link-hover: #80C5FF;

  --gradient-hero: linear-gradient(135deg, #0F1216 0%, #1A1F26 50%, #242B35 100%);
  --gradient-accent: linear-gradient(90deg, #2A7DE3 0%, #4DABFF 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --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;}

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

    .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);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        flex-shrink: 0;
    }

    .header__nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: none;
    }

    .nav__link[href="index.html"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .nav__link[href="index.html"]:hover {
        background-color: var(--bg-primary-hover);
    }

    .nav__cta {
        background-color: var(--bg-accent);
        color: var(--fg-on-accent);
        text-decoration: none;
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-lg);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav__cta:hover,
    .nav__cta:focus-visible {
        background-color: var(--bg-accent-hover);
        outline: none;
    }

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

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

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: calc(var(--space-y) * 2) var(--space-x);
            gap: calc(var(--gap) * 2);
            box-shadow: var(--shadow-lg);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            width: 100%;
        }

        .nav__cta {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eaeaea;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        line-height: 1.6;
        font-style: normal;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-social a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-social a:hover {
        text-decoration: underline;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            order: 2;
        }
        .footer-social {
            order: 3;
        }
    }

.cookie-lv16 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.hero-arc-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .hero-arc-v5 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: calc(var(--gap) * 2);
        align-items: flex-end;
        justify-content: space-between;
    }

    .hero-arc-v5 .content {
        max-width: 66ch;
    }

    .hero-arc-v5 h1 {
        margin: .25rem 0;
        font-size: clamp(2.1rem, 5vw, 4rem);
        line-height: 1.02;
        letter-spacing: -.02em;
    }

    .hero-arc-v5 .subtitle {
        margin: 0 0 .5rem;
        opacity: .9;
        font-size: 1.05rem;
    }

    .hero-arc-v5 .desc {
        margin: 0;
        opacity: .8;
        max-width: 58ch;
    }

    .hero-arc-v5 .aside {
        min-width: 280px;
        max-width: 360px;
        display: grid;
        gap: var(--gap);
    }

    .hero-arc-v5 img {
        width: 100%;
        display: block;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v5 .actions {
        display: grid;
        gap: .7rem;
    }

    .hero-arc-v5 .actions a {
        display: block;
        text-align: center;
        padding: .66rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hero-arc-v5 .actions a:nth-child(even) {
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .hero-arc-v5 .ticker {
        max-width: var(--max-w);
        margin: calc(var(--space-y) * 1.2) auto 0;
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
        padding-top: var(--space-y);
        border-top: 1px solid var(--neutral-600);
    }

    .hero-arc-v5 .ticker span {
        padding: .45rem .7rem;
        border-radius: var(--radius-sm);
        background: var(--chip-bg);
        font-size: .9rem;
    }

    @media (max-width: 940px) {
        .hero-arc-v5 .shell {
            flex-direction: column;
            align-items: stretch;
        }

        .hero-arc-v5 .aside {
            max-width: none;
        }

        .hero-arc-v5 img {
            aspect-ratio: 16/9;
        }
    }

.cta-struct-v2 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .cta-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .cta-struct-v2 h2, .cta-struct-v2 h3, .cta-struct-v2 p {
        margin: 0
    }

    .cta-struct-v2 a {
        text-decoration: none
    }

    .cta-struct-v2 .center, .cta-struct-v2 .banner, .cta-struct-v2 .stack, .cta-struct-v2 .bar, .cta-struct-v2 .split, .cta-struct-v2 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .cta-struct-v2 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .cta-struct-v2 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .cta-struct-v2 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v2 .actions a, .cta-struct-v2 .center a, .cta-struct-v2 .banner > a, .cta-struct-v2 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .cta-struct-v2 .banner {
        display: grid;
        gap: .6rem
    }

    .cta-struct-v2 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .cta-struct-v2 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v2 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .cta-struct-v2 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v2 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v2 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v2 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v2 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .cta-struct-v2 .split, .cta-struct-v2 .bar, .cta-struct-v2 .duo {
            grid-template-columns:1fr
        }

        .cta-struct-v2 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v2 .numbers {
            grid-template-columns:1fr
        }
    }

.education-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .education-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .education-struct-v2 h2, .education-struct-v2 h3, .education-struct-v2 p {
        margin: 0
    }

    .education-struct-v2 a {
        text-decoration: none
    }

    .education-struct-v2 article, .education-struct-v2 .row, .education-struct-v2 details, .education-struct-v2 .program {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v2 .grid, .education-struct-v2 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v2 .grid a, .education-struct-v2 .tiers a, .education-struct-v2 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v2 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v2 .path article {
        position: relative;
        padding-left: 1.25rem
    }

    .education-struct-v2 .path article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .education-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v2 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v2 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v2 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v2 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo, .education-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

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

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

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

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

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

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

    .social-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;
        transform-style: preserve-3d;
        transition: transform 420ms var(--anim-ease);
        min-height: 170px;
    }

    .social-l1__card:hover {
        transform: rotateY(180deg);
    }

    .social-l1__front,
    .social-l1__back {
        position: absolute;
        inset: 0;
        padding: 16px;
        backface-visibility: hidden;
        border-radius: inherit;
    }

    .social-l1__front::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(260px 130px at 20% 15%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(240px 140px at 85% 35%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
        border-radius: inherit;
    }

    .social-l1__chip {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
    }

    .social-l1__big {
        margin-top: 12px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.01em;
        position: relative;
    }

    .social-l1__small {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        position: relative;
    }

    .social-l1__back {
        transform: rotateY(180deg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .social-l1__backTitle {
        font-weight: 900;
        color: var(--bg-primary);
        letter-spacing: -.01em;
        margin-bottom: 8px;
    }

    .social-l1__backText {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

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

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

.visual-film-c1 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

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

    .visual-film-c1__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .visual-film-c1__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
        color: var(--neutral-300);
    }

    .visual-film-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--fg-on-page);
    }

    .visual-film-c1__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-film-c1__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
    }

    .visual-film-c1__media {
        position: relative;
    }

    .visual-film-c1__media img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-film-c1__media span {
        position: absolute;
        top: .8rem;
        left: .8rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: var(--overlay);
        color: var(--neutral-0);
        font-size: .75rem;
        font-weight: 600;
    }

    .visual-film-c1__grid figcaption {
        padding: 1rem;
    }

    .visual-film-c1__grid small {
        color: var(--neutral-600);
        font-size: .75rem;
        font-weight: 600;
    }

    .visual-film-c1__grid h3 {
        margin: .5rem 0 .35rem;
        color: var(--fg-on-surface);
        font-size: 1.25rem;
    }

    .visual-film-c1__grid p {
        margin: 0;
        color: var(--neutral-300);
        font-size: .9rem;
        line-height: 1.5;
    }

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

    .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);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        flex-shrink: 0;
    }

    .header__nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: none;
    }

    .nav__link[href="index.html"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .nav__link[href="index.html"]:hover {
        background-color: var(--bg-primary-hover);
    }

    .nav__cta {
        background-color: var(--bg-accent);
        color: var(--fg-on-accent);
        text-decoration: none;
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-lg);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav__cta:hover,
    .nav__cta:focus-visible {
        background-color: var(--bg-accent-hover);
        outline: none;
    }

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

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

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: calc(var(--space-y) * 2) var(--space-x);
            gap: calc(var(--gap) * 2);
            box-shadow: var(--shadow-lg);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            width: 100%;
        }

        .nav__cta {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eaeaea;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        line-height: 1.6;
        font-style: normal;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-social a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-social a:hover {
        text-decoration: underline;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            order: 2;
        }
        .footer-social {
            order: 3;
        }
    }

.cookie-lv16 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.faq-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .faq-fresh-v1 .shell {
        max-width: 860px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .faq-fresh-v1 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .faq-fresh-v1 .items {
        display: grid;
        gap: .8rem;
    }

    .faq-fresh-v1 details {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        padding: .85rem 1rem;
        background: var(--surface-1);
    }

    .faq-fresh-v1 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .faq-fresh-v1 p {
        margin: .7rem 0 0;
        color: var(--fg-on-surface-light);
    }

.identity-cv3 {
        padding: clamp(54px, 8vw, 98px) clamp(16px, 4vw, 40px);
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

    .identity-cv3__head {
        margin-bottom: 16px;
    }

    .identity-cv3__head span {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.3);
    }

    .identity-cv3__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 50px);
    }

    .identity-cv3__head p {
        margin: 0;
        max-width: 72ch;
        opacity: .9;
    }

    .identity-cv3__list {
        display: grid;
        gap: 12px;
    }

    .identity-cv3__list article {
        display: grid;
        grid-template-columns: 90px 1fr;
        gap: 12px;
        background: rgba(255, 255, 255, 0.35);
        border-radius: var(--radius-lg);
        padding: 12px;
        color: var(--fg-on-page);
    }

    .identity-cv3__meta {
        display: grid;
        gap: 8px;
        justify-items: center;
    }

    .identity-cv3__meta b {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .identity-cv3__meta i {
        font-style: normal;
        font-size: 1.5rem;
    }

    .identity-cv3__list h3 {
        margin: 0;
    }

    .identity-cv3__list p {
        margin: 7px 0;
        color: var(--neutral-800);
    }

    .identity-cv3__list em {
        font-style: normal;
        font-weight: 700;
        color: var(--link);
    }

    @media (max-width: 640px) {
        .identity-cv3__list article {
            grid-template-columns: 1fr;
        }
    }

.testimonials-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

    .testimonials-struct-v1 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .testimonials-struct-v1 h2, .testimonials-struct-v1 h3, .testimonials-struct-v1 p {
        margin: 0
    }

    .testimonials-struct-v1 article, .testimonials-struct-v1 blockquote, .testimonials-struct-v1 figure, .testimonials-struct-v1 .spotlight, .testimonials-struct-v1 .row {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .testimonials-struct-v1 .grid {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v1 .rail {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: .6rem
    }

    .testimonials-struct-v1 .stack {
        display: grid;
        gap: .65rem
    }

    .testimonials-struct-v1 .stack article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .testimonials-struct-v1 img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .testimonials-struct-v1 .table {
        display: grid;
        gap: .45rem
    }

    .testimonials-struct-v1 .row {
        display: grid;
        grid-template-columns:12rem 1fr;
        gap: .6rem
    }

    .testimonials-struct-v1 .wall {
        columns: 3;
        column-gap: var(--gap)
    }

    .testimonials-struct-v1 blockquote {
        break-inside: avoid;
        margin: 0 0 var(--gap) 0;
        display: grid;
        gap: .4rem
    }

    .testimonials-struct-v1 .slider {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v1 .dots {
        display: flex;
        justify-content: center;
        gap: .4rem
    }

    .testimonials-struct-v1 .dots span {
        padding: .25rem .45rem;
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .testimonials-struct-v1 .grid, .testimonials-struct-v1 .rail, .testimonials-struct-v1 .slider {
            grid-template-columns:1fr 1fr
        }

        .testimonials-struct-v1 .wall {
            columns: 2
        }
    }

    @media (max-width: 680px) {
        .testimonials-struct-v1 .grid, .testimonials-struct-v1 .rail, .testimonials-struct-v1 .slider, .testimonials-struct-v1 .row {
            grid-template-columns:1fr
        }

        .testimonials-struct-v1 .wall {
            columns: 1
        }
    }

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

    .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);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        flex-shrink: 0;
    }

    .header__nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: none;
    }

    .nav__link[href="index.html"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .nav__link[href="index.html"]:hover {
        background-color: var(--bg-primary-hover);
    }

    .nav__cta {
        background-color: var(--bg-accent);
        color: var(--fg-on-accent);
        text-decoration: none;
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-lg);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav__cta:hover,
    .nav__cta:focus-visible {
        background-color: var(--bg-accent-hover);
        outline: none;
    }

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

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

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: calc(var(--space-y) * 2) var(--space-x);
            gap: calc(var(--gap) * 2);
            box-shadow: var(--shadow-lg);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            width: 100%;
        }

        .nav__cta {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eaeaea;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        line-height: 1.6;
        font-style: normal;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-social a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-social a:hover {
        text-decoration: underline;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            order: 2;
        }
        .footer-social {
            order: 3;
        }
    }

.cookie-lv16 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.features-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

    .features-struct-v2 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap)
    }

    .features-struct-v2 h2, .features-struct-v2 h3, .features-struct-v2 p {
        margin: 0
    }

    .features-struct-v2 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

    .features-struct-v2 .grid {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .features-struct-v2 article {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

    .features-struct-v2 .icon {
        min-height: 2rem;
        min-width: 2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--surface-1);
        border-radius: var(--radius-sm)
    }

    .features-struct-v2 a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .features-struct-v2 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v2 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v2 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v2 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

    .features-struct-v2 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .5rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .features-struct-v2 .side img, .features-struct-v2 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v2 .cards {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 .cta {
        display: flex;
        justify-content: flex-start
    }

    .features-struct-v2 .split {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .features-struct-v2 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v2 .layout, .features-struct-v2 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v2 .grid, .features-struct-v2 .cards, .features-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

.plans-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .plans-cv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

    .plans-cv2__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.hiw-canvas-l8 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .hiw-canvas-l8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        align-items: start;
        flex-wrap: wrap;
    }

    .hiw-canvas-l8__media {
        flex: 1 1 18rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-canvas-l8__content {
        flex: 1 1 22rem;
        order: var(--random-number);
    }

    .hiw-canvas-l8__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .hiw-canvas-l8__content p:first-child {
        margin: 0;
        color: var(--neutral-600);
    }

    .hiw-canvas-l8__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .hiw-canvas-l8__stack p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-canvas-l8__notes {
        margin-top: 1rem;
        display: flex;
        gap: .65rem;
        flex-wrap: wrap;
        align-items: center;
    }

    .hiw-canvas-l8__notes strong {
        color: var(--brand);
        margin-right: .25rem;
    }

    .hiw-canvas-l8__notes span {
        display: inline-flex;
        padding: .55rem .8rem;
        border-radius: 999px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .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);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        flex-shrink: 0;
    }

    .header__nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: none;
    }

    .nav__link[href="index.html"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .nav__link[href="index.html"]:hover {
        background-color: var(--bg-primary-hover);
    }

    .nav__cta {
        background-color: var(--bg-accent);
        color: var(--fg-on-accent);
        text-decoration: none;
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-lg);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav__cta:hover,
    .nav__cta:focus-visible {
        background-color: var(--bg-accent-hover);
        outline: none;
    }

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

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

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: calc(var(--space-y) * 2) var(--space-x);
            gap: calc(var(--gap) * 2);
            box-shadow: var(--shadow-lg);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            width: 100%;
        }

        .nav__cta {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eaeaea;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        line-height: 1.6;
        font-style: normal;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-social a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-social a:hover {
        text-decoration: underline;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            order: 2;
        }
        .footer-social {
            order: 3;
        }
    }

.cookie-lv16 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.form-fresh-v3 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .form-fresh-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v3 .band {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v3 .band h2 {
        margin: 0 0 .35rem;
    }

    .form-fresh-v3 .band p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v3 .row {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .form-fresh-v3 label {
        display: grid;
        gap: .3rem;
        min-width: 190px;
        flex: 1 1 220px;
    }

    .form-fresh-v3 span {
        font-size: .84rem;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v3 input {
        padding: .65rem .75rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

    .form-fresh-v3 input:focus {
        outline: 2px solid var(--ring);
        outline-offset: -1px;
    }

    .form-fresh-v3 button {
        padding: .7rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        align-self: end;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .form-fresh-v3 button:hover {
        background: var(--bg-primary-hover);
    }

.map-poster-c7 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .map-poster-c7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.25rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .map-poster-c7__copy {
        flex: 1 1 18rem;
    }

    .map-poster-c7__embed {
        flex: 1 1 24rem;
    }

    .map-poster-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .map-poster-c7__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .map-poster-c7__details {
        margin-top: 1rem;
        display: grid;
        gap: .75rem;
    }

    .map-poster-c7__details div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-poster-c7__details span {
        display: block;
        margin-top: .35rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-poster-c7__embed iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

.contacts-fresh-v2 {
        padding: calc(var(--space-y) * 2.2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .contacts-fresh-v2 .shell {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    }

    .contacts-fresh-v2 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .contacts-fresh-v2 article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v2 .label {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .9rem;
    }

    .contacts-fresh-v2 .value {
        margin: .2rem 0 0;
        font-weight: 700;
    }

    .contacts-fresh-v2 a {
        padding: .5rem .8rem;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    @media (max-width: 700px) {
        .contacts-fresh-v2 article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

    .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);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        flex-shrink: 0;
    }

    .header__nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: none;
    }

    .nav__link[href="index.html"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .nav__link[href="index.html"]:hover {
        background-color: var(--bg-primary-hover);
    }

    .nav__cta {
        background-color: var(--bg-accent);
        color: var(--fg-on-accent);
        text-decoration: none;
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-lg);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav__cta:hover,
    .nav__cta:focus-visible {
        background-color: var(--bg-accent-hover);
        outline: none;
    }

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

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

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: calc(var(--space-y) * 2) var(--space-x);
            gap: calc(var(--gap) * 2);
            box-shadow: var(--shadow-lg);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            width: 100%;
        }

        .nav__cta {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eaeaea;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        line-height: 1.6;
        font-style: normal;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-social a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-social a:hover {
        text-decoration: underline;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            order: 2;
        }
        .footer-social {
            order: 3;
        }
    }

.cookie-lv16 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

    .policy-layout-d .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .policy-layout-d .section-head {
        margin-bottom: 14px;
    }

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

    .policy-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

    .policy-layout-d article p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .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);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        flex-shrink: 0;
    }

    .header__nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: none;
    }

    .nav__link[href="index.html"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .nav__link[href="index.html"]:hover {
        background-color: var(--bg-primary-hover);
    }

    .nav__cta {
        background-color: var(--bg-accent);
        color: var(--fg-on-accent);
        text-decoration: none;
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-lg);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav__cta:hover,
    .nav__cta:focus-visible {
        background-color: var(--bg-accent-hover);
        outline: none;
    }

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

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

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: calc(var(--space-y) * 2) var(--space-x);
            gap: calc(var(--gap) * 2);
            box-shadow: var(--shadow-lg);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            width: 100%;
        }

        .nav__cta {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eaeaea;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        line-height: 1.6;
        font-style: normal;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-social a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-social a:hover {
        text-decoration: underline;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            order: 2;
        }
        .footer-social {
            order: 3;
        }
    }

.cookie-lv16 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

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

    .terms-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--neutral-300);
    }

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

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

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
        color: var(--fg-on-surface);
    }

    .terms-layout-d p, .terms-layout-d li li {
        color: var(--neutral-300);
    }
    .terms-layout-d a {
        color: var(--link);
        text-decoration: none;
    }
    .terms-layout-d a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

    .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);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        flex-shrink: 0;
    }

    .header__nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: none;
    }

    .nav__link[href="index.html"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .nav__link[href="index.html"]:hover {
        background-color: var(--bg-primary-hover);
    }

    .nav__cta {
        background-color: var(--bg-accent);
        color: var(--fg-on-accent);
        text-decoration: none;
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-lg);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav__cta:hover,
    .nav__cta:focus-visible {
        background-color: var(--bg-accent-hover);
        outline: none;
    }

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

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

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: calc(var(--space-y) * 2) var(--space-x);
            gap: calc(var(--gap) * 2);
            box-shadow: var(--shadow-lg);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            width: 100%;
        }

        .nav__cta {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eaeaea;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        line-height: 1.6;
        font-style: normal;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-social a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-social a:hover {
        text-decoration: underline;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            order: 2;
        }
        .footer-social {
            order: 3;
        }
    }

.cookie-lv16 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.thank-mode-a {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .thank-mode-a .box {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }

    .thank-mode-a h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
    }

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

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

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

    .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);
    }

    .header__logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        flex-shrink: 0;
    }

    .header__nav {
        display: flex;
        align-items: center;
        gap: calc(var(--gap) * 2);
    }

    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .nav__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease);
        display: block;
    }

    .nav__link:hover,
    .nav__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: none;
    }

    .nav__link[href="index.html"] {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .nav__link[href="index.html"]:hover {
        background-color: var(--bg-primary-hover);
    }

    .nav__cta {
        background-color: var(--bg-accent);
        color: var(--fg-on-accent);
        text-decoration: none;
        padding: calc(var(--space-y) / 1.5) var(--space-x);
        border-radius: var(--radius-lg);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        white-space: nowrap;
        flex-shrink: 0;
    }

    .nav__cta:hover,
    .nav__cta:focus-visible {
        background-color: var(--bg-accent-hover);
        outline: none;
    }

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

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

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

        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 80%;
            max-width: 300px;
            background-color: var(--surface-1);
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-start;
            padding: calc(var(--space-y) * 2) var(--space-x);
            gap: calc(var(--gap) * 2);
            box-shadow: var(--shadow-lg);
            transition: right var(--anim-duration) var(--anim-ease);
            z-index: 101;
            overflow-y: auto;
        }

        .header__nav.is-active {
            right: 0;
        }

        .nav__list {
            flex-direction: column;
            width: 100%;
            gap: calc(var(--gap) / 2);
        }

        .nav__link {
            padding: var(--space-y) var(--space-x);
            width: 100%;
        }

        .nav__cta {
            width: 100%;
            text-align: center;
            margin-top: auto;
        }

        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

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

        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid #eaeaea;
    }
    .footer-section:last-of-type {
        border-bottom: none;
        padding-bottom: 0;
        justify-content: center;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #555;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #007bff;
    }
    .footer-contacts {
        line-height: 1.6;
        font-style: normal;
    }
    .footer-contacts a {
        color: #0066cc;
        text-decoration: none;
    }
    .footer-social a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-social a:hover {
        text-decoration: underline;
    }
    .legal-links a {
        color: #666;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .footer-disclaimer {
        font-size: 0.8rem;
        color: #777;
        line-height: 1.4;
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }
    @media (max-width: 768px) {
        .footer-section {
            flex-direction: column;
            text-align: center;
            gap: 1.5rem;
        }
        .footer-nav ul {
            justify-content: center;
        }
        .footer-contacts {
            order: 2;
        }
        .footer-social {
            order: 3;
        }
    }

.cookie-lv16 {
        position: fixed;
        left: var(--space-x);
        right: var(--space-x);
        bottom: var(--space-y);
        z-index: 1200;
    }

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

    .cookie-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

    .err-slab-e h1 {
        margin: 0;
        font-size: clamp(32px, 6vw, 56px);
        color: var(--brand);
    }

    .err-slab-e p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }