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

  --max-w: 940px;
  --space-x: 1.33rem;
  --space-y: 1.5rem;
  --gap: 0.83rem;

  --radius-xl: 0.88rem;
  --radius-lg: 0.49rem;
  --radius-md: 0.41rem;
  --radius-sm: 0.27rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 16px rgba(0,0,0,0.11);
  --shadow-lg: 0 10px 26px rgba(0,0,0,0.13);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 410ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 1;

  --brand: #2D6A4F;
  --brand-contrast: #FFFFFF;
  --accent: #E07C3C;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F7F7F7;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

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

  --bg-alt: #F3F4F6;
  --fg-on-alt: #374151;

  --surface-1: #FFFFFF;
  --surface-2: #F9FAFB;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #4B5563;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #2D6A4F;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #245B43;
  --ring: #2D6A4F;

  --bg-accent: #FDF2E9;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #C96A2E;

  --link: #2D6A4F;
  --link-hover: #245B43;

  --gradient-hero: linear-gradient(135deg, #2D6A4F 0%, #40916C 100%);
  --gradient-accent: linear-gradient(135deg, #E07C3C 0%, #F4A261 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);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2c3e50);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--accent, #e74c3c);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 16px);
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-item {
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .header-bottom {
    background: var(--bg-alt, #f8f9fa);
    border-top: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 24px);
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 48px;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: var(--space-x, 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

  .nav-link:hover {
    color: var(--accent, #e74c3c);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      padding: var(--space-y, 12px) var(--space-x, 16px);
    }

    .header-contact {
      width: 100%;
      justify-content: flex-start;
      gap: 12px;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 var(--space-x, 16px);
      min-height: 48px;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 8px 0;
    }

    .nav-link {
      padding: 12px 16px;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #e67e22;
  }
  .footer-contacts p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #e67e22;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.hero-arc-v6 {
        padding: calc(var(--space-y) * 3) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .hero-arc-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: calc(var(--gap) * 1.5);
    }

    .hero-arc-v6 .top {
        display: grid;
        grid-template-columns:1fr minmax(260px, .82fr);
        gap: var(--gap);
        align-items: stretch;
    }

    .hero-arc-v6 .copy {
        padding: calc(var(--space-y) * 1.2);
        border-radius: var(--radius-xl);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        display: grid;
        align-content: center;
        gap: var(--gap);
    }

    .hero-arc-v6 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.3vw, 3.5rem);
        line-height: 1.1;
    }

    .hero-arc-v6 .subtitle {
        margin: 0;
        max-width: 50ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v6 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .hero-arc-v6 .actions a {
        padding: .64rem .95rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .hero-arc-v6 .actions a:hover {
        background: var(--bg-primary-hover);
    }

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

    .hero-arc-v6 .image {
        overflow: hidden;
        border-radius: var(--radius-xl);
    }

    .hero-arc-v6 img {
        width: 100%;
        height: 100%;
        min-height: 300px;
        object-fit: cover;
        display: block;
    }

    .hero-arc-v6 .bottom {
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v6 .bottom article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        box-shadow: var(--shadow-sm);
    }

    .hero-arc-v6 .bottom p {
        margin: .3rem 0 0;
        opacity: .92;
    }

    @media (max-width: 960px) {
        .hero-arc-v6 .top {
            grid-template-columns:1fr;
        }

        .hero-arc-v6 .bottom {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

.next-signal-c7 {
        padding: clamp(3.7rem, 8vw, 6.3rem) var(--space-x);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .next-signal-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 1rem;
        align-items: center;
    }

    .next-signal-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

    .next-signal-c7__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .next-signal-c7__copy span {
        display: block;
        margin-top: .85rem;

    }

    .next-signal-c7__stack {
        display: grid;
        gap: .7rem;
    }

    .next-signal-c7__stack a {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        padding: .9rem 1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .next-signal-c7__stack span {
        color: rgba(255, 255, 255, .8);
    }

    .next-signal-c7__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .next-signal-c7__wrap {
            grid-template-columns: 1fr;
        }
    }

.index-recommendations-light {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-light__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-recommendations-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-light__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations-light__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(248, 225, 231, 0.45), transparent 55%);
        pointer-events: none;
    }

    .index-recommendations-light__card h3 {
        margin: 0 0 10px;
        position: relative;
        z-index: 1;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-light__card p {
        margin: 0 0 14px;
        position: relative;
        z-index: 1;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-light__cta {
        position: relative;
        z-index: 1;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .index-recommendations-light__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations-light__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.why-choose {

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

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

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

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

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

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

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

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

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

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

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

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

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

        pointer-events: none;
    }

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2c3e50);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--accent, #e74c3c);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 16px);
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-item {
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .header-bottom {
    background: var(--bg-alt, #f8f9fa);
    border-top: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 24px);
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 48px;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: var(--space-x, 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

  .nav-link:hover {
    color: var(--accent, #e74c3c);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      padding: var(--space-y, 12px) var(--space-x, 16px);
    }

    .header-contact {
      width: 100%;
      justify-content: flex-start;
      gap: 12px;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 var(--space-x, 16px);
      min-height: 48px;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 8px 0;
    }

    .nav-link {
      padding: 12px 16px;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #e67e22;
  }
  .footer-contacts p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #e67e22;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.gallery--colored-v5 {

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

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

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

.gallery__header p {
    margin: 0;
    color: var(--neutral-300);
}

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

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

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.identity-nv11 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--brand));
        color: var(--fg-on-primary);
    }

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

    .identity-nv11__hero {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.28);
    }

    .identity-nv11__hero h2 {
        margin: 0;
        font-size: clamp(28px, 4.5vw, 46px);
    }

    .identity-nv11__hero p {
        margin: 8px 0 0;
        opacity: .92;
        max-width: 72ch;
    }

    .identity-nv11__content {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-nv11__copy span {
        display: block;
        margin: 0 0 9px;
        opacity: .92;
    }

    .identity-nv11__list h3 {
        margin: 0 0 9px;
        font-size: 1rem;
    }

    .identity-nv11__list ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-nv11__list li {
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.14);
        padding: 9px 11px;
    }

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

.timeline--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.timeline__inner {
    max-width: 640px;
    margin: 0 auto;
}

.timeline__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.timeline__list--light {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.timeline__row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.timeline__row:first-child {
    border-top: none;
}

.timeline__row-time {
    font-size: 0.8rem;
    color: var(--neutral-600);
}

.timeline__row-label {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2c3e50);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--accent, #e74c3c);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 16px);
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-item {
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .header-bottom {
    background: var(--bg-alt, #f8f9fa);
    border-top: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 24px);
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 48px;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: var(--space-x, 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

  .nav-link:hover {
    color: var(--accent, #e74c3c);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      padding: var(--space-y, 12px) var(--space-x, 16px);
    }

    .header-contact {
      width: 100%;
      justify-content: flex-start;
      gap: 12px;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 var(--space-x, 16px);
      min-height: 48px;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 8px 0;
    }

    .nav-link {
      padding: 12px 16px;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #e67e22;
  }
  .footer-contacts p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #e67e22;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hiw-column-l5 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .hiw-column-l5__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1.25rem;
    }

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

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

    .hiw-column-l5__copy {
        margin: .85rem 0 0;
        color: var(--neutral-600);
    }

    .hiw-column-l5__side {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .hiw-column-l5__side img {
        display: block;
        width: 100%;
        border-radius: var(--radius-lg);
    }

    .hiw-column-l5__side strong {
        display: block;
        margin-top: .9rem;
        color: var(--brand);
    }

    .hiw-column-l5__item {
        margin-top: .65rem;
        padding: .75rem .85rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
    }

    @media (max-width: 840px) {
        .hiw-column-l5__wrap {
            grid-template-columns: 1fr;
        }
    }

.plans-cv1 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

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

    .plans-cv1__head p {
        margin: 8px 0 0;
        opacity: .9;
        max-width: 72ch;
    }

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

    .plans-cv1__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.36);
        color: var(--fg-on-page);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

    .plans-cv1__line h3 {
        margin: 0;
    }

    .plans-cv1__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .plans-cv1__price {
        margin: 10px 0 6px;
        font-size: 1.45rem;
        font-weight: 800;
        color: var(--brand);
    }

    .plans-cv1__desc {
        margin: 0;
        color: var(--neutral-600);
    }

    .plans-cv1__card ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

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

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2c3e50);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--accent, #e74c3c);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 16px);
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-item {
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .header-bottom {
    background: var(--bg-alt, #f8f9fa);
    border-top: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 24px);
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 48px;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: var(--space-x, 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

  .nav-link:hover {
    color: var(--accent, #e74c3c);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      padding: var(--space-y, 12px) var(--space-x, 16px);
    }

    .header-contact {
      width: 100%;
      justify-content: flex-start;
      gap: 12px;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 var(--space-x, 16px);
      min-height: 48px;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 8px 0;
    }

    .nav-link {
      padding: 12px 16px;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #e67e22;
  }
  .footer-contacts p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #e67e22;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

    .nfform-v7 p {
        margin: 0 0 2px;
        opacity: .92;
    }

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

    .nfform-v7 input:not([type='checkbox']),
    .nfform-v7 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .14);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v7__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nfform-v7 button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

    .map-cards-l2__head {
        text-align: center;
        margin-bottom: 1rem;
    }

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

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

    .map-cards-l2__frame {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .map-cards-l2__frame iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    .map-cards-l2__grid {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .map-cards-l2__grid article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-cards-l2__grid p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    @media (max-width: 640px) {
        .map-cards-l2__grid {
            grid-template-columns: 1fr;
        }
    }

.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);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2c3e50);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--accent, #e74c3c);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 16px);
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-item {
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .header-bottom {
    background: var(--bg-alt, #f8f9fa);
    border-top: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 24px);
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 48px;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: var(--space-x, 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

  .nav-link:hover {
    color: var(--accent, #e74c3c);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      padding: var(--space-y, 12px) var(--space-x, 16px);
    }

    .header-contact {
      width: 100%;
      justify-content: flex-start;
      gap: 12px;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 var(--space-x, 16px);
      min-height: 48px;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 8px 0;
    }

    .nav-link {
      padding: 12px 16px;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #e67e22;
  }
  .footer-contacts p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #e67e22;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .policy-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .policy-layout-f .section-head {
        margin-bottom: 16px;
    }

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-f .head {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2c3e50);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--accent, #e74c3c);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 16px);
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-item {
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .header-bottom {
    background: var(--bg-alt, #f8f9fa);
    border-top: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 24px);
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 48px;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: var(--space-x, 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

  .nav-link:hover {
    color: var(--accent, #e74c3c);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      padding: var(--space-y, 12px) var(--space-x, 16px);
    }

    .header-contact {
      width: 100%;
      justify-content: flex-start;
      gap: 12px;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 var(--space-x, 16px);
      min-height: 48px;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 8px 0;
    }

    .nav-link {
      padding: 12px 16px;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #e67e22;
  }
  .footer-contacts p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #e67e22;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.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);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2c3e50);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--accent, #e74c3c);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 16px);
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-item {
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .header-bottom {
    background: var(--bg-alt, #f8f9fa);
    border-top: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 24px);
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 48px;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: var(--space-x, 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

  .nav-link:hover {
    color: var(--accent, #e74c3c);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      padding: var(--space-y, 12px) var(--space-x, 16px);
    }

    .header-contact {
      width: 100%;
      justify-content: flex-start;
      gap: 12px;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 var(--space-x, 16px);
      min-height: 48px;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 8px 0;
    }

    .nav-link {
      padding: 12px 16px;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #e67e22;
  }
  .footer-contacts p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #e67e22;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.thank-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

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

    .thank-mode-c p {
        margin: 12px 0 0;
        color: var(--neutral-800);
    }

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }

header {
    background: var(--surface-1, #ffffff);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.1));
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #2c3e50);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

  .logo:hover {
    color: var(--accent, #e74c3c);
  }

  .header-contact {
    display: flex;
    gap: var(--gap, 16px);
    align-items: center;
    flex-wrap: wrap;
  }

  .contact-item {
    font-size: 0.875rem;
    color: var(--neutral-600, #666);
    white-space: nowrap;
  }

  .header-bottom {
    background: var(--bg-alt, #f8f9fa);
    border-top: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 24px);
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 48px;
  }

  .burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    position: absolute;
    right: var(--space-x, 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }

  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800, #333);
    border-radius: var(--radius-sm, 4px);
    transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 24px);
    align-items: center;
  }

  .nav-link {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: 1rem;
    font-weight: 500;
    padding: 12px 0;
    display: block;
    position: relative;
    transition: color var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

  .nav-link:hover {
    color: var(--accent, #e74c3c);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-direction: column;
      align-items: flex-start;
      padding: var(--space-y, 12px) var(--space-x, 16px);
    }

    .header-contact {
      width: 100%;
      justify-content: flex-start;
      gap: 12px;
    }

    .header-bottom {
      justify-content: flex-start;
      padding: 0 var(--space-x, 16px);
      min-height: 48px;
    }

    .burger {
      display: flex;
    }

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 99;
    }

    .nav.open {
      max-height: 300px;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 8px 0;
    }

    .nav-link {
      padding: 12px 16px;
      width: 100%;
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    }

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

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

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .footer-brand .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e67e22;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #bdc3c7;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #e67e22;
  }
  .footer-policy {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-policy a:hover {
    color: #e67e22;
  }
  .footer-contacts p {
    margin: 5px 0;
    font-size: 0.95rem;
  }
  .footer-contacts a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    color: #e67e22;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #95a5a6;
    font-style: italic;
    margin-top: 10px;
    line-height: 1.4;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
    }
  }

.cookie-lv4 {
        position: fixed;
        inset: 0 0 auto 0;
        z-index: 1200;
        background: var(--surface-2);
        border-bottom: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
    }

    .cookie-lv4__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 10px var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv4__inner span {
        color: var(--neutral-600);
        margin-left: 6px;
    }

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

    .cookie-lv4__actions a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--link);
        padding: 6px 10px;
    }

    .cookie-lv4__actions a[data-choice='accept'] {
        background: var(--bg-primary);
        border-color: var(--bg-primary);
        color: var(--fg-on-primary);
    }

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

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

    .err-slab-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
        text-decoration: none;
    }