:root {
  --font-family: "Alegreya Sans", sans-serif;
  --font-size-base: 16.3px;
  --line-height-base: 1.71;

  --max-w: 1040px;
  --space-x: 1.24rem;
  --space-y: 1.5rem;
  --gap: 0.73rem;

  --radius-xl: 0.66rem;
  --radius-lg: 0.54rem;
  --radius-md: 0.34rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 0px 1px rgba(0,0,0,0.06);
  --shadow-md: 0 5px 8px rgba(0,0,0,0.08);
  --shadow-lg: 0 6px 20px rgba(0,0,0,0.1);

  --overlay: rgba(30, 25, 20, 0.7);
  --anim-duration: 540ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #8B5E3C;
  --brand-contrast: #F5F0EB;
  --accent: #D97706;
  --accent-contrast: #1F1A15;

  --neutral-0: #FCFAF7;
  --neutral-100: #F0ECE6;
  --neutral-300: #C4B8A8;
  --neutral-600: #6B5E4F;
  --neutral-800: #3A332B;
  --neutral-900: #1F1A15;

  --bg-page: #FCFAF7;
  --fg-on-page: #1F1A15;

  --bg-alt: #F0ECE6;
  --fg-on-alt: #3A332B;

  --surface-1: #FFFFFF;
  --surface-2: #F7F3EE;
  --fg-on-surface: #1F1A15;
  --border-on-surface: #D6CEC2;

  --surface-light: #FDFCFA;
  --fg-on-surface-light: #3A332B;
  --border-on-surface-light: #E5DDD3;

  --bg-primary: #B45309;
  --fg-on-primary: #FCFAF7;
  --bg-primary-hover: #92400E;
  --ring: #D97706;

  --bg-accent: #F59E0B;
  --fg-on-accent: #1F1A15;
  --bg-accent-hover: #B45309;

  --link: #B45309;
  --link-hover: #8B5E3C;

  --gradient-hero: linear-gradient(135deg, #2D241C 0%, #4A3B2E 50%, #6B5E4F 100%);
  --gradient-accent: linear-gradient(135deg, #D97706 0%, #F59E0B 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-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
  }

  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .btn-accent {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }

  .btn-accent:hover,
  .btn-accent:focus-visible {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-sm);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

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

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

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

  @media (max-width: 767px) {
    .header-container {
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
    }

    .burger {
      display: flex;
      order: 2;
    }

    .btn-accent {
      display: none;
    }

    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }

    .nav.open {
      max-height: 500px;
      opacity: 1;
    }

    .nav-list {
      flex-direction: column;
      padding: 0.5rem 0;
      gap: 0;
    }

    .nav-link {
      padding: 0.75rem 0.5rem;
      border-radius: var(--radius-sm);
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      max-height: none !important;
      opacity: 1 !important;
      overflow: visible;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f5a623;
    margin-bottom: 15px;
  }
  .footer-nav {
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-contacts {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .footer-contacts a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    margin-bottom: 10px;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-disclaimer p {
    font-size: 11px;
    color: #b0b0b0;
    margin: 10px 0;
    font-style: italic;
  }
  .footer-copyright p {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0;
  }
  @media (max-width: 600px) {
    .footer-nav a {
      display: inline-block;
      margin: 5px 8px;
    }
    .footer-contacts {
      font-size: 12px;
    }
    .footer-contacts span {
      display: block;
      margin: 3px 0;
    }
  }

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

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

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

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

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

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

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

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

.nfintro-v11 {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
        min-height: 460px;
    }

    .nfintro-v11__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .nfintro-v11__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: .72;
        z-index: -1;
    }

    .nfintro-v11__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .nfintro-v11 h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
    }

    .nfintro-v11 p {
        font-size: clamp(16px, 2.5vw, 20px);
        margin: 0 auto calc(var(--space-y) * 1.5);
        max-width: 700px;
    }

    .nfintro-v11__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .nfintro-v11__btn {
        display: inline-block;
        padding: 12px 26px;
        border-radius: var(--radius-md);
        text-align: center;
        text-decoration: none;
        border: 1px solid transparent;
        font-size: 1rem;
    }

    .nfintro-v11__btn--primary {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    .nfintro-v11__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

.next-ux21 {
        padding: clamp(3rem, 7vw, 5.6rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .next-ux21__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        align-items: end;
        flex-wrap: wrap;
    }

    .next-ux21__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

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

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

    .next-ux21__actions {
        max-width: var(--max-w);
        margin: 1rem auto 0;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: .75rem;
    }

    .next-ux21__actions a {
        display: block;
        padding: .95rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        text-decoration: none;
        color: var(--neutral-900);
        box-shadow: var(--shadow-sm);
    }

    .next-ux21__actions span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .next-ux21 {
        overflow: hidden;
    }

    .next-ux21__wrap {
        background-image: linear-gradient(rgba(255, 255, 255, .86), rgba(255, 255, 255, .86)), url('https://images.pexels.com/photos/162553/pexels-photo-162553.jpeg?auto=compress&cs=tinysrgb&w=800');
        color: var(--neutral-900);
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        border-radius: var(--radius-xl);
        overflow: hidden;
        padding: var(--gap);
        box-shadow: var(--shadow-sm)
    }

.two-column-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.two-column-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.two-column-section__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(var(--gap) * 2);
    align-items: start;
}

.two-column-section--split .two-column-section__text {
    padding: 0 0 0 0;
    border-left: 2px solid var(--border-on-surface);
    padding-left: var(--space-x);
}

.two-column-section--split .two-column-section__text:first-child {
    border-left: 0;
    padding-left: 0;
}

.two-column-section__text h2 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-page);
}

.two-column-section__text p {
    margin-bottom: var(--space-y);
    color: var(--neutral-600);
}

.why-choose-light {

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

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

    .why-choose-light .why-choose-light__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);

        transform: translateY(20px);
    }

    .why-choose-light h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .why-choose-light .why-choose-light__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light .why-choose-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose-light .why-choose-light__item {
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose-light .why-choose-light__item:hover {
        box-shadow: var(--shadow-md);
    }

    .why-choose-light .why-choose-light__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose-light .why-choose-light__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .why-choose-light .why-choose-light__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

.clar-ux5{padding:clamp(20px,3vw,44px);background:var(--gradient-accent);color:var(--accent-contrast)}.clar-ux5__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux5__head{margin-bottom:12px}.clar-ux5__head h2{margin:0}.clar-ux5__head p{margin:8px 0 0;color:rgba(255,255,255,.88)}.clar-ux5__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.clar-ux5__grid article{border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.1);border-radius:var(--radius-md);padding:12px}.clar-ux5__grid span,.clar-ux5__grid small{display:inline-flex;font-size:.82rem;opacity:.9}.clar-ux5__grid h3{margin:6px 0}.clar-ux5__grid p{margin:0;opacity:.93}

