:root {
  --font-family: "Rubik", sans-serif;
  --font-size-base: 14.8px;
  --line-height-base: 1.49;

  --max-w: 1080px;
  --space-x: 0.9rem;
  --space-y: 1.05rem;
  --gap: 1.15rem;

  --radius-xl: 0.95rem;
  --radius-lg: 0.73rem;
  --radius-md: 0.4rem;
  --radius-sm: 0.21rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.15);
  --shadow-lg: 0 10px 28px rgba(0,0,0,0.19);

  --overlay: rgba(0, 0, 0, 0.65);
  --anim-duration: 230ms;
  --anim-ease: cubic-bezier(0.2,0.8,0.2,1);
  --random-number: 1;

  --brand: #D4A017;
  --brand-contrast: #1A1A1A;
  --accent: #E53935;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #E0E0E0;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #1A1A1A;

  --bg-page: #FFFFFF;
  --fg-on-page: #1A1A1A;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #2C2C2C;

  --surface-1: #FFFFFF;
  --surface-2: #F5F5F5;
  --fg-on-surface: #1A1A1A;
  --border-on-surface: #E0E0E0;

  --surface-light: #FAFAFA;
  --fg-on-surface-light: #424242;
  --border-on-surface-light: #EEEEEE;

  --bg-primary: #FFC107;
  --fg-on-primary: #1A1A1A;
  --bg-primary-hover: #FFB300;
  --ring: rgba(212, 160, 23, 0.4);

  --bg-accent: #E53935;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #C62828;

  --link: #1565C0;
  --link-hover: #0D47A1;

  --gradient-hero: linear-gradient(135deg, #2C2C2C 0%, #424242 100%);
  --gradient-accent: linear-gradient(90deg, #FFC107 0%, #FF9800 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;}

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
}

.header-contact .contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.header-contact .contact-link:hover,
.header-contact .contact-link:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
}

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

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) 0;
    color: var(--link);
    text-decoration: none;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    outline: none;
}

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.burger-menu span {
    display: block;
    height: 2px;
    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) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        margin: 0;
    }

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

    .nav-link {
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
    }

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

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

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

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

    .header-top {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
  }
  .footer-contacts address {
    display: inline;
    font-style: normal;
  }
  .footer-contacts span {
    display: inline-block;
    margin: 0 0.5rem;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  #currentYear {
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts span {
      display: block;
      margin: 0.3rem 0;
    }
    .footer-legal-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal-links a {
      margin: 0;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

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

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.wp-lang-switcher-v11 {
        position: fixed;
        right: clamp(14px, 2vw, 24px);
        bottom: clamp(14px, 2vw, 24px);
        z-index: 99999;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: 8px;
        min-width: 120px;
    }

    .wp-lang-switcher-v11__head {
        width: 100%;
        border: 0;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        padding: 8px 10px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 12px;
        font-weight: 700;
    }

    .wp-lang-switcher-v11__head-text {
        opacity: 0.75;
    }

    .wp-lang-switcher-v11__head-value {
        border-radius: 999px;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        padding: 3px 8px;
        min-width: 36px;
        text-align: center;
    }

    .wp-lang-switcher-v11__items {
        margin-top: 8px;
        display: grid;
        gap: 6px;
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v11__items.open {
        opacity: 1;
        pointer-events: auto;
    }

    .wp-lang-switcher-v11__items button,
    .wp-lang-switcher-v11__items a {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: 7px 10px;
        font-size: 12px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v11__items button:hover,
    .wp-lang-switcher-v11__items a:hover {
        background: var(--accent);
        border-color: transparent;
        color: var(--accent-contrast);
    }

.nfintro-v12 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .nfintro-v12__shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
        gap: calc(var(--gap) * 2);
        align-items: stretch;
    }

    .nfintro-v12__media {
        padding: var(--gap);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
    }

    .nfintro-v12__media img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .nfintro-v12__copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

    .nfintro-v12__copy h1 {
        margin: .2rem 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.1;
    }

    .nfintro-v12__copy span {
        color: var(--fg-on-surface-light);
    }

    .nfintro-v12__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .nfintro-v12__stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .nfintro-v12__stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .nfintro-v12__actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .nfintro-v12__actions a {
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        background: var(--surface-1);
    }

    .nfintro-v12__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 940px) {
        .nfintro-v12__shell {grid-template-columns: 1fr;}
        .nfintro-v12__stats {grid-template-columns: 1fr;}
    }

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

    .values-chain-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .values-chain-c7__head {
        margin-bottom: 1.1rem;
    }

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

    .values-chain-c7__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-0);
    }

    .values-chain-c7__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-300);
    }

    .values-chain-c7__list {
        display: grid;
        gap: .8rem;
    }

    .values-chain-c7__list article {
        display: grid;
        grid-template-columns: 2.7rem 1fr 2rem;
        gap: .8rem;
        align-items: center;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-chain-c7__list b {
        display: grid;
        place-items: center;
        width: 2.7rem;
        height: 2.7rem;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: bold;
    }

    .values-chain-c7__list h3 {
        margin: 0;
        color: var(--neutral-0);
    }

    .values-chain-c7__list p {
        margin: .35rem 0 0;
        color: var(--neutral-300);
    }

    .values-chain-c7__list i {
        font-style: normal;
        text-align: right;
        color: var(--brand);
        font-size: 1.2rem;
    }

.visual-ledger-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .visual-ledger-l2__head {
        margin-bottom: 1rem;
        text-align: center;
    }

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

    .visual-ledger-l2__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

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

    .visual-ledger-l2__deck figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .visual-ledger-l2__deck figcaption {
        padding: 1rem;
    }

    .visual-ledger-l2__deck strong {
        color: var(--brand);
    }

    .visual-ledger-l2__deck h3 {
        margin: .5rem 0 .35rem;
    }

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

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--colored.why-choose--v2 {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

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

        .why-choose__row::after {
            display: none;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
}

.header-contact .contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.header-contact .contact-link:hover,
.header-contact .contact-link:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
}

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

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) 0;
    color: var(--link);
    text-decoration: none;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    outline: none;
}

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.burger-menu span {
    display: block;
    height: 2px;
    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) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        margin: 0;
    }

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

    .nav-link {
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
    }

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

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

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

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

    .header-top {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
  }
  .footer-contacts address {
    display: inline;
    font-style: normal;
  }
  .footer-contacts span {
    display: inline-block;
    margin: 0 0.5rem;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  #currentYear {
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts span {
      display: block;
      margin: 0.3rem 0;
    }
    .footer-legal-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal-links a {
      margin: 0;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

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

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.post-list {

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

    .post-list .post-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-list .post-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .post-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .post-list .post-list__categories {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .post-list .post-list__category {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-light);
        color: var(--fg-on-page);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__category:hover {
        background: var(--bg-primary);
        color: var(--fg-on-page) fff;
    }

    .post-list .post-list__list {
        display: flex;
        flex-direction: column;
        gap: var(--space-x);
    }

    .post-list .post-list__item {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2vw, 24px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-list .post-list__item:hover {
        box-shadow: var(--shadow-md);
        transform: translateX(4px);
    }

    .post-list .post-list__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }

    .post-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .post-list h3 a {
        color: var(--fg-on-page);
        text-decoration: none;
    }

    .post-list h3 a:hover {
        color: var(--bg-primary);
    }

    .post-list p {
        color: var(--neutral-600);
        margin: 0;
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
}

.header-contact .contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.header-contact .contact-link:hover,
.header-contact .contact-link:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
}

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

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) 0;
    color: var(--link);
    text-decoration: none;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    outline: none;
}

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.burger-menu span {
    display: block;
    height: 2px;
    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) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        margin: 0;
    }

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

    .nav-link {
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
    }

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

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

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

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

    .header-top {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
  }
  .footer-contacts address {
    display: inline;
    font-style: normal;
  }
  .footer-contacts span {
    display: inline-block;
    margin: 0 0.5rem;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  #currentYear {
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts span {
      display: block;
      margin: 0.3rem 0;
    }
    .footer-legal-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal-links a {
      margin: 0;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

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

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.post-item {

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

    .post-item .post-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .post-item .post-item__header {
        margin-bottom: var(--space-y);
    }

    .post-item h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__meta {
        display: flex;
        gap: 1rem;
        font-size: 0.875rem;
    }

    .post-item .post-item__content {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comments {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
    }

    .post-item .post-item__comments h3 {
        margin: 0 0 1.5rem;
        color: var(--fg-on-page);
    }

    .post-item .post-item__comments-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__comment {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: var(--radius-md);
    }

    .post-item .post-item__comment-author {
        font-weight: 600;
        color: var(--fg-on-page);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
    }

    .post-item .post-item__reply-form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .post-item .post-item__reply-form textarea {
        padding: 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--fg-on-page);
        outline: none;
        min-height: 100px;

    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--fg-on-page);
        color: var(--bg-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .post-item .post-item__reply-form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
}

.header-contact .contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.header-contact .contact-link:hover,
.header-contact .contact-link:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
}

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

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) 0;
    color: var(--link);
    text-decoration: none;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    outline: none;
}

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.burger-menu span {
    display: block;
    height: 2px;
    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) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        margin: 0;
    }

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

    .nav-link {
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
    }

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

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

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

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

    .header-top {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
  }
  .footer-contacts address {
    display: inline;
    font-style: normal;
  }
  .footer-contacts span {
    display: inline-block;
    margin: 0 0.5rem;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  #currentYear {
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts span {
      display: block;
      margin: 0.3rem 0;
    }
    .footer-legal-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal-links a {
      margin: 0;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

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

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.post-item--colored-v5 {
    padding: 64px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.post-item__inner {
    max-width: 720px;
    margin: 0 auto;
}

.post-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.8);
    box-shadow: var(--shadow-lg);
}

.post-item__category {
    margin: 0 0 6px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--bg-accent);
}

.post-item__header h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.post-item__meta {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.post-item__lead {
    margin: 12px 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
}

.post-item__body {
    font-size: 0.92rem;
    color: var(--neutral-300);
    line-height: 1.7;
}
.post-item__body a {
    color: var(--link);
    text-decoration: underline;
}
.post-item__body a:hover {
    color: var(--link-hover);
}

.identity-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .identity-lv6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-lv6__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .identity-lv6__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

    .identity-lv6__body p {
        margin: 0 0 10px;
        color: var(--neutral-600);
    }

    .identity-lv6__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

    @media (max-width: 820px) {
        .identity-lv6__wrap {
            grid-template-columns: 1fr;
        }
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
}

.header-contact .contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.header-contact .contact-link:hover,
.header-contact .contact-link:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
}

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

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) 0;
    color: var(--link);
    text-decoration: none;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    outline: none;
}

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.burger-menu span {
    display: block;
    height: 2px;
    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) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        margin: 0;
    }

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

    .nav-link {
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
    }

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

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

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

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

    .header-top {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
  }
  .footer-contacts address {
    display: inline;
    font-style: normal;
  }
  .footer-contacts span {
    display: inline-block;
    margin: 0 0.5rem;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  #currentYear {
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts span {
      display: block;
      margin: 0.3rem 0;
    }
    .footer-legal-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal-links a {
      margin: 0;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

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

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.article-list {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .article-list .article-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .article-list .article-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
    }

    .article-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .article-list .article-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .article-list .article-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .article-list .article-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .article-list .article-list__grid {
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 768px) {
        .article-list .article-list__grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }

    @media (min-width: 1024px) {
        .article-list .article-list__grid {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }

    .article-list .article-list__card {
        background: var(--surface-light);
        border: 1px solid var(--ring);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .article-list .article-list__card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .article-list .article-list__image img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .article-list .article-list__content {
        padding: clamp(16px, 2vw, 24px);
    }

    .article-list .article-list__date {
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .article-list h3 {
        margin: 0.5rem 0;
        font-size: clamp(18px, 2.2vw, 22px);
    }

    .article-list h3 a {
        text-decoration: none;
        color: var(--fg-on-surface);
    }

    .article-list h3 a:hover {
        color: var(--bg-primary);
    }

    .article-list p {
        color: var(--neutral-600);
        margin: 0.5rem 0 1rem;
    }

    .article-list .article-list__read-more {
        color: var(--bg-primary);
        text-decoration: none;
        font-weight: 600;
    }

    .article-list .article-list__read-more:hover {
        text-decoration: underline;
    }

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

    .faq-fresh-v3 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .faq-fresh-v3 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .faq-fresh-v3 .list {
        display: grid;
        gap: var(--gap);
        padding: 0;
        margin: 0;
        counter-reset: faqnum;
    }

    .faq-fresh-v3 li {
        list-style: none;
        padding: 1rem 1rem 1rem 3rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        position: relative;
        background: var(--surface-2);
    }

    .faq-fresh-v3 li::before {
        counter-increment: faqnum;
        content: counter(faqnum);
        position: absolute;
        left: 1rem;
        top: 1rem;
        width: 1.4rem;
        height: 1.4rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-size: .78rem;
        font-weight: 700;
    }

    .faq-fresh-v3 h3 {
        margin: 0 0 .45rem;
    }

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

.education-struct-v6 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

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

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

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

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

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

    .education-struct-v6 .grid a, .education-struct-v6 .tiers a, .education-struct-v6 .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-v6 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
}

.header-contact .contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.header-contact .contact-link:hover,
.header-contact .contact-link:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
}

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

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) 0;
    color: var(--link);
    text-decoration: none;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    outline: none;
}

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.burger-menu span {
    display: block;
    height: 2px;
    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) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        margin: 0;
    }

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

    .nav-link {
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
    }

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

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

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

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

    .header-top {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
  }
  .footer-contacts address {
    display: inline;
    font-style: normal;
  }
  .footer-contacts span {
    display: inline-block;
    margin: 0 0.5rem;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  #currentYear {
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts span {
      display: block;
      margin: 0.3rem 0;
    }
    .footer-legal-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal-links a {
      margin: 0;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

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

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nftouch-v11 {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

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

    .nftouch-v11__lead {
        margin: 10px 0 14px;
        opacity: .92;
    }

    .nftouch-v11__lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .nftouch-v11__lane article {
        min-width: 250px;
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 12px;
    }

    .nftouch-v11__lane h3 {
        margin: 0 0 8px;
    }

    .nftouch-v11__lane p {
        margin: 0 0 8px;
    }

    .nftouch-v11__lane a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .nftouch-v11__main {
        display: inline-block;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }
    .nftouch-v11__form input::placeholder {
        color: rgba(255, 255, 255, 0.7);
    }

.support-lv1 {
        padding: clamp(50px, 7vw, 88px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .support-lv1__head {
        margin-bottom: 14px;
    }

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

    .support-lv1__head p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .support-lv1__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

    .support-lv1__grid article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .support-lv1__grid h3 {
        margin: 0 0 6px;
    }

    .support-lv1__grid p {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .support-lv1__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-lv1__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-lv1__grid {
            grid-template-columns: 1fr;
        }
    }

.nfform-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

    .nfform-v9__form {
        max-width: 860px;
        margin: 0 auto;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .25);
        background: rgba(255, 255, 255, .08);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v9__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .nfform-v9 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v9 input,
    .nfform-v9 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .15);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v9 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfform-v9__grid {
            grid-template-columns: 1fr;
        }
    }

.contact-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .contact-layout-e .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .contact-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .contact-layout-e aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

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

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
}

.header-contact .contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.header-contact .contact-link:hover,
.header-contact .contact-link:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
}

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

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) 0;
    color: var(--link);
    text-decoration: none;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    outline: none;
}

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.burger-menu span {
    display: block;
    height: 2px;
    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) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        margin: 0;
    }

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

    .nav-link {
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
    }

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

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

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

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

    .header-top {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
  }
  .footer-contacts address {
    display: inline;
    font-style: normal;
  }
  .footer-contacts span {
    display: inline-block;
    margin: 0 0.5rem;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  #currentYear {
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts span {
      display: block;
      margin: 0.3rem 0;
    }
    .footer-legal-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal-links a {
      margin: 0;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

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

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

    .terms-layout-e .section-head {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .terms-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-600);
    }

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

    .terms-layout-e h4 {
        margin: 10px 0 6px;
    }

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

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
}

.header-contact .contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.header-contact .contact-link:hover,
.header-contact .contact-link:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
}

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

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) 0;
    color: var(--link);
    text-decoration: none;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    outline: none;
}

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.burger-menu span {
    display: block;
    height: 2px;
    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) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        margin: 0;
    }

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

    .nav-link {
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
    }

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

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

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

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

    .header-top {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
  }
  .footer-contacts address {
    display: inline;
    font-style: normal;
  }
  .footer-contacts span {
    display: inline-block;
    margin: 0 0.5rem;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  #currentYear {
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts span {
      display: block;
      margin: 0.3rem 0;
    }
    .footer-legal-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal-links a {
      margin: 0;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

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

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

    .policy-layout-e .section-head {
        margin-bottom: 16px;
        text-align: center;
    }

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

    .policy-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-100);
    }

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
}

.header-contact .contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.header-contact .contact-link:hover,
.header-contact .contact-link:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
}

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

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) 0;
    color: var(--link);
    text-decoration: none;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    outline: none;
}

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.burger-menu span {
    display: block;
    height: 2px;
    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) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        margin: 0;
    }

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

    .nav-link {
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
    }

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

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

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

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

    .header-top {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
  }
  .footer-contacts address {
    display: inline;
    font-style: normal;
  }
  .footer-contacts span {
    display: inline-block;
    margin: 0 0.5rem;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  #currentYear {
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts span {
      display: block;
      margin: 0.3rem 0;
    }
    .footer-legal-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal-links a {
      margin: 0;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

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

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

    .thank-mode-b h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
        color: var(--brand);
    }

    .thank-mode-b p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .thank-mode-b a {
        display: inline-block;
        margin-top: 18px;
        padding: 11px 18px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.site-header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
}

.header-contact .contact-link {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.5) var(--space-x);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
}

.header-contact .contact-link:hover,
.header-contact .contact-link:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
}

.header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
}

.main-nav {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
    position: relative;
}

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

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) * 0.75) 0;
    color: var(--link);
    text-decoration: none;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
    color: var(--link-hover);
    outline: none;
}

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

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

.burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
}

.burger-menu span {
    display: block;
    height: 2px;
    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) {
    .burger-menu {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-1);
        flex-direction: column;
        padding: calc(var(--space-y) * 2) var(--space-x);
        gap: 0;
        box-shadow: var(--shadow-lg);
        transition: right var(--anim-duration) var(--anim-ease);
        z-index: 99;
        margin: 0;
    }

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

    .nav-link {
        padding: var(--space-y) 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        width: 100%;
    }

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

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

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

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

    .header-top {
        padding: calc(var(--space-y) * 0.75) var(--space-x);
    }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eee;
  }
  .footer-section {
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #222;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #555;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #000;
    text-decoration: underline;
  }
  .footer-contacts {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #666;
  }
  .footer-contacts address {
    display: inline;
    font-style: normal;
  }
  .footer-contacts span {
    display: inline-block;
    margin: 0 0.5rem;
  }
  .footer-contacts a {
    color: #0066cc;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    margin-bottom: 1rem;
  }
  .footer-legal-links a {
    color: #666;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #333;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
  }
  #currentYear {
    font-weight: bold;
  }

  @media (max-width: 768px) {
    .footer-nav ul {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-contacts span {
      display: block;
      margin: 0.3rem 0;
    }
    .footer-legal-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-legal-links a {
      margin: 0;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

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

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

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

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nf404-v8 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nf404-v8__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        padding: clamp(28px, 4vw, 46px);
        box-shadow: var(--shadow-md);
    }

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

    .nf404-v8 p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

    .nf404-v8 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }