:root {
  --font-family: "Philosopher", sans-serif;
  --font-size-base: 14.9px;
  --line-height-base: 1.72;

  --max-w: 900px;
  --space-x: 1.58rem;
  --space-y: 1.5rem;
  --gap: 1.23rem;

  --radius-xl: 1.37rem;
  --radius-lg: 1rem;
  --radius-md: 0.63rem;
  --radius-sm: 0.38rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.02);
  --shadow-md: 0 3px 14px rgba(0,0,0,0.03);
  --shadow-lg: 0 8px 26px rgba(0,0,0,0.03);

  --overlay: rgba(0,0,0,0.6);
  --anim-duration: 400ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #B87333;
  --brand-contrast: #FFFFFF;
  --accent: #D97706;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F3F4F6;
  --neutral-300: #D1D5DB;
  --neutral-600: #4B5563;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

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

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

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

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #B45309;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #92400E;
  --ring: #B87333;

  --bg-accent: #FEF3C7;
  --fg-on-accent: #1F2937;
  --bg-accent-hover: #B45309;

  --link: #B45309;
  --link-hover: #92400E;

  --gradient-hero: linear-gradient(135deg, #1F2937 0%, #374151 50%, #4B5563 100%);
  --gradient-accent: linear-gradient(135deg, #B87333 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(--neutral-0);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .contact-phone {
    font-size: var(--font-size-base);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    border-top: 1px solid var(--border-on-surface-light);
    background: var(--neutral-0);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .header-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo:hover {
  color: #ffd966;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-menu, .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-menu a, .footer-legal a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-legal a:hover {
  color: #f0c040;
}
.footer-legal a {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0c040;
}
.footer-social {
  flex: 0 0 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  flex: 0 0 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.footer-copyright {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}
.footer-copyright p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

* {
        box-sizing: border-box;
    }

    .intro-tableau-l14 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-tableau-l14__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: 1rem;
        align-items: start;
    }

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

    .intro-tableau-l14__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.1rem);
        line-height: 1.04;
    }

    .intro-tableau-l14__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-tableau-l14__stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: .75rem;
    }

    .intro-tableau-l14__stats div {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-tableau-l14__stats strong {
        display: block;
        color: var(--brand);
        font-size: 1.35rem;
    }

    .intro-tableau-l14__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

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

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

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

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

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .9);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

.faq-layout-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: white;
        color: black;
    }

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

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

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

    .faq-layout-d .section-head p {
        margin: 10px auto 0;
        max-width: 68ch;
    }

    .faq-layout-d .cards {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    }

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        background: var(--accent);
        color: var(--accent-contrast);
        padding: var(--space-y) var(--space-x);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
    }

    .faq-layout-d .card p {
        margin: 9px 0 0;
        color: var(--neutral-100);
    }