.header-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
  }

  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .btn-accent {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }

  .btn-accent:hover,
  .btn-accent:focus-visible {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-sm);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

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

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

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

  @media (max-width: 767px) {
    .header-container {
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
    }

    .burger {
      display: flex;
      order: 2;
    }

    .btn-accent {
      display: none;
    }

    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }

    .nav.open {
      max-height: 500px;
      opacity: 1;
    }

    .nav-list {
      flex-direction: column;
      padding: 0.5rem 0;
      gap: 0;
    }

    .nav-link {
      padding: 0.75rem 0.5rem;
      border-radius: var(--radius-sm);
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      max-height: none !important;
      opacity: 1 !important;
      overflow: visible;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f5a623;
    margin-bottom: 15px;
  }
  .footer-nav {
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-contacts {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .footer-contacts a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    margin-bottom: 10px;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-disclaimer p {
    font-size: 11px;
    color: #b0b0b0;
    margin: 10px 0;
    font-style: italic;
  }
  .footer-copyright p {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0;
  }
  @media (max-width: 600px) {
    .footer-nav a {
      display: inline-block;
      margin: 5px 8px;
    }
    .footer-contacts {
      font-size: 12px;
    }
    .footer-contacts span {
      display: block;
      margin: 3px 0;
    }
  }

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

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

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

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

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

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

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

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

.messages {

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

    .messages .messages__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);

    }

    @media (max-width: 767px) {
        .messages .messages__c {
            grid-template-columns: 1fr;
            height: auto;
        }

        .messages .messages__chat-form {
            flex-direction: column;
        }
    }

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

    .messages .messages__list {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        padding: 1rem;
        overflow-y: auto;
    }

    .messages h2 {
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
        font-size: 1.25rem;
    }

    .messages .messages__items {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .messages .messages__item {
        display: flex;
        gap: 1rem;
        padding: 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.1);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .messages .messages__item:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .messages .messages__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-primary);
        flex-shrink: 0;
    }

    .messages .messages__info {
        flex: 1;
        min-width: 0;
    }

    .messages h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
        font-size: 1rem;
    }

    .messages .messages__info p {
        margin: 0 0 0.25rem;

        font-size: 0.875rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .messages .messages__time {
        font-size: 0.75rem;

    }

    .messages .messages__chat {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
    }

    .messages .messages__chat-header {
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages h3 {
        margin: 0;
        color: var(--fg-on-primary);
    }

    .messages .messages__chat-messages {
        flex: 1;
        padding: 1rem;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .messages .messages__message {
        background: rgba(255, 255, 255, 0.1);
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        max-width: 70%;
    }

    .messages .messages__message-text {
        color: var(--fg-on-primary);
        margin-bottom: 0.25rem;
    }

    .messages .messages__message-time {
        font-size: 0.75rem;

    }

    .messages .messages__chat-form {
        display: flex;
        gap: 0.5rem;
        padding: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }

    .messages .messages__chat-form input {
        flex: 1;
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);
        outline: none;
    }

    .messages .messages__chat-form input::placeholder {

    }

    .messages .messages__chat-form button {
        padding: 0.875rem 1.5rem;
        border-radius: var(--radius-md);
        border: none;
        background: var(--gradient-hero);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
    }

.feedback-ux8 {
        background: var(--neutral-100);
        color: var(--neutral-900);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .feedback-ux8__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .feedback-ux8__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .feedback-ux8__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--neutral-900);
    }

    .feedback-ux8__list {
        display: grid;
        gap: 12px;
    }

    .feedback-ux8__row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .feedback-ux8__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--neutral-900);
        font: inherit;
        text-align: left;
    }

    .feedback-ux8__who {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .feedback-ux8__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .feedback-ux8__name {
        font-weight: 800;
        font-size: 14px;
        color: var(--neutral-900);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .feedback-ux8__meta {
        font-size: 12px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .feedback-ux8__rating {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface);
    }

    .feedback-ux8__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .feedback-ux8__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--neutral-900);
    }

    .feedback-ux8__a {
        display: none;
        padding: 0 16px 14px;
        color: var(--neutral-800);
        overflow: hidden;
    }

    .feedback-ux8__a p {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
        color: var(--neutral-800);
    }

    .feedback-ux8__chip {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
    }

    @media (max-width: 560px) {
        .feedback-ux8__q {
            align-items: flex-start;
        }

        .feedback-ux8__rating {
            margin-top: 2px;
        }

        .feedback-ux8__meta {
            display: none;
        }
    }

.clar-ux5{padding:clamp(20px,3vw,44px);background:var(--gradient-accent);color:var(--accent-contrast)}.clar-ux5__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux5__head{margin-bottom:12px}.clar-ux5__head h2{margin:0}.clar-ux5__head p{margin:8px 0 0;color:rgba(255,255,255,.88)}.clar-ux5__grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:10px}.clar-ux5__grid article{border:1px solid rgba(255,255,255,.3);background:rgba(255,255,255,.1);border-radius:var(--radius-md);padding:12px}.clar-ux5__grid span,.clar-ux5__grid small{display:inline-flex;font-size:.82rem;opacity:.9}.clar-ux5__grid h3{margin:6px 0}.clar-ux5__grid p{margin:0;opacity:.93}

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

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

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

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 2px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: all 0.3s;
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
        box-shadow: var(--shadow-md);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
        color: var(--fg-on-surface);
    }

.header-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
  }

  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .btn-accent {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }

  .btn-accent:hover,
  .btn-accent:focus-visible {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-sm);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

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

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

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

  @media (max-width: 767px) {
    .header-container {
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
    }

    .burger {
      display: flex;
      order: 2;
    }

    .btn-accent {
      display: none;
    }

    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }

    .nav.open {
      max-height: 500px;
      opacity: 1;
    }

    .nav-list {
      flex-direction: column;
      padding: 0.5rem 0;
      gap: 0;
    }

    .nav-link {
      padding: 0.75rem 0.5rem;
      border-radius: var(--radius-sm);
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      max-height: none !important;
      opacity: 1 !important;
      overflow: visible;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f5a623;
    margin-bottom: 15px;
  }
  .footer-nav {
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-contacts {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .footer-contacts a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    margin-bottom: 10px;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-disclaimer p {
    font-size: 11px;
    color: #b0b0b0;
    margin: 10px 0;
    font-style: italic;
  }
  .footer-copyright p {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0;
  }
  @media (max-width: 600px) {
    .footer-nav a {
      display: inline-block;
      margin: 5px 8px;
    }
    .footer-contacts {
      font-size: 12px;
    }
    .footer-contacts span {
      display: block;
      margin: 3px 0;
    }
  }

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

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

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

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

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

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

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

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

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

.header-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
  }

  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .btn-accent {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }

  .btn-accent:hover,
  .btn-accent:focus-visible {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-sm);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

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

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

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

  @media (max-width: 767px) {
    .header-container {
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
    }

    .burger {
      display: flex;
      order: 2;
    }

    .btn-accent {
      display: none;
    }

    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }

    .nav.open {
      max-height: 500px;
      opacity: 1;
    }

    .nav-list {
      flex-direction: column;
      padding: 0.5rem 0;
      gap: 0;
    }

    .nav-link {
      padding: 0.75rem 0.5rem;
      border-radius: var(--radius-sm);
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      max-height: none !important;
      opacity: 1 !important;
      overflow: visible;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f5a623;
    margin-bottom: 15px;
  }
  .footer-nav {
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-contacts {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .footer-contacts a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    margin-bottom: 10px;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-disclaimer p {
    font-size: 11px;
    color: #b0b0b0;
    margin: 10px 0;
    font-style: italic;
  }
  .footer-copyright p {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0;
  }
  @media (max-width: 600px) {
    .footer-nav a {
      display: inline-block;
      margin: 5px 8px;
    }
    .footer-contacts {
      font-size: 12px;
    }
    .footer-contacts span {
      display: block;
      margin: 3px 0;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

    .support-cv5__head p {
        margin: 0;
        font-weight: 700;
        opacity: .9;
    }

    .support-cv5__head h2 {
        margin: 7px 0 0;
        font-size: clamp(30px, 5vw, 46px);
    }

    .support-cv5__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .support-cv5__grid article {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.32);
        color: var(--fg-on-page);
        padding: 13px;
        box-shadow: var(--shadow-sm);
    }

    .support-cv5__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

    .support-cv5__grid h3 {
        margin: var(--space-x) 0;
    }

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

    .support-cv5__grid a {
        color: var(--link);
        text-decoration: underline;
    }

    .support-cv5__grid a:hover {
        color: var(--link-hover);
    }

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

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

    .faq-fresh-v1 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .faq-fresh-v1 .items {
        display: grid;
        gap: .8rem;
    }

    .faq-fresh-v1 details {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        padding: .85rem 1rem;
        background: var(--surface-1);
    }

    .faq-fresh-v1 summary {
        cursor: pointer;
        font-weight: 700;
    }

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

.hiw-ux8 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .hiw-ux8__head {
        margin-bottom: 1.25rem;
    }

    .hiw-ux8__head p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-ux8__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .hiw-ux8__track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

    .hiw-ux8__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--fg-on-primary);
        color:  var(--bg-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ux8__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ux8__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ux8__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ux8__track p {
        margin: 0;
    }

.header-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
  }

  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .btn-accent {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }

  .btn-accent:hover,
  .btn-accent:focus-visible {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-sm);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

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

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

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

  @media (max-width: 767px) {
    .header-container {
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
    }

    .burger {
      display: flex;
      order: 2;
    }

    .btn-accent {
      display: none;
    }

    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }

    .nav.open {
      max-height: 500px;
      opacity: 1;
    }

    .nav-list {
      flex-direction: column;
      padding: 0.5rem 0;
      gap: 0;
    }

    .nav-link {
      padding: 0.75rem 0.5rem;
      border-radius: var(--radius-sm);
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      max-height: none !important;
      opacity: 1 !important;
      overflow: visible;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f5a623;
    margin-bottom: 15px;
  }
  .footer-nav {
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-contacts {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .footer-contacts a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    margin-bottom: 10px;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-disclaimer p {
    font-size: 11px;
    color: #b0b0b0;
    margin: 10px 0;
    font-style: italic;
  }
  .footer-copyright p {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0;
  }
  @media (max-width: 600px) {
    .footer-nav a {
      display: inline-block;
      margin: 5px 8px;
    }
    .footer-contacts {
      font-size: 12px;
    }
    .footer-contacts span {
      display: block;
      margin: 3px 0;
    }
  }

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

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

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

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

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

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

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

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

.form-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .form-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .form-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .form-u5 .sub{margin:.35rem 0 0;opacity:.9;} .form-u5 .panel,.form-u5 .box{padding:1.1rem;border-radius:var(--radius-xl);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);box-shadow:var(--shadow-md)} .form-u5 form{display:grid;gap:.75rem} .form-u5 .field{display:grid;gap:.28rem} .form-u5 .field span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)} .form-u5 input,.form-u5 textarea{width:100%;padding:.8rem .85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface-light);background:var(--surface-1);color:var(--fg-on-surface);font:inherit;outline:none;transition:border-color var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .form-u5 input:focus,.form-u5 textarea:focus{border-color:var(--ring);box-shadow:0 0 0 3px color-mix(in srgb,var(--ring) 22%, transparent)} .form-u5 textarea{min-height:120px;resize:vertical} .form-u5 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease),background var(--anim-duration) var(--anim-ease)} .form-u5 button:hover{transform:translateY(-1px);background:var(--bg-primary-hover)} .form-u5 .split{display:grid;grid-template-columns:1fr 1fr;gap:var(--gap)} .form-u5 .grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem} .form-u5 .line{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .bar{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .stack{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .form-u5 .steps{display:flex;gap:.45rem;flex-wrap:wrap} .form-u5 .steps span{padding:.33rem .55rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);font-size:.8rem} .form-u5 .agree{display:flex;align-items:center;gap:.45rem;font-size:.86rem} .form-u5 .media{display:grid;grid-template-columns:.9fr 1.1fr;gap:var(--gap)} .form-u5 .media img,.form-u5 .frame img{width:100%;height:100%;min-height:320px;object-fit:cover;border-radius:var(--radius-xl)} .form-u5 .frame{display:grid;grid-template-columns:1.1fr .9fr;gap:var(--gap)} .form-u5 .full{grid-column:1/-1} @media (max-width:860px){.form-u5 .split,.form-u5 .media,.form-u5 .frame{grid-template-columns:1fr} .form-u5 .grid,.form-u5 .bar{grid-template-columns:1fr}}

.con-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.con-lx4 .con-wrap{max-width:var(--max-w);margin:0 auto}
.con-lx4 h2{margin:0;font-size:clamp(1.75rem,3.2vw,2.5rem)}
.con-lx4 .con-sub{margin:.42rem 0 1rem;color:var(--fg-on-surface-light)}
.con-lx4 .con-strips{display:grid;gap:.55rem}
.con-lx4 .con-strips article{display:flex;justify-content:space-between;gap:1rem;align-items:center;padding:.85rem 1rem;border-radius:var(--radius-lg);background:var(--surface-1);border-left:4px solid var(--bg-primary)}
.con-lx4 h3{margin:0;font-size:1rem}
.con-lx4 .con-strips p{margin:0;color:var(--fg-on-surface-light)}
.con-lx4 a{text-decoration:none;color:var(--link)}
.con-lx4 .con-flow{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.6rem;margin-top:.8rem}
.con-lx4 .con-flow a{display:flex;justify-content:space-between;gap:.75rem;padding:.75rem .9rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.con-lx4 .con-flow span{color:var(--fg-on-surface-light)}
@media (max-width:760px){.con-lx4 .con-strips article{display:grid}.con-lx4 .con-flow{grid-template-columns:1fr}}

.header-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
  }

  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .btn-accent {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }

  .btn-accent:hover,
  .btn-accent:focus-visible {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-sm);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

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

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

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

  @media (max-width: 767px) {
    .header-container {
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
    }

    .burger {
      display: flex;
      order: 2;
    }

    .btn-accent {
      display: none;
    }

    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }

    .nav.open {
      max-height: 500px;
      opacity: 1;
    }

    .nav-list {
      flex-direction: column;
      padding: 0.5rem 0;
      gap: 0;
    }

    .nav-link {
      padding: 0.75rem 0.5rem;
      border-radius: var(--radius-sm);
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      max-height: none !important;
      opacity: 1 !important;
      overflow: visible;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f5a623;
    margin-bottom: 15px;
  }
  .footer-nav {
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-contacts {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .footer-contacts a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    margin-bottom: 10px;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-disclaimer p {
    font-size: 11px;
    color: #b0b0b0;
    margin: 10px 0;
    font-style: italic;
  }
  .footer-copyright p {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0;
  }
  @media (max-width: 600px) {
    .footer-nav a {
      display: inline-block;
      margin: 5px 8px;
    }
    .footer-contacts {
      font-size: 12px;
    }
    .footer-contacts span {
      display: block;
      margin: 3px 0;
    }
  }

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

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

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

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

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

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

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

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

.pol-lx4{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.pol-lx4 .pol-max{max-width:var(--max-w);margin:0 auto;display:grid;gap:.82rem}
.pol-lx4 h2{margin:0;font-size:clamp(1.72rem,3.1vw,2.42rem)}
.pol-lx4 .pol-head p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.pol-lx4 .pol-stream{display:grid;gap:.54rem}
.pol-lx4 article{padding:.85rem .9rem;border-inline-start:4px solid var(--bg-primary);border-radius:var(--radius-sm);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.pol-lx4 h3{margin:0 0 .24rem;font-size:1rem}
.pol-lx4 article p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx4 .pol-contact{margin:0;padding:.85rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px dashed var(--border-on-surface-light)}

.header-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
  }

  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .btn-accent {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }

  .btn-accent:hover,
  .btn-accent:focus-visible {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-sm);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

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

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

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

  @media (max-width: 767px) {
    .header-container {
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
    }

    .burger {
      display: flex;
      order: 2;
    }

    .btn-accent {
      display: none;
    }

    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }

    .nav.open {
      max-height: 500px;
      opacity: 1;
    }

    .nav-list {
      flex-direction: column;
      padding: 0.5rem 0;
      gap: 0;
    }

    .nav-link {
      padding: 0.75rem 0.5rem;
      border-radius: var(--radius-sm);
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      max-height: none !important;
      opacity: 1 !important;
      overflow: visible;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f5a623;
    margin-bottom: 15px;
  }
  .footer-nav {
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-contacts {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .footer-contacts a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    margin-bottom: 10px;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-disclaimer p {
    font-size: 11px;
    color: #b0b0b0;
    margin: 10px 0;
    font-style: italic;
  }
  .footer-copyright p {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0;
  }
  @media (max-width: 600px) {
    .footer-nav a {
      display: inline-block;
      margin: 5px 8px;
    }
    .footer-contacts {
      font-size: 12px;
    }
    .footer-contacts span {
      display: block;
      margin: 3px 0;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
  }

  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .btn-accent {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }

  .btn-accent:hover,
  .btn-accent:focus-visible {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-sm);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

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

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

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

  @media (max-width: 767px) {
    .header-container {
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
    }

    .burger {
      display: flex;
      order: 2;
    }

    .btn-accent {
      display: none;
    }

    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }

    .nav.open {
      max-height: 500px;
      opacity: 1;
    }

    .nav-list {
      flex-direction: column;
      padding: 0.5rem 0;
      gap: 0;
    }

    .nav-link {
      padding: 0.75rem 0.5rem;
      border-radius: var(--radius-sm);
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      max-height: none !important;
      opacity: 1 !important;
      overflow: visible;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f5a623;
    margin-bottom: 15px;
  }
  .footer-nav {
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-contacts {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .footer-contacts a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    margin-bottom: 10px;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-disclaimer p {
    font-size: 11px;
    color: #b0b0b0;
    margin: 10px 0;
    font-style: italic;
  }
  .footer-copyright p {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0;
  }
  @media (max-width: 600px) {
    .footer-nav a {
      display: inline-block;
      margin: 5px 8px;
    }
    .footer-contacts {
      font-size: 12px;
    }
    .footer-contacts span {
      display: block;
      margin: 3px 0;
    }
  }

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

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

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

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

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

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

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

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

.thx-lx6{padding:calc(var(--space-y)*2.65) var(--space-x)}
.thx-lx6 .thx-grid{max-width:980px;margin:0 auto;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.62rem}
.thx-lx6 .thx-main{grid-column:1/-1;padding:1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.thx-lx6 h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.52rem)}
.thx-lx6 .thx-main p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx6 article:not(.thx-main){padding:.88rem;border-radius:var(--radius-md);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.thx-lx6 h3{margin:0 0 .22rem;font-size:1rem}
.thx-lx6 article p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:700px){.thx-lx6 .thx-grid{grid-template-columns:1fr}}

.header-card {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    box-shadow: var(--shadow-lg);
  }

  .header-container {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
    background: var(--surface-1);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow-md);
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    flex-shrink: 0;
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
  }

  .nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

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

  .btn-accent {
    display: inline-flex;
    align-items: center;
    padding: 0.6rem 1.5rem;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    font-size: var(--font-size-base);
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: background var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
  }

  .btn-accent:hover,
  .btn-accent:focus-visible {
    background: var(--bg-accent-hover);
    box-shadow: var(--shadow-sm);
    outline: none;
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }

  .burger-line {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .burger-line + .burger-line {
    margin-top: 5px;
  }

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

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

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

  @media (max-width: 767px) {
    .header-container {
      flex-wrap: wrap;
      padding: 0.5rem 1rem;
    }

    .burger {
      display: flex;
      order: 2;
    }

    .btn-accent {
      display: none;
    }

    .nav {
      order: 3;
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
      opacity: 0;
    }

    .nav.open {
      max-height: 500px;
      opacity: 1;
    }

    .nav-list {
      flex-direction: column;
      padding: 0.5rem 0;
      gap: 0;
    }

    .nav-link {
      padding: 0.75rem 0.5rem;
      border-radius: var(--radius-sm);
    }
  }

  @media (min-width: 768px) {
    .nav {
      display: flex !important;
      max-height: none !important;
      opacity: 1 !important;
      overflow: visible;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 20px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
  }
  .footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #f5a623;
    margin-bottom: 15px;
  }
  .footer-nav {
    margin-bottom: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-contacts {
    margin-bottom: 15px;
    font-size: 13px;
  }
  .footer-contacts a {
    color: #f5a623;
    text-decoration: none;
  }
  .footer-contacts a:hover {
    text-decoration: underline;
  }
  .footer-legal {
    margin-bottom: 10px;
  }
  .footer-legal a {
    color: #e0e0e0;
    text-decoration: none;
    margin: 0 5px;
    font-size: 12px;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-disclaimer p {
    font-size: 11px;
    color: #b0b0b0;
    margin: 10px 0;
    font-style: italic;
  }
  .footer-copyright p {
    font-size: 12px;
    color: #888;
    margin: 5px 0 0;
  }
  @media (max-width: 600px) {
    .footer-nav a {
      display: inline-block;
      margin: 5px 8px;
    }
    .footer-contacts {
      font-size: 12px;
    }
    .footer-contacts span {
      display: block;
      margin: 3px 0;
    }
  }

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

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

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

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

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

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

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

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

.nf404-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

    .nf404-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }