:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 14.5px;
  --line-height-base: 1.24;

  --max-w: 1020px;
  --space-x: 0.46rem;
  --space-y: 0.87rem;
  --gap: 0.45rem;

  --radius-xl: 0.77rem;
  --radius-lg: 0.65rem;
  --radius-md: 0.42rem;
  --radius-sm: 0.16rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.06);
  --shadow-lg: 0 14px 22px rgba(0,0,0,0.08);

  --overlay: rgba(0, 0, 0, 0.4);
  --anim-duration: 100ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 2;

  --brand: #4A7C59;
  --brand-contrast: #FFFFFF;
  --accent: #E9B44C;
  --accent-contrast: #1A1A1A;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #E9ECEF;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

  --bg-page: #FFFFFF;
  --fg-on-page: #212529;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #E9ECEF;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #343A40;
  --border-on-surface-light: rgba(233, 236, 239, 0.7);

  --bg-primary: #4A7C59;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #3A6548;
  --ring: rgba(74, 124, 89, 0.4);

  --bg-accent: rgba(233, 180, 76, 0.1);
  --fg-on-accent: #8B5A2B;
  --bg-accent-hover: #D4A243;

  --link: #4A7C59;
  --link-hover: #3A6548;

  --gradient-hero: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  --gradient-accent: linear-gradient(90deg, #4A7C59 0%, #E9B44C 100%);

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

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

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) 0;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
    }

    .burger {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
      z-index: 99;
      border-top: 1px solid var(--border-on-surface);
      gap: 0.5rem;
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0 0 0.5rem;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 2rem;
        margin-top: 1rem;
        text-align: center;
    }
    .footer-social {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #2c3e50;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #95a5a6;
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 1rem auto;
    }
    .footer-copyright {
        color: #95a5a6;
        font-size: 0.85rem;
        margin: 1rem 0 0;
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.intro-mosaic-c15 {
        padding: clamp(3.9rem, 9vw, 7rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .intro-mosaic-c15__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .intro-mosaic-c15__hero {
        flex: 1 1 24rem;
    }

    .intro-mosaic-c15__aside {
        flex: 1 1 18rem;
    }

    .intro-mosaic-c15__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .intro-mosaic-c15__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.8rem);
        line-height: 1.01;
    }

    .intro-mosaic-c15__hero span {
        display: block;
        margin-top: .9rem;
        color: rgba(255, 255, 255, .88);
        max-width: 40rem;
    }

    .intro-mosaic-c15__buttons {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-mosaic-c15__btn {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__btn--primary {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

    .intro-mosaic-c15__aside img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__stats {
        margin-top: .85rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .intro-mosaic-c15__stats div {
        padding: .85rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-mosaic-c15__stats strong, .intro-mosaic-c15__stats span {
        display: block;
    }

    .intro-mosaic-c15__stats span {
        margin-top: .25rem;
        color: rgba(255, 255, 255, .82);
    }

.values-papers-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-papers-l6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-papers-l6__head {
        margin-bottom: 1.1rem;
    }

    .values-papers-l6__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        letter-spacing: .1em;
        text-transform: uppercase;
    }

    .values-papers-l6__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-papers-l6__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-papers-l6__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px dashed var(--border-on-surface-light);
    }

    .values-papers-l6__grid div {
        font-size: 1.25rem;
    }

    .values-papers-l6__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .values-papers-l6__grid p {
        margin: 0;
        color: var(--neutral-600);
    }

    .values-papers-l6__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.capabilities-alt {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 8vw, 100px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-alt::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
        opacity: 0.1;
    }

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

    .capabilities-alt .capabilities-alt__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 80px);
    }

    .capabilities-alt h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
    }

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

    .capabilities-alt .capabilities-alt__flow {
        display: flex;
        flex-direction: column;
        gap: clamp(40px, 5vw, 64px);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__item {
        display: flex;
        align-items: center;
        gap: clamp(24px, 4vw, 48px);
        transform: translateX(-50px);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) {
        flex-direction: row-reverse;
        transform: translateX(50px);
    }

    .capabilities-alt .capabilities-alt__connector {
        flex-shrink: 0;
        width: 60px;
        height: 60px;
        background: var(--accent);
        border-radius: 50%;
        position: relative;
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% {
            box-shadow: 0 0 0 8px rgba(255, 107, 53, 0.2);
        }
        50% {
            box-shadow: 0 0 0 16px rgba(255, 107, 53, 0.1);
        }
    }

    .capabilities-alt .capabilities-alt__connector::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 24px;
        height: 24px;
        background: var(--fg-on-primary);
        border-radius: 50%;
    }

    .capabilities-alt .capabilities-alt__bubble {
        flex: 1;
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 36px);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .capabilities-alt .capabilities-alt__bubble::before {
        content: '';
        position: absolute;
        top: 50%;
        width: 20px;
        height: 20px;
        background: var(--surface-light);
        transform: translateY(-50%) rotate(45deg);
    }

    .capabilities-alt .capabilities-alt__item:nth-child(odd) .capabilities-alt__bubble::before {
        left: -10px;
    }

    .capabilities-alt .capabilities-alt__item:nth-child(even) .capabilities-alt__bubble::before {
        right: -10px;
    }

    .capabilities-alt .capabilities-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: 36px;
        margin-bottom: 1rem;
    }

    .capabilities-alt .capabilities-alt__bubble h3 {
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        margin: 0 0 0.75rem;
        color: var(--brand);
    }

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

.visual-board-l4 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .visual-board-l4__head {
        margin-bottom: 1rem;
        text-align: center;
    }

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

    .visual-board-l4__head p {
        margin: .6rem 0 0;
        color: var(--neutral-600);
    }

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

    .visual-board-l4__grid figure {
        margin: 0;
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .visual-board-l4__grid figcaption strong {
        color: var(--brand);
    }

    .visual-board-l4__grid h3 {
        margin: .45rem 0 .35rem;
    }

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

    .visual-board-l4__grid img {
        display: block;
        width: 100%;
        height: 12rem;
        object-fit: cover;
        border-radius: var(--radius-md);
        margin-top: .85rem;
    }

.next-c-1 {
        padding: clamp(3.3rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .next-c-1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-c-1__mast {
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.1rem;
    }

    .next-c-1__mast p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__mast h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-c-1__mast a {
        display: inline-flex;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

    .next-c-1__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .next-c-1__list article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .next-c-1__list i {
        font-style: normal;
        display: inline-flex;
        width: 2.3rem;
        height: 2.3rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

    .next-c-1__list h3 {
        margin: .8rem 0 .35rem;
        font-size: 1.04rem;
    }

    .next-c-1__list p {
        margin: 0;
        color: rgba(255, 255, 255, 0.82);
    }

    .next-c-1__list a {
        display: inline-block;
        margin-top: .75rem;
        color: var(--bg-accent);
        text-decoration: none;
        font-weight: 600;
    }

    /* macro-bg:next-c-1__wrap */
    .next-c-1 {
        overflow: hidden;
    }

    .next-c-1__wrap {
        background-image: linear-gradient(rgba(17, 24, 39, .28), rgba(17, 24, 39, .28)), url('https://images.pexels.com/photos/5824893/pexels-photo-5824893.jpeg?auto=compress&cs=tinysrgb&w=800');
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: clamp(2.5rem, 5vw, 4rem) var(--space-x);
    }

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

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) 0;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
    }

    .burger {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
      z-index: 99;
      border-top: 1px solid var(--border-on-surface);
      gap: 0.5rem;
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0 0 0.5rem;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 2rem;
        margin-top: 1rem;
        text-align: center;
    }
    .footer-social {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #2c3e50;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #95a5a6;
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 1rem auto;
    }
    .footer-copyright {
        color: #95a5a6;
        font-size: 0.85rem;
        margin: 1rem 0 0;
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) 0;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
    }

    .burger {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
      z-index: 99;
      border-top: 1px solid var(--border-on-surface);
      gap: 0.5rem;
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0 0 0.5rem;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 2rem;
        margin-top: 1rem;
        text-align: center;
    }
    .footer-social {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #2c3e50;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #95a5a6;
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 1rem auto;
    }
    .footer-copyright {
        color: #95a5a6;
        font-size: 0.85rem;
        margin: 1rem 0 0;
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.post-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        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-primary);
    }

    .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-primary);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__content h2 {
        color: var(--fg-on-primary);
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .post-item .post-item__content p {
        margin-bottom: 1rem;
    }

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

    .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-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        color: var(--fg-on-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
        color: var(--fg-on-primary);
        opacity: 0.8;
    }

    .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: none;
        outline: none;
        min-height: 100px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--fg-on-surface);
        font-family: var(--font-family);
    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        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);
    }

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

.author__inner {
    max-width: 520px;
    margin: 0 auto;
}

.author__name {
    margin: 0 0 4px;
    font-size: 1.05rem;
}

.author__role {
    margin: 0 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.author__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

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

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) 0;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
    }

    .burger {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
      z-index: 99;
      border-top: 1px solid var(--border-on-surface);
      gap: 0.5rem;
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0 0 0.5rem;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 2rem;
        margin-top: 1rem;
        text-align: center;
    }
    .footer-social {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #2c3e50;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #95a5a6;
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 1rem auto;
    }
    .footer-copyright {
        color: #95a5a6;
        font-size: 0.85rem;
        margin: 1rem 0 0;
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

.post-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(24px,4vw,32px);
}

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

.post-item__lead {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) 0;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
    }

    .burger {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
      z-index: 99;
      border-top: 1px solid var(--border-on-surface);
      gap: 0.5rem;
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0 0 0.5rem;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 2rem;
        margin-top: 1rem;
        text-align: center;
    }
    .footer-social {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #2c3e50;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #95a5a6;
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 1rem auto;
    }
    .footer-copyright {
        color: #95a5a6;
        font-size: 0.85rem;
        margin: 1rem 0 0;
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.post-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        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-primary);
    }

    .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-primary);
        margin-bottom: var(--space-y);
    }

    .post-item .post-item__content h2 {
        color: var(--fg-on-primary);
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .post-item .post-item__content p {
        margin-bottom: 1rem;
    }

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

    .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-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-text {
        color: var(--fg-on-primary);
        margin-bottom: 0.5rem;
    }

    .post-item .post-item__comment-date {
        font-size: 0.875rem;
        color: var(--fg-on-primary);
        opacity: 0.8;
    }

    .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: none;
        outline: none;
        min-height: 100px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--fg-on-surface);
        font-family: var(--font-family);
    }

    .post-item .post-item__reply-form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

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

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

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) 0;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
    }

    .burger {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
      z-index: 99;
      border-top: 1px solid var(--border-on-surface);
      gap: 0.5rem;
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0 0 0.5rem;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 2rem;
        margin-top: 1rem;
        text-align: center;
    }
    .footer-social {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #2c3e50;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #95a5a6;
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 1rem auto;
    }
    .footer-copyright {
        color: #95a5a6;
        font-size: 0.85rem;
        margin: 1rem 0 0;
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.article-list {

        color: var(--fg-on-page);
        background: var(--bg-page);
        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-page);
    }

    .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(--bg-page);
        color: var(--fg-on-page);
        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) fff;
        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;
    }

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

.clarifications-c2 {

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

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

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

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

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

    .clarifications-c2__rail {
        position: relative;
        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-lg);
        overflow: hidden;
    }

    /* Световой “луч” двигается постоянно */
    .clarifications-c2__beam {
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: translateX(-120%);
        animation: c2Beam 6.2s linear infinite;
        pointer-events: none;
    }

    @keyframes c2Beam {
        0% {
            transform: translateX(-120%)
        }
        55% {
            transform: translateX(160%)
        }
        100% {
            transform: translateX(160%)
        }
    }

    .clarifications-c2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-c2__row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c2__row.is-hot {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.12);
    }

    .clarifications-c2__tag {
        align-self: start;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-weight: 800;
        white-space: nowrap;
        color: rgba(255, 255, 255, .92);
    }

    .clarifications-c2__q {
        font-weight: 900;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-c2__a {
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    @media (max-width: 720px) {
        .clarifications-c2__row {
            grid-template-columns:1fr
        }

        .clarifications-c2__tag {
            justify-self: start
        }
    }

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

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

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) 0;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
    }

    .burger {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
      z-index: 99;
      border-top: 1px solid var(--border-on-surface);
      gap: 0.5rem;
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0 0 0.5rem;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 2rem;
        margin-top: 1rem;
        text-align: center;
    }
    .footer-social {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #2c3e50;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #95a5a6;
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 1rem auto;
    }
    .footer-copyright {
        color: #95a5a6;
        font-size: 0.85rem;
        margin: 1rem 0 0;
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.form-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .form-layout-a .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

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

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

    .form-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 66ch;
        opacity: .92;
    }

    .form-layout-a .card {
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .1);
    }

    .form-layout-a label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

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

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

    .form-layout-a button {
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

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

    .contact-layout-e .row a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-layout-e .row a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

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

.map-shell-c4 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .map-shell-c4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-shell-c4__band {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .map-shell-c4__band h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-900);
    }

    .map-shell-c4__band p {
        margin: 0;
        color: var(--neutral-600);
    }

    .map-shell-c4__shell {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .map-shell-c4__shell iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
    }

    .map-shell-c4__cards {
        display: grid;
        gap: .75rem;
    }

    .map-shell-c4__cards article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
    }

    .map-shell-c4__cards strong {
        color: var(--neutral-900);
        display: block;
        margin-bottom: 0.25rem;
    }

    .map-shell-c4__cards p {
        margin: .35rem 0 0;
        color: var(--neutral-800);
    }

    .map-shell-c4__cards a {
        color: var(--link);
        text-decoration: none;
    }

    .map-shell-c4__cards a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    @media (max-width: 840px) {
        .map-shell-c4__shell {
            grid-template-columns: 1fr;
        }
    }

.support-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .support-lv6__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

    .support-lv6__table {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .support-lv6__table article {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
    }

    .support-lv6__table article:last-child {
        border-bottom: 0;
    }

    .support-lv6__table h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

    @media (max-width: 700px) {
        .support-lv6__table article {
            grid-template-columns: 1fr;
        }
    }

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

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) 0;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
    }

    .burger {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
      z-index: 99;
      border-top: 1px solid var(--border-on-surface);
      gap: 0.5rem;
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0 0 0.5rem;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 2rem;
        margin-top: 1rem;
        text-align: center;
    }
    .footer-social {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #2c3e50;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #95a5a6;
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 1rem auto;
    }
    .footer-copyright {
        color: #95a5a6;
        font-size: 0.85rem;
        margin: 1rem 0 0;
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

    .terms-layout-b .grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    }

    .terms-layout-b article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
        background: var(--bg-alt);
    }

    .terms-layout-b h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

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

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) 0;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
    }

    .burger {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
      z-index: 99;
      border-top: 1px solid var(--border-on-surface);
      gap: 0.5rem;
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0 0 0.5rem;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 2rem;
        margin-top: 1rem;
        text-align: center;
    }
    .footer-social {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #2c3e50;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #95a5a6;
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 1rem auto;
    }
    .footer-copyright {
        color: #95a5a6;
        font-size: 0.85rem;
        margin: 1rem 0 0;
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

  .logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) 0;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .main-nav {
      padding: 0;
    }

    .burger {
      display: flex;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      padding: var(--space-y) var(--space-x);
      box-shadow: var(--shadow-md);
      z-index: 99;
      border-top: 1px solid var(--border-on-surface);
      gap: 0.5rem;
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      display: block;
      padding: 0.75rem 1rem;
      border-radius: var(--radius-sm);
    }

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

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

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

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        font-size: 0.95rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    @media (min-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
                "brand nav contacts"
                "legal legal legal";
        }
        .footer-brand { grid-area: brand; }
        .footer-nav { grid-area: nav; }
        .footer-contacts { grid-area: contacts; }
        .footer-legal { grid-area: legal; }
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        color: #666;
        line-height: 1.5;
        margin: 0;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
    }
    .footer-contacts p {
        margin: 0 0 0.5rem;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        border-top: 1px solid #dee2e6;
        padding-top: 2rem;
        margin-top: 1rem;
        text-align: center;
    }
    .footer-social {
        margin-bottom: 1rem;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-social a {
        color: #7f8c8d;
        text-decoration: none;
    }
    .footer-social a:hover {
        color: #3498db;
    }
    .footer-links {
        margin-bottom: 1rem;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .footer-links a:hover {
        color: #2c3e50;
        text-decoration: underline;
    }
    .footer-disclaimer {
        color: #95a5a6;
        font-size: 0.85rem;
        line-height: 1.5;
        max-width: 800px;
        margin: 1rem auto;
    }
    .footer-copyright {
        color: #95a5a6;
        font-size: 0.85rem;
        margin: 1rem 0 0;
    }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: end;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.err-slab-f {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

    .err-slab-f 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;
    }