.nftouch-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nftouch-v9__wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .nftouch-v9__head {
        margin-bottom: 12px;
    }

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

    .nftouch-v9__head p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .nftouch-v9__stream {
        display: grid;
        gap: 8px;
    }

    .nftouch-v9__stream a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 999px;
        background: rgba(255, 255, 255, .1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v9__stream span {
        opacity: .86;
        white-space: nowrap;
    }

    .nftouch-v9__foot {
        margin-top: 12px;
    }

    .nftouch-v9__foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

    @media (max-width: 700px) {
        .nftouch-v9__stream a {
            flex-direction: column;
            align-items: flex-start;
            border-radius: var(--radius-md);
        }

        .nftouch-v9__stream span {
            white-space: normal;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

header {
    background: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .contact-phone {
    font-size: var(--font-size-base);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    border-top: 1px solid var(--border-on-surface-light);
    background: var(--neutral-0);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .header-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo:hover {
  color: #ffd966;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-menu, .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-menu a, .footer-legal a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-legal a:hover {
  color: #f0c040;
}
.footer-legal a {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0c040;
}
.footer-social {
  flex: 0 0 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  flex: 0 0 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.footer-copyright {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}
.footer-copyright p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.review-list {

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

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

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

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

    .review-list .review-list__rating {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .review-list .review-list__rating-value {
        font-size: 2rem;
        font-weight: 700;
    }

    .review-list .review-list__stars {
        color: #ffd700;
        font-size: 1.5rem;
    }

    .review-list .review-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: var(--space-y);
        justify-content: center;
    }

    .review-list .review-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: var(--fg-on-page);
        color: var(--bg-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .review-list .review-list__filter:hover {
        background: rgba(255, 255, 255, 0.2);
    }

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

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

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

    .review-list .review-list__card {
        background: var(--fg-on-primary);
        backdrop-filter: blur(10px);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .review-list .review-list__author {
        display: flex;
        gap: 1rem;
        margin-bottom: 1rem;
        align-items: center;
    }

    .review-list .review-list__avatar {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--accent);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 600;
        color: var(--fg-on-page);
    }

    .review-list h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-page);
    }

    .review-list p {
        color: var(--bg-primary);
        line-height: 1.6;
        margin: 0 0 1rem;
    }

    .review-list .review-list__date {
        font-size: 0.875rem;

    }

.add-review {

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

    .add-review .add-review__c {
        max-width: 600px;
        margin: 0 auto;
    }

    .add-review .add-review__h {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .add-review h1 {
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 0.5rem;
    }

    .add-review .add-review__form {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .add-review .add-review__rating {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .add-review .add-review__rating label:first-child {
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .add-review .add-review__stars {
        display: flex;
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 0.25rem;
    }

    .add-review .add-review__stars input {
        display: none;
    }

    .add-review .add-review__stars label {
        font-size: 2rem;
        color: #666;
        cursor: pointer;
        transition: color var(--anim-duration) var(--anim-ease);
    }

    .add-review .add-review__stars input:checked ~ label,
    .add-review .add-review__stars label:hover,
    .add-review .add-review__stars label:hover ~ label {
        color: #ffd700;
    }

    .add-review .add-review__form input,
    .add-review .add-review__form textarea {
        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-page);

        outline: none;
    }

    .add-review .add-review__form input::placeholder,
    .add-review .add-review__form textarea::placeholder {

    }

    .add-review .add-review__form input:focus,
    .add-review .add-review__form textarea:focus {
        border-color: rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2);
    }

    .add-review .add-review__form button {
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-page);
        color: var(--bg-primary);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .add-review .add-review__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

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

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

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .9);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

header {
    background: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .contact-phone {
    font-size: var(--font-size-base);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    border-top: 1px solid var(--border-on-surface-light);
    background: var(--neutral-0);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .header-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo:hover {
  color: #ffd966;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-menu, .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-menu a, .footer-legal a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-legal a:hover {
  color: #f0c040;
}
.footer-legal a {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0c040;
}
.footer-social {
  flex: 0 0 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  flex: 0 0 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.footer-copyright {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}
.footer-copyright p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.review-item {

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

    .review-item .review-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .review-item .review-item__review {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .review-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.mis-lx10{padding:calc(var(--space-y)*2.75) var(--space-x)}
.mis-lx10 .mis-wrap{max-width:var(--max-w);margin:0 auto;display:grid;gap:.8rem}
.mis-lx10 .mis-hero{padding:1rem;border-radius:var(--radius-xl);background:linear-gradient(180deg,var(--surface-1),var(--surface-2));border:1px solid var(--border-on-surface)}
.mis-lx10 h2{margin:0;font-size:clamp(1.76rem,3.2vw,2.48rem)}
.mis-lx10 .mis-hero p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.mis-lx10 .mis-bands{display:grid;gap:.6rem}
.mis-lx10 .mis-bands article{display:grid;grid-template-columns:220px 1fr;gap:.85rem;padding:.85rem .95rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-1)}
.mis-lx10 h3{margin:0;color:var(--fg-on-surface)}
.mis-lx10 article p{margin:0;color:var(--fg-on-surface-light)}
@media (max-width:760px){.mis-lx10 .mis-bands article{grid-template-columns:1fr}}

header {
    background: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .contact-phone {
    font-size: var(--font-size-base);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    border-top: 1px solid var(--border-on-surface-light);
    background: var(--neutral-0);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .header-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo:hover {
  color: #ffd966;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-menu, .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-menu a, .footer-legal a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-legal a:hover {
  color: #f0c040;
}
.footer-legal a {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0c040;
}
.footer-social {
  flex: 0 0 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  flex: 0 0 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.footer-copyright {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}
.footer-copyright p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.review-item {

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

    .review-item .review-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .review-item .review-item__review {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .review-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-primary);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

header {
    background: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .contact-phone {
    font-size: var(--font-size-base);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    border-top: 1px solid var(--border-on-surface-light);
    background: var(--neutral-0);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .header-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo:hover {
  color: #ffd966;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-menu, .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-menu a, .footer-legal a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-legal a:hover {
  color: #f0c040;
}
.footer-legal a {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0c040;
}
.footer-social {
  flex: 0 0 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  flex: 0 0 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.footer-copyright {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}
.footer-copyright p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.review-item {

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

    .review-item .review-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .review-item .review-item__review {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .review-item .review-item__author-info {
        display: flex;
        gap: 1rem;
        margin-bottom: var(--space-y);
        align-items: flex-start;
    }

    .review-item .review-item__avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
    }

    .review-item h1 {
        font-size: clamp(24px, 4vw, 36px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .review-item .review-item__author {
        color: var(--neutral-600);
        margin-bottom: 0.5rem;
    }

    .review-item .review-item__rating {
        color: #ffd700;
        font-size: 1.25rem;
    }

    .review-item .review-item__content {
        line-height: 1.8;
        color: var(--fg-on-page);
        margin-bottom: var(--space-y);
    }

    .review-item .review-item__meta {
        padding-top: var(--space-y);
        border-top: 1px solid var(--ring);
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

.recommendations-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .recommendations-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .recommendations-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .recommendations-u7 .sub{margin:.35rem 0 0;opacity:.9;} .recommendations-u7 article,.recommendations-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .recommendations-u7 p{margin:0} .recommendations-u7 a{text-decoration:none;color:inherit;font-weight:700} .recommendations-u7 .cards{padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem} .recommendations-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .recommendations-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.recommendations-u7 .split,.recommendations-u7 .media,.recommendations-u7 .grid,.recommendations-u7 .cards,.recommendations-u7 .bento,.recommendations-u7 .foot{grid-template-columns:1fr}}

header {
    background: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .contact-phone {
    font-size: var(--font-size-base);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    border-top: 1px solid var(--border-on-surface-light);
    background: var(--neutral-0);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .header-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo:hover {
  color: #ffd966;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-menu, .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-menu a, .footer-legal a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-legal a:hover {
  color: #f0c040;
}
.footer-legal a {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0c040;
}
.footer-social {
  flex: 0 0 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  flex: 0 0 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.footer-copyright {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}
.footer-copyright p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

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

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

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .9);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

    @keyframes socialC1Marquee {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .social-c1__track {
            animation: none;
            transform: none;
        }
    }

.feedback-ux5 {
        background: radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.65), transparent 60%), linear-gradient(135deg, rgba(212, 165, 165, 0.55), rgba(248, 225, 231, 0.9)), var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .feedback-ux5__h {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: clamp(20px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .feedback-ux5__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.72);
    }

    .feedback-ux5__h h2 {
        margin: 0;
        font-size: clamp(26px, 4.2vw, 42px);
        letter-spacing: -0.02em;
    }

    .feedback-ux5__controls {
        display: flex;
        gap: 10px;
        flex: 0 0 auto;
    }

    .feedback-ux5__btn {
        border: 1px solid rgba(58, 46, 61, 0.18);
        background: rgba(255, 255, 255, 0.55);
        color: var(--fg-on-page);
        border-radius: 999px;
        padding: 10px 14px;
        cursor: pointer;
        box-shadow: var(--shadow-sm);
        font-weight: 700;
        letter-spacing: 0.06em;
        text-transform: uppercase;
        font-size: 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
        backdrop-filter: blur(10px);
    }

    .feedback-ux5__btn:hover {
        transform: translateY(-2px);
    }

    .feedback-ux5__track {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(260px, 340px);
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 6px 2px 10px;
        
    }

    .feedback-ux5__card {
        scroll-snap-align: start;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.62);
        border: 1px solid rgba(58, 46, 61, 0.12);
        box-shadow: var(--shadow-sm);
        padding: 18px 18px 16px;

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

    .feedback-ux5__bar {
        display: flex;
        align-items: center;
        gap: 10px;
        justify-content: space-between;
        margin-bottom: 12px;
    }

    .feedback-ux5__stars {
        color: var(--accent);
        letter-spacing: 0.08em;
        font-size: 24px;
        flex: 0 0 auto;
    }

    .feedback-ux5__score {
        font-size: 12px;
        font-weight: 800;
        color: var(--fg-on-page);
        flex: 0 0 auto;
    }

    .feedback-ux5__chip {
        margin-left: auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-accent);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        flex: 0 0 auto;
    }

    .feedback-ux5__quote {
        margin: 0 0 14px;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .feedback-ux5__who {
        display: flex;
        align-items: center;
        gap: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(58, 46, 61, 0.12);
    }

    .feedback-ux5__avatar {
        width: 38px;
        height: 38px;
        border-radius: 14px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex: 0 0 auto;
    }

    .feedback-ux5__who h3 {
        margin: 0;
        font-size: 14px;
        font-weight: 800;
        color: var(--fg-on-page);
    }

    .feedback-ux5__who p {
        margin: 2px 0 0;
        font-size: 12px;
        color: rgba(58, 46, 61, 0.7);
    }

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

.connect--light-v6 {
        padding: 40px 20px;
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
    }

    .connect__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
        gap: 20px;
        align-items: center;
    }

    .connect__content h2 {
        margin: 0 0 6px;
        font-size: clamp(22px, 3.5vw, 28px);
        color: var(--fg-on-page);
    }

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

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

    .connect__chip {
        padding: 6px 12px;
        border-radius: 999px;
        background: var(--bg-page);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        font-size: 0.85rem;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

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

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

    @media (max-width: 768px) {
        .connect__inner {
            grid-template-columns: minmax(0, 1fr);
        }

        .connect__chips {
            justify-content: flex-start;
        }
    }

header {
    background: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .contact-phone {
    font-size: var(--font-size-base);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    border-top: 1px solid var(--border-on-surface-light);
    background: var(--neutral-0);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .header-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo:hover {
  color: #ffd966;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-menu, .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-menu a, .footer-legal a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-legal a:hover {
  color: #f0c040;
}
.footer-legal a {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0c040;
}
.footer-social {
  flex: 0 0 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  flex: 0 0 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.footer-copyright {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}
.footer-copyright p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.con-lx6{padding:calc(var(--space-y)*2.6) var(--space-x)}
.con-lx6 .con-max{max-width:var(--max-w);margin:0 auto;display:grid;grid-template-columns:1fr 320px;gap:var(--gap)}
.con-lx6 .con-card{padding:1.1rem;border-radius:var(--radius-xl);background:var(--surface-1);border:1px solid var(--border-on-surface);box-shadow:var(--shadow-sm)}
.con-lx6 h2{margin:0;font-size:clamp(1.7rem,3vw,2.4rem)}
.con-lx6 .con-card>p{margin:.4rem 0 .9rem;color:var(--fg-on-surface-light)}
.con-lx6 dl{margin:0;display:grid;gap:.65rem}
.con-lx6 dl div{display:grid;grid-template-columns:170px 1fr;gap:.7rem;padding-bottom:.5rem;border-bottom:1px solid var(--border-on-surface-light)}
.con-lx6 dl div:last-child{border-bottom:0;padding-bottom:0}
.con-lx6 dt{font-weight:700;color:var(--fg-on-surface-light)}
.con-lx6 dd{margin:0}
.con-lx6 .con-rail{list-style:none;margin:0;padding:0;display:grid;gap:.5rem}
.con-lx6 .con-rail li{padding:.85rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-2)}
.con-lx6 .con-rail h3{margin:0 0 .2rem;font-size:1rem}
.con-lx6 a{text-decoration:none;color:var(--link)}
@media (max-width:900px){.con-lx6 .con-max,.con-lx6 dl div{grid-template-columns:1fr}}

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

header {
    background: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .contact-phone {
    font-size: var(--font-size-base);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    border-top: 1px solid var(--border-on-surface-light);
    background: var(--neutral-0);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .header-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo:hover {
  color: #ffd966;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-menu, .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-menu a, .footer-legal a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-legal a:hover {
  color: #f0c040;
}
.footer-legal a {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0c040;
}
.footer-social {
  flex: 0 0 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  flex: 0 0 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.footer-copyright {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}
.footer-copyright p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.policyitems-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .policyitems-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u9 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u9 article,.policyitems-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u9 p{margin:0} .policyitems-u9 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u9 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:policyitems-u9Pulse 2.8s ease-in-out infinite} @keyframes policyitems-u9Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} .policyitems-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u9 .split,.policyitems-u9 .media,.policyitems-u9 .grid,.policyitems-u9 .cards,.policyitems-u9 .bento,.policyitems-u9 .foot{grid-template-columns:1fr}}

header {
    background: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .contact-phone {
    font-size: var(--font-size-base);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    border-top: 1px solid var(--border-on-surface-light);
    background: var(--neutral-0);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .header-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo:hover {
  color: #ffd966;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-menu, .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-menu a, .footer-legal a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-legal a:hover {
  color: #f0c040;
}
.footer-legal a {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0c040;
}
.footer-social {
  flex: 0 0 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  flex: 0 0 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.footer-copyright {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}
.footer-copyright p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.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(--neutral-0);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .contact-phone {
    font-size: var(--font-size-base);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    border-top: 1px solid var(--border-on-surface-light);
    background: var(--neutral-0);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .header-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo:hover {
  color: #ffd966;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-menu, .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-menu a, .footer-legal a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-legal a:hover {
  color: #f0c040;
}
.footer-legal a {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0c040;
}
.footer-social {
  flex: 0 0 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  flex: 0 0 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.footer-copyright {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}
.footer-copyright p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.thx-lx10{padding:calc(var(--space-y)*2.7) var(--space-x)}
.thx-lx10 .thx-wrap{max-width:820px;margin:0 auto;display:grid;gap:.58rem}
.thx-lx10 .thx-note{padding:1rem;border-radius:var(--radius-xl);background:linear-gradient(180deg,var(--surface-1),var(--surface-2));border:1px solid var(--border-on-surface);text-align:center}
.thx-lx10 h2{margin:0;font-size:clamp(1.72rem,3vw,2.4rem)}
.thx-lx10 .thx-note p{margin:.38rem 0 0;color:var(--fg-on-surface-light)}
.thx-lx10 .thx-inline{margin:0;padding:.72rem .8rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}

header {
    background: var(--neutral-0);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
  }

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

  .contact-phone {
    font-size: var(--font-size-base);
    color: var(--neutral-600);
    line-height: var(--line-height-base);
  }

  .cta-btn {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--accent);
    color: var(--accent-contrast);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-size: var(--font-size-base);
    font-weight: 600;
    transition: background var(--anim-duration) var(--anim-ease);
  }

  .cta-btn:hover {
    background: var(--bg-accent-hover);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 0;
  }

  .burger span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

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

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

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

  .header-nav {
    border-top: 1px solid var(--border-on-surface-light);
    background: var(--neutral-0);
  }

  .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: 0;
  }

  .nav-list li {
    margin: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1.25rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    transition: color var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

  @media (max-width: 767px) {
    .header-contact {
      display: none;
    }

    .burger {
      display: flex;
    }

    .header-nav {
      display: none;
      border-top: 1px solid var(--border-on-surface-light);
    }

    .header-nav.open {
      display: block;
    }

    .nav-list {
      flex-direction: column;
      padding: var(--space-y) var(--space-x);
    }

    .nav-list a {
      padding: 0.75rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .nav-list li:last-child a {
      border-bottom: none;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2.5rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 200px;
}
.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0c040;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-logo:hover {
  color: #ffd966;
}
.footer-tagline {
  margin: 0.3rem 0 0;
  color: #b0b0b0;
  font-size: 0.85rem;
}
.footer-nav {
  flex: 2 1 300px;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}
.footer-menu, .footer-legal {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-menu li, .footer-legal li {
  margin-bottom: 0.4rem;
}
.footer-menu a, .footer-legal a {
  color: #c0c0c0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-menu a:hover, .footer-legal a:hover {
  color: #f0c040;
}
.footer-legal a {
  font-size: 0.85rem;
  color: #a0a0a0;
}
.footer-contact {
  flex: 1 1 220px;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-contact a {
  color: #c0c0c0;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #f0c040;
}
.footer-social {
  flex: 0 0 100%;
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}
.footer-social a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-social a:hover {
  color: #f0c040;
}
.footer-disclaimer {
  flex: 0 0 100%;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  color: #888;
  text-align: center;
}
.footer-copyright {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: #777;
}
.footer-copyright p {
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-nav {
    justify-content: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-social {
    justify-content: center;
  }
}

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }