:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 13.5px;
  --line-height-base: 1.24;

  --max-w: 960px;
  --space-x: 0.93rem;
  --space-y: 0.88rem;
  --gap: 0.75rem;

  --radius-xl: 0.94rem;
  --radius-lg: 0.48rem;
  --radius-md: 0.4rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 0px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 2px 14px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 22px rgba(0,0,0,0.07);

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

  --brand: #1a2b4a;
  --brand-contrast: #ffffff;
  --accent: #00bcd4;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f7fa;
  --neutral-300: #d0d5dd;
  --neutral-600: #667085;
  --neutral-800: #344054;
  --neutral-900: #101828;

  --bg-page: #ffffff;
  --fg-on-page: #101828;

  --bg-alt: #f0f4f8;
  --fg-on-alt: #1a2b4a;

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #101828;
  --border-on-surface: #e4e7ec;

  --surface-light: #ffffff;
  --fg-on-surface-light: #344054;
  --border-on-surface-light: #eaecf0;

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

  --bg-accent: #00bcd4;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #0097a7;

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

  --gradient-hero: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
  --gradient-accent: linear-gradient(135deg, #00bcd4 0%, #0097a7 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-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-on-surface-light);
      width: 100%;
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 100%;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.contact-address {
  font-size: 0.95rem;
  color: #c0c0c0;
}
.contact-phone,
.contact-email {
  color: #f0a500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.footer-bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.nfintro-v10 {
        padding: calc(var(--space-y) * 2.6) var(--space-x) 0;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .nfintro-v10 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

    .nfintro-v10__subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .nfintro-v10__split {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .nfintro-v10__desc {margin: 0; max-width: 60ch;}

    .nfintro-v10__actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .nfintro-v10__actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .nfintro-v10__media {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--gap);
        background: var(--surface-2);
        box-shadow: var(--shadow-sm);
    }

    .nfintro-v10__media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .nfintro-v10__rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .nfintro-v10__rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .nfintro-v10__rail em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .nfintro-v10__rail strong {font-size: 1.05rem;}

    @media (max-width: 900px) {
        .nfintro-v10__split {grid-template-columns: 1fr;}
        .nfintro-v10__rail {grid-template-columns: repeat(2, minmax(0, 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(0, 188, 212, 1), rgba(0, 188, 212, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(0, 188, 212, 1), rgba(0, 188, 212, 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-fresh-v1 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-on-surface-light);
      width: 100%;
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 100%;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.contact-address {
  font-size: 0.95rem;
  color: #c0c0c0;
}
.contact-phone,
.contact-email {
  color: #f0a500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.footer-bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-on-surface-light);
      width: 100%;
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 100%;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.contact-address {
  font-size: 0.95rem;
  color: #c0c0c0;
}
.contact-phone,
.contact-email {
  color: #f0a500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.footer-bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.author--colored-v5 {

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

.author__inner {
    max-width: 520px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 16px;
    align-items: center;
}

.author__avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    overflow: hidden;
    border: 2px solid var(--bg-accent);
}

.author__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author__name {
    margin: 0;
    font-size: 1.05rem;
}

.author__role {
    margin: 2px 0 8px;
    font-size: 0.9rem;
    color: var(--neutral-300);
}

.author__bio {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-200);
}

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-on-surface-light);
      width: 100%;
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 100%;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.contact-address {
  font-size: 0.95rem;
  color: #c0c0c0;
}
.contact-phone,
.contact-email {
  color: #f0a500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.footer-bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

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

    .identity-lv6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-lv6__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--neutral-300);
    }

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

    .identity-lv6__body h3 {
        margin: 0 0 10px;
        color: var(--brand);
        font-size: 1rem;
    }

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

    .identity-lv6__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

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

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-on-surface-light);
      width: 100%;
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 100%;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.contact-address {
  font-size: 0.95rem;
  color: #c0c0c0;
}
.contact-phone,
.contact-email {
  color: #f0a500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.footer-bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-on-surface-light);
      width: 100%;
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 100%;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.contact-address {
  font-size: 0.95rem;
  color: #c0c0c0;
}
.contact-phone,
.contact-email {
  color: #f0a500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.footer-bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.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(0, 188, 212, 1), rgba(0, 188, 212, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(0, 188, 212, 1), rgba(0, 188, 212, 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;
        }
    }

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

    .index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

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

        transform: translateY(-18px);
    }

    .index-feedback-accordion__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-accordion__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

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

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

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

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

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

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

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .cta-struct-v5 a {
        text-decoration: none
    }

    .cta-struct-v5 .center, .cta-struct-v5 .banner, .cta-struct-v5 .stack, .cta-struct-v5 .bar, .cta-struct-v5 .split, .cta-struct-v5 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface)
    }

    .cta-struct-v5 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .cta-struct-v5 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

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

    .cta-struct-v5 .actions a, .cta-struct-v5 .center a, .cta-struct-v5 .banner > a, .cta-struct-v5 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .cta-struct-v5 .banner {
        display: grid;
        gap: .6rem
    }

    .cta-struct-v5 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .cta-struct-v5 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

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

    .cta-struct-v5 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v5 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v5 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v5 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--neutral-900);
        border: 1px solid var(--border-on-surface-light)
    }

    .cta-struct-v5 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .cta-struct-v5 .split, .cta-struct-v5 .bar, .cta-struct-v5 .duo {
            grid-template-columns:1fr
        }

        .cta-struct-v5 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v5 .numbers {
            grid-template-columns:1fr
        }
    }

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-on-surface-light);
      width: 100%;
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 100%;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.contact-address {
  font-size: 0.95rem;
  color: #c0c0c0;
}
.contact-phone,
.contact-email {
  color: #f0a500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.footer-bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

    .form-layout-a .wrap {
        max-width: 820px;
        margin: 0 auto;
    }

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

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

    .form-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 66ch;
        opacity: .92;
    }

    .form-layout-a .card {
        border: 1px solid rgba(255, 255, 255, .28);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .1);
    }

    .form-layout-a label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-a input:not([type="checkbox"]), .form-layout-a textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .34);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .15);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .form-layout-a .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-layout-a button {
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.partners {

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

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

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

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
        align-items: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .partners .partners__logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners .partners__logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .partners .partners__info h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .partners .partners__info p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0;
    }

    @media (max-width: 768px) {
        .partners .partners__item {
            flex-direction: column;
            text-align: center;
        }
    }

.contacts-fresh-v4 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .contacts-fresh-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .contacts-fresh-v4 .grid {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .contacts-fresh-v4 article {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .contacts-fresh-v4 .tag {
        margin: 0;
        font-size: .86rem;
        opacity: .9;
    }

    .contacts-fresh-v4 .value {
        margin: .45rem 0 .8rem;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .contacts-fresh-v4 a {
        color: var(--brand-contrast);
        text-decoration: underline;
    }

    @media (max-width: 760px) {
        .contacts-fresh-v4 .grid {
            grid-template-columns:1fr;
        }
    }

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-on-surface-light);
      width: 100%;
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 100%;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.contact-address {
  font-size: 0.95rem;
  color: #c0c0c0;
}
.contact-phone,
.contact-email {
  color: #f0a500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.footer-bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-on-surface-light);
      width: 100%;
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 100%;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.contact-address {
  font-size: 0.95rem;
  color: #c0c0c0;
}
.contact-phone,
.contact-email {
  color: #f0a500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.footer-bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-on-surface-light);
      width: 100%;
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 100%;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.contact-address {
  font-size: 0.95rem;
  color: #c0c0c0;
}
.contact-phone,
.contact-email {
  color: #f0a500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.footer-bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

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

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-y) var(--space-x);
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    line-height: var(--line-height-base);
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: var(--btn-ghost-bg);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    gap: 5px;
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav {
    display: flex;
    align-items: center;
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap);
  }
  .nav-list a {
    text-decoration: none;
    color: var(--fg-on-surface);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-list a:hover {
    background: var(--chip-bg);
    color: var(--link-hover);
  }
  @media (max-width: 767px) {
    .burger {
      display: flex;
    }
    .nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--surface-1);
      box-shadow: var(--shadow-lg);
      padding: var(--space-y) var(--space-x);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 999;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
    }
    .nav.open {
      right: 0;
    }
    .nav-list {
      flex-direction: column;
      width: 100%;
      gap: 0;
    }
    .nav-list a {
      display: block;
      padding: 12px 16px;
      border-bottom: 1px solid var(--border-on-surface-light);
      width: 100%;
    }
    .nav-list a:last-child {
      border-bottom: none;
    }
  }
  @media (min-width: 768px) {
    .nav {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
    }
    .nav-list {
      flex-direction: row;
    }
  }

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand {
  flex: 1 1 250px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f0a500;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.95rem;
  color: #b0b0b0;
}
.footer-right {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-nav a {
  color: #c0c0c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}
.footer-legal-links a {
  color: #a0a0a0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}
.footer-legal-links a:hover {
  color: #f0a500;
}
.footer-contact {
  flex: 1 1 100%;
  border-top: 1px solid #333;
  padding-top: 1.5rem;
  margin-top: 1rem;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: center;
}
.contact-address {
  font-size: 0.95rem;
  color: #c0c0c0;
}
.contact-phone,
.contact-email {
  color: #f0a500;
  text-decoration: none;
  font-size: 0.95rem;
  transition: opacity 0.3s;
}
.contact-phone:hover,
.contact-email:hover {
  opacity: 0.8;
}
.footer-bottom {
  flex: 1 1 100%;
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #333;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #888;
  max-width: 800px;
  margin: 0 auto 0.8rem;
  line-height: 1.5;
}
.footer-copyright {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-brand {
    flex: 1 1 auto;
  }
  .footer-right {
    flex: 1 1 auto;
    align-items: center;
  }
  .footer-nav ul {
    justify-content: center;
  }
  .footer-legal-links {
    justify-content: center;
  }
  .contact-info {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

    .cookie-cv7__card {
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(140deg, var(--brand), var(--bg-primary-hover));
        color: var(--brand-contrast);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv7__card h3 {
        margin: 0 0 6px;
    }

    .cookie-cv7__card p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv7__actions {
        margin-top: 12px;
        display: grid;
        gap: 8px;
    }

    .cookie-cv7__actions button {
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.14);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        cursor: pointer;
    }

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

.nf404-v7 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .nf404-v7 h1 {
        margin: 0;
        font-size: clamp(34px, 6vw, 58px);
    }

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

    .nf404-v7 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }