:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 15.9px;
  --line-height-base: 1.38;

  --max-w: 1320px;
  --space-x: 1.8rem;
  --space-y: 1.5rem;
  --gap: 2.28rem;

  --radius-xl: 1.2rem;
  --radius-lg: 1rem;
  --radius-md: 0.66rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 1px 7px rgba(0,0,0,0.13);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.16);
  --shadow-lg: 0 20px 62px rgba(0,0,0,0.2);

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

  --brand: #0b3d2e;
  --brand-contrast: #ffffff;
  --accent: #00b894;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f0f4f3;
  --neutral-300: #b0c4bc;
  --neutral-600: #5a7a6e;
  --neutral-800: #1e3b32;
  --neutral-900: #0a1f18;

  --bg-page: #fafcfb;
  --fg-on-page: #1a2e26;

  --bg-alt: #e8f5f0;
  --fg-on-alt: #0b3d2e;

  --surface-1: #ffffff;
  --surface-2: #f5f9f7;
  --fg-on-surface: #1a2e26;
  --border-on-surface: #d0e0d8;

  --surface-light: #ffffff;
  --fg-on-surface-light: #1a2e26;
  --border-on-surface-light: #e0ece6;

  --bg-primary: #008b6e;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #007a5f;
  --ring: #00b894;

  --bg-accent: #00b894;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #00a381;

  --link: #008b6e;
  --link-hover: #006b54;

  --gradient-hero: linear-gradient(135deg, #0b3d2e 0%, #008b6e 100%);
  --gradient-accent: linear-gradient(135deg, #00b894 0%, #008b6e 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: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #1a1a1a);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #2d6a4f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #2d6a4f);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .contact-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--fg-on-surface, #1a1a1a);
  }
  .contact-label {
    color: var(--neutral-600, #6b7280);
  }
  .contact-phone {
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-phone:hover {
    text-decoration: underline;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary, #2d6a4f);
    color: var(--fg-on-primary, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    line-height: var(--line-height-base, 1.5);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover, #1b4332);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #1a1a1a);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      padding: 0 var(--space-x, 1rem);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-right {
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
      position: static;
      box-shadow: none;
      border: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts ul li a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-copy p {
    margin: 5px 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin: 10px auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 15px;
    }
    .footer-contacts ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .bottom-row {
      flex-direction: column;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.intro-slab-l2 {
        padding: clamp(3.6rem, 8vw, 6.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .intro-slab-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 1rem;
    }

    .intro-slab-l2__main {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
    }

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

    .intro-slab-l2__main h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.3rem, 5vw, 4rem);
        line-height: 1.03;
    }

    .intro-slab-l2__main strong {
        display: block;
        margin-top: .8rem;
        color: var(--brand);
    }

    .intro-slab-l2__fact {
        margin-top: 1rem;
        padding: .85rem .95rem;
        border-left: 3px solid var(--bg-primary);
        background: var(--surface-1);
    }

    .intro-slab-l2__side {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        display: grid;
        align-content: center;
    }

    .intro-slab-l2__side span {
        color: var(--brand);
        font-weight: 700;
    }

    .intro-slab-l2__side p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .intro-slab-l2__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .intro-slab-l2__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
        background: var(--surface-1);
    }

    .intro-slab-l2__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 860px) {
        .intro-slab-l2__wrap {
            grid-template-columns: 1fr;
        }
    }

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .about-struct-v5 h2, .about-struct-v5 h3, .about-struct-v5 p {
        margin: 0
    }

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

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

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

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

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

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

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

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

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

    .social-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 420ms var(--anim-ease);
        min-height: 170px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

.blog-list {

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

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

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

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

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

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

    .blog-list .blog-list__card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

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

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

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #1a1a1a);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #2d6a4f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #2d6a4f);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .contact-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--fg-on-surface, #1a1a1a);
  }
  .contact-label {
    color: var(--neutral-600, #6b7280);
  }
  .contact-phone {
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-phone:hover {
    text-decoration: underline;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary, #2d6a4f);
    color: var(--fg-on-primary, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    line-height: var(--line-height-base, 1.5);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover, #1b4332);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #1a1a1a);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      padding: 0 var(--space-x, 1rem);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-right {
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
      position: static;
      box-shadow: none;
      border: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts ul li a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-copy p {
    margin: 5px 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin: 10px auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 15px;
    }
    .footer-contacts ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .bottom-row {
      flex-direction: column;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.blog-list {

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

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

    .blog-list .blog-list__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .blog-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

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

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

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

    .blog-list .blog-list__card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-md);
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

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

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

    .blog-list .blog-list__content {
        padding: clamp(16px, 2vw, 24px);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

.recommendations-split {
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .recommendations-split__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .recommendations-split__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .recommendations-split__card:nth-child(1) .recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .recommendations-split__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .recommendations-split__link::after {
        content: '->';
    }

    .recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .recommendations-split__card {
            grid-column: span 6;
        }

        .recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .recommendations-split__card:nth-child(1) .recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #1a1a1a);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #2d6a4f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #2d6a4f);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .contact-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--fg-on-surface, #1a1a1a);
  }
  .contact-label {
    color: var(--neutral-600, #6b7280);
  }
  .contact-phone {
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-phone:hover {
    text-decoration: underline;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary, #2d6a4f);
    color: var(--fg-on-primary, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    line-height: var(--line-height-base, 1.5);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover, #1b4332);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #1a1a1a);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      padding: 0 var(--space-x, 1rem);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-right {
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
      position: static;
      box-shadow: none;
      border: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts ul li a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-copy p {
    margin: 5px 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin: 10px auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 15px;
    }
    .footer-contacts ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .bottom-row {
      flex-direction: column;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.blog-item {

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

    .blog-item .blog-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .blog-item .blog-item__c {
            grid-template-columns: 1fr 300px;
        }
    }

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

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

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

.articles--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

.articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.articles__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
}

.articles__badge {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(55,65,81,0.9);
}

.articles__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.articles__card p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #1a1a1a);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #2d6a4f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #2d6a4f);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .contact-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--fg-on-surface, #1a1a1a);
  }
  .contact-label {
    color: var(--neutral-600, #6b7280);
  }
  .contact-phone {
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-phone:hover {
    text-decoration: underline;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary, #2d6a4f);
    color: var(--fg-on-primary, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    line-height: var(--line-height-base, 1.5);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover, #1b4332);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #1a1a1a);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      padding: 0 var(--space-x, 1rem);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-right {
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
      position: static;
      box-shadow: none;
      border: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts ul li a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-copy p {
    margin: 5px 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin: 10px auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 15px;
    }
    .footer-contacts ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .bottom-row {
      flex-direction: column;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.blog-item {

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

    .blog-item .blog-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .blog-item .blog-item__c {
            grid-template-columns: 1fr 300px;
        }
    }

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

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

    .blog-item .blog-item__meta {
        display: flex;
        gap: 1rem;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .blog-item .blog-item__content {
        line-height: 1.8;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__related {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-sm);
    }

    .blog-item .blog-item__related h3 {
        margin: 0 0 1rem;
        font-size: 1.25rem;
        color: var(--fg-on-primary);
    }

    .blog-item .blog-item__related-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-item .blog-item__related-item a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .blog-item .blog-item__related-item a:hover {
        text-decoration: underline;
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #1a1a1a);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #2d6a4f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #2d6a4f);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .contact-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--fg-on-surface, #1a1a1a);
  }
  .contact-label {
    color: var(--neutral-600, #6b7280);
  }
  .contact-phone {
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-phone:hover {
    text-decoration: underline;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary, #2d6a4f);
    color: var(--fg-on-primary, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    line-height: var(--line-height-base, 1.5);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover, #1b4332);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #1a1a1a);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      padding: 0 var(--space-x, 1rem);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-right {
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
      position: static;
      box-shadow: none;
      border: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts ul li a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-copy p {
    margin: 5px 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin: 10px auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 15px;
    }
    .footer-contacts ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .bottom-row {
      flex-direction: column;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

    .blogitem-fresh-v1 .meta {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .86rem;
    }

    .blogitem-fresh-v1 h1 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
        line-height: 1.1;
    }

    .blogitem-fresh-v1 .lead {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: 1.05rem;
    }

    .blogitem-fresh-v1 .cover {
        width: 100%;
        aspect-ratio: 16/9;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .blogitem-fresh-v1 .content {
        display: grid;
        gap: .85rem;
    }

    .blogitem-fresh-v1 .content p {
        margin: 0;
        color: var(--fg-on-surface);
    }

.articles--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

.articles__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.articles__card {
    background: rgba(15,23,42,0.9);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
}

.articles__badge {
    display: inline-block;
    margin-bottom: 6px;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    background: rgba(15,23,42,0.95);
    border: 1px solid rgba(55,65,81,0.9);
}

.articles__card h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.articles__card p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #1a1a1a);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #2d6a4f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #2d6a4f);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .contact-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--fg-on-surface, #1a1a1a);
  }
  .contact-label {
    color: var(--neutral-600, #6b7280);
  }
  .contact-phone {
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-phone:hover {
    text-decoration: underline;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary, #2d6a4f);
    color: var(--fg-on-primary, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    line-height: var(--line-height-base, 1.5);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover, #1b4332);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #1a1a1a);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      padding: 0 var(--space-x, 1rem);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-right {
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
      position: static;
      box-shadow: none;
      border: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts ul li a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-copy p {
    margin: 5px 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin: 10px auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 15px;
    }
    .footer-contacts ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .bottom-row {
      flex-direction: column;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .support-lv4__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-lv4__wrap article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-lv4__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

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

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

.recommendations-split {
        background: linear-gradient(135deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .recommendations-split__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .recommendations-split__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .recommendations-split__card:nth-child(1) .recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .recommendations-split__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .recommendations-split__link::after {
        content: '->';
    }

    .recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .recommendations-split__card {
            grid-column: span 6;
        }

        .recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .recommendations-split__card:nth-child(1) .recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #1a1a1a);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #2d6a4f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #2d6a4f);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .contact-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--fg-on-surface, #1a1a1a);
  }
  .contact-label {
    color: var(--neutral-600, #6b7280);
  }
  .contact-phone {
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-phone:hover {
    text-decoration: underline;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary, #2d6a4f);
    color: var(--fg-on-primary, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    line-height: var(--line-height-base, 1.5);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover, #1b4332);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #1a1a1a);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      padding: 0 var(--space-x, 1rem);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-right {
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
      position: static;
      box-shadow: none;
      border: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts ul li a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-copy p {
    margin: 5px 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin: 10px auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 15px;
    }
    .footer-contacts ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .bottom-row {
      flex-direction: column;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 72px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface-light);
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(14px, 2.2vw, 18px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s;
        box-shadow: var(--shadow-lg);
        position: relative;
    }

    .connect .connect__item:not(:last-of-type):before {
        position: absolute;
        content: '';
        top: 50%;
        right: -32px;
        transform: translatey(-50%);
        width: 32px;
        height: 1px;
        background: var(--accent);
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
    }

    .connect .connect__icon {
        font-size: clamp(44px, 7.5vw, 68px);
        width: clamp(90px, 13vw, 130px);
        height: clamp(90px, 13vw, 130px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__icon {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .connect .connect__item span {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

.contact-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--surface-1));
        color: var(--fg-on-page);
    }

    .contact-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .contact-layout-c .section-head {
        margin-bottom: 18px;
        text-align: center;
    }

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

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

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #1a1a1a);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #2d6a4f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #2d6a4f);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .contact-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--fg-on-surface, #1a1a1a);
  }
  .contact-label {
    color: var(--neutral-600, #6b7280);
  }
  .contact-phone {
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-phone:hover {
    text-decoration: underline;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary, #2d6a4f);
    color: var(--fg-on-primary, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    line-height: var(--line-height-base, 1.5);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover, #1b4332);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #1a1a1a);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      padding: 0 var(--space-x, 1rem);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-right {
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
      position: static;
      box-shadow: none;
      border: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts ul li a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-copy p {
    margin: 5px 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin: 10px auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 15px;
    }
    .footer-contacts ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .bottom-row {
      flex-direction: column;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.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: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #1a1a1a);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #2d6a4f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #2d6a4f);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .contact-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--fg-on-surface, #1a1a1a);
  }
  .contact-label {
    color: var(--neutral-600, #6b7280);
  }
  .contact-phone {
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-phone:hover {
    text-decoration: underline;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary, #2d6a4f);
    color: var(--fg-on-primary, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    line-height: var(--line-height-base, 1.5);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover, #1b4332);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #1a1a1a);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      padding: 0 var(--space-x, 1rem);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-right {
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
      position: static;
      box-shadow: none;
      border: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts ul li a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-copy p {
    margin: 5px 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin: 10px auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 15px;
    }
    .footer-contacts ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .bottom-row {
      flex-direction: column;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #1a1a1a);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #2d6a4f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #2d6a4f);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .contact-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--fg-on-surface, #1a1a1a);
  }
  .contact-label {
    color: var(--neutral-600, #6b7280);
  }
  .contact-phone {
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-phone:hover {
    text-decoration: underline;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary, #2d6a4f);
    color: var(--fg-on-primary, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    line-height: var(--line-height-base, 1.5);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover, #1b4332);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #1a1a1a);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      padding: 0 var(--space-x, 1rem);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-right {
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
      position: static;
      box-shadow: none;
      border: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts ul li a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-copy p {
    margin: 5px 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin: 10px auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 15px;
    }
    .footer-contacts ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .bottom-row {
      flex-direction: column;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

    .nfthank-v7__box {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
    }

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

    .nfthank-v7 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nfthank-v7 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: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0 var(--space-x, 1rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y, 0.75rem) 0;
    gap: var(--gap, 1rem);
  }
  .header-left {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-menu a {
    text-decoration: none;
    color: var(--fg-on-surface, #1a1a1a);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--brand, #2d6a4f);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-menu a:hover {
    color: var(--brand, #2d6a4f);
  }
  .nav-menu a:hover::after {
    width: 100%;
  }
  .header-right {
    display: flex;
    align-items: center;
    gap: var(--gap, 1rem);
  }
  .contact-block {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--fg-on-surface, #1a1a1a);
  }
  .contact-label {
    color: var(--neutral-600, #6b7280);
  }
  .contact-phone {
    color: var(--brand, #2d6a4f);
    text-decoration: none;
    font-weight: 600;
  }
  .contact-phone:hover {
    text-decoration: underline;
  }
  .btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--bg-primary, #2d6a4f);
    color: var(--fg-on-primary, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    line-height: var(--line-height-base, 1.5);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
  }
  .btn-action:hover {
    background: var(--bg-primary-hover, #1b4332);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: var(--radius-sm, 4px);
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg-on-surface, #1a1a1a);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.2s) var(--anim-ease, ease), opacity var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      padding: 0 var(--space-x, 1rem);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
    }
    .nav-menu.open {
      max-height: 300px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-menu a {
      display: block;
      padding: 0.5rem 0;
    }
    .nav-menu a::after {
      display: none;
    }
    .contact-block {
      display: none;
    }
    .btn-action {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-right {
      gap: 0.5rem;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: block !important;
      max-height: none !important;
      overflow: visible !important;
      padding: 0 !important;
      position: static;
      box-shadow: none;
      border: none;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 40px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .top-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .middle-row {
    border-bottom: 1px solid #333;
    padding-bottom: 20px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0a500;
    text-decoration: none;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f0a500;
  }
  .footer-contacts ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  .footer-contacts ul li {
    font-size: 0.95rem;
  }
  .footer-contacts ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-contacts ul li a:hover {
    color: #f0a500;
  }
  .footer-links {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #f0a500;
  }
  .footer-copy p {
    margin: 5px 0;
    font-size: 0.85rem;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    max-width: 800px;
    margin: 10px auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
      margin-top: 15px;
    }
    .footer-contacts ul {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .bottom-row {
      flex-direction: column;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

    .cookie-cv11__actions {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-end;
    }

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

    .nf404-v12__box {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: clamp(28px, 4vw, 46px);
    }

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

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

    .nf404-v12 a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: 999px;
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }