:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 15.7px;
  --line-height-base: 1.79;

  --max-w: 1180px;
  --space-x: 2.09rem;
  --space-y: 1.5rem;
  --gap: 0.86rem;

  --radius-xl: 1.31rem;
  --radius-lg: 1rem;
  --radius-md: 0.7rem;
  --radius-sm: 0.4rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 22px rgba(0,0,0,0.1);

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

  --brand: #1a73e8;
  --brand-contrast: #ffffff;
  --accent: #f59e0b;
  --accent-contrast: #1e293b;

  --neutral-0: #ffffff;
  --neutral-100: #f1f5f9;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #f8fafc;
  --fg-on-page: #0f172a;

  --bg-alt: #e2e8f0;
  --fg-on-alt: #1e293b;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #0f172a;
  --border-on-surface: #e2e8f0;

  --surface-light: #ffffff;
  --fg-on-surface-light: #1e293b;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #1a73e8;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1557b0;
  --ring: #1a73e8;

  --bg-accent: #fbbf24;
  --fg-on-accent: #1e293b;
  --bg-accent-hover: #d97706;

  --link: #1a73e8;
  --link-hover: #1557b0;

  --gradient-hero: linear-gradient(135deg, #1a73e8 0%, #0f172a 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 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);
    padding: 0 var(--space-x, 1rem);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-list a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    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 {
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      display: none;
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 0;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
    .burger {
      display: none !important;
    }
  }

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;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .brand {
    margin-bottom: 20px;
  }
  .contacts {
    margin-top: 10px;
  }
  .contact-item {
    margin: 8px 0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    margin: 20px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}
.next-ux28{padding:clamp(56px,8vw,96px) clamp(16px,4vw,40px);background:var(--neutral-0);color:var(--neutral-900)}
.next-ux28__wrap{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1.1fr .9fr;gap:12px}
.next-ux28__main{border:1px solid var(--neutral-300);border-radius:var(--radius-lg);padding:14px;background:var(--neutral-100)}
.next-ux28__main h2{margin:0;font-size:clamp(28px,4vw,42px)}
.next-ux28__main p{margin:8px 0 10px;color:var(--neutral-600)}
.next-ux28__main a{display:inline-flex;padding:9px 12px;border-radius:var(--radius-sm);background:var(--bg-primary);color:var(--fg-on-primary);text-decoration:none}
.next-ux28__notes{border:1px solid var(--neutral-300);border-radius:var(--radius-lg);padding:14px;background:var(--neutral-100)}
.next-ux28__notes p{margin:0 0 8px;color:var(--neutral-800)}
.next-ux28__notes p:last-child{margin-bottom:0}
@media(max-width:820px){.next-ux28__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);
        }
    }

.touch-bulletin {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .touch-bulletin .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .touch-bulletin .touch-header {
        margin-bottom: 14px;
    }

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

    .touch-bulletin .touch-header p {
        margin: 10px 0 0;
        color: var(--neutral-600);
    }

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

    .touch-bulletin li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 8px;
        align-items: center;
    }

    .touch-bulletin span {
        color: var(--neutral-600);
        font-size: .85rem;
    }

    .touch-bulletin a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .touch-bulletin .cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

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

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

    .visual-wave-c5__head {
        text-align: center;
        margin-bottom: 1rem;
    }

    .visual-wave-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

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

    .visual-wave-c5__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .visual-wave-c5__image {
        overflow: hidden;
    }

    .visual-wave-c5__image img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .visual-wave-c5__grid figure:hover img {
        transform: scale(1.05);
    }

    .visual-wave-c5__grid figcaption {
        padding: 1rem;
    }

    .visual-wave-c5__grid small {
        color: rgba(255, 255, 255, .76);
    }

    .visual-wave-c5__grid h3 {
        margin: .45rem 0 .35rem;
    }

    .visual-wave-c5__grid p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 1rem);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-list a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    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 {
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      display: none;
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 0;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
    .burger {
      display: none !important;
    }
  }

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;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .brand {
    margin-bottom: 20px;
  }
  .contacts {
    margin-top: 10px;
  }
  .contact-item {
    margin: 8px 0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    margin: 20px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.about-mission {

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

    .about-mission .about-mission__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__grid {
        display: grid;
        gap: var(--space-x);
        grid-template-columns: 1fr 1fr;
    }

    .about-mission p {
        color: var(--neutral-600);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__grid {
            grid-template-columns: 1fr;
        }
    }

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

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

    .identity-ux22 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

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

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

    .identity-ux22__head h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
    }

    .identity-ux22__head span {
        color: var(--neutral-600);
    }

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

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

    .identity-ux22__grid i {
        display: inline-block;
        font-style: normal;
        color: var(--link);
        margin-bottom: 6px;
    }

    .identity-ux22__grid h3 {
        margin: 0;
        color: var(--neutral-900);
    }

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

    .identity-ux22__grid small {
        color: var(--neutral-800);
        font-weight: 600;
    }

.gallery--colored-v7 {
    padding: 58px 20px;
    background: var(--gradient-hero);
    color: var(--gradien-contrast);
}

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

.gallery-v7__head {
    margin-bottom: 20px;
    text-align: center;
}

.gallery-v7__head h2 {
    margin: 0 0 8px;
    font-size: clamp(24px, 4vw, 34px);
    color: #ffffff;
}

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

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

.gallery-v7__item {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.08);
}

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

.gallery-v7__item figcaption {
    padding: 10px 12px;
    font-size: 0.92rem;
    color: var(--neutral-100);
}

@media (max-width: 640px) {
    .gallery--colored-v7 {
        padding: 46px 14px;
    }

    .gallery-v7__item img {
        height: 160px;
    }
}

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 1rem);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-list a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    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 {
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      display: none;
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 0;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
    .burger {
      display: none !important;
    }
  }

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;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .brand {
    margin-bottom: 20px;
  }
  .contacts {
    margin-top: 10px;
  }
  .contact-item {
    margin: 8px 0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    margin: 20px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

    .hiw-ux10 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .hiw-ux10__wrap {
        max-width: 60rem;
        margin: 0 auto;
    }

    .hiw-ux10__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .hiw-ux10__head p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .hiw-ux10__rows {
        display: grid;
        gap: .8rem;
    }

    .hiw-ux10__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .hiw-ux10__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        color: var(--brand);
        box-shadow: var(--shadow-sm);
    }

    .hiw-ux10__rows h3 {
        margin: 0;
    }

    .hiw-ux10__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

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

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

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

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

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

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

    .features-struct-v6 .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-v6 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-v6 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 1rem);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-list a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    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 {
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      display: none;
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 0;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
    .burger {
      display: none !important;
    }
  }

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;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .brand {
    margin-bottom: 20px;
  }
  .contacts {
    margin-top: 10px;
  }
  .contact-item {
    margin: 8px 0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    margin: 20px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

    .nfcontacts-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .nfcontacts-v8__intro p {
        margin: 0;
        color: var(--neutral-600);
    }

    .nfcontacts-v8__intro h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--neutral-900);
    }

    .nfcontacts-v8__intro span {
        color: var(--neutral-600);
    }

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

    .nfcontacts-v8__cards article {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        padding: 14px;
    }

    .nfcontacts-v8__cards h3 {
        margin: 0 0 6px;
    }

    .nfcontacts-v8__cards p {
        margin: 0;
        font-weight: 700;
    }

    .nfcontacts-v8__cards small {
        display: block;
        margin-top: 5px;
        color: var(--neutral-600);
    }

    .nfcontacts-v8__cards a {
        display: inline-block;
        margin-top: 8px;
        color: var(--link);
        text-decoration: none;
    }

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        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(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

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

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        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 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

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

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

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

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

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

    .map-panel-l5__top p {
        margin: .55rem 0 0;
        color: var(--neutral-600);
    }

    .map-panel-l5__tags {
        color: var(--brand);
    }

    .map-panel-l5__grid {
        display: grid;
        grid-template-columns: 1.15fr .85fr;
        gap: 1rem;
    }

    .map-panel-l5__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

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

    .map-panel-l5__list {
        display: grid;
        gap: .75rem;
    }

    .map-panel-l5__list div {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .map-panel-l5__list span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

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

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

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

    .form-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .82;
    }

    .form-fresh-v5 .panel {
        display: grid;
        gap: .7rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .form-fresh-v5 label {
        display: grid;
        gap: .3rem;
    }

    .form-fresh-v5 span {
        font-size: .82rem;
        opacity: .85;
    }

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

    .form-fresh-v5 button {
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 1rem);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-list a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    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 {
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      display: none;
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 0;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
    .burger {
      display: none !important;
    }
  }

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;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .brand {
    margin-bottom: 20px;
  }
  .contacts {
    margin-top: 10px;
  }
  .contact-item {
    margin: 8px 0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    margin: 20px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

    .terms-layout-c .section-head {
        margin-bottom: 14px;
    }

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

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

    .terms-layout-c details {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        margin-bottom: 10px;
    }

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 1rem);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-list a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    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 {
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      display: none;
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 0;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
    .burger {
      display: none !important;
    }
  }

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;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .brand {
    margin-bottom: 20px;
  }
  .contacts {
    margin-top: 10px;
  }
  .contact-item {
    margin: 8px 0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    margin: 20px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

    .terms-layout-a article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        margin-bottom: 12px;
    }

    .terms-layout-a h3, .terms-layout-a h4 {
        margin: 0 0 8px;
    }

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 1rem);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-list a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    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 {
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      display: none;
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 0;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
    .burger {
      display: none !important;
    }
  }

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;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .brand {
    margin-bottom: 20px;
  }
  .contacts {
    margin-top: 10px;
  }
  .contact-item {
    margin: 8px 0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    margin: 20px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    padding: 0 var(--space-x, 1rem);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1rem);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.5rem 0;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
    position: relative;
  }
  .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--brand, #1a73e8);
    transition: width var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--brand, #1a73e8);
  }
  .nav-list a:hover::after {
    width: 100%;
  }
  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.25rem;
    background: var(--brand, #1a73e8);
    color: var(--brand-contrast, #ffffff);
    border-radius: var(--radius-md, 8px);
    text-decoration: none;
    font-size: var(--font-size-base, 1rem);
    font-weight: 600;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
    white-space: nowrap;
    flex-shrink: 0;
  }
  .cta-button:hover {
    background: var(--bg-primary-hover, #1557b0);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--fg-on-surface, #333);
    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 {
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: var(--surface-1, #ffffff);
      border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
      padding: var(--space-y, 1rem) var(--space-x, 1rem);
      display: none;
      box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.1));
    }
    .nav.open {
      display: block;
    }
    .nav-list {
      flex-direction: column;
      gap: 0.5rem;
    }
    .nav-list a {
      display: block;
      padding: 0.75rem 0;
    }
    .cta-button {
      display: none;
    }
    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
    }
    .burger {
      display: none !important;
    }
  }

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;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
  }
  .footer-left {
    flex: 1 1 300px;
    min-width: 250px;
  }
  .footer-right {
    flex: 2 1 400px;
    min-width: 280px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
  }
  .brand {
    margin-bottom: 20px;
  }
  .contacts {
    margin-top: 10px;
  }
  .contact-item {
    margin: 8px 0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #f5a623;
    text-decoration: none;
  }
  .contact-item a:hover {
    text-decoration: underline;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
  }
  .footer-nav ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav ul li a:hover {
    color: #f5a623;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  .legal-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .legal-links a:hover {
    color: #f5a623;
  }
  .disclaimer {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
    margin: 20px 0 0;
    border-top: 1px solid #333;
    padding-top: 15px;
  }
  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid #333;
    font-size: 0.85rem;
    color: #888;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 30px;
    }
    .footer-left, .footer-right {
      flex: 1 1 100%;
      min-width: 0;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 10px;
    }
    .legal-links {
      flex-direction: column;
      gap: 10px;
    }
  }

.cookie-lv10 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

    .cookie-lv10__actions button[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;
    }