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

  --max-w: 960px;
  --space-x: 1.13rem;
  --space-y: 1.5rem;
  --gap: 0.68rem;

  --radius-xl: 0.76rem;
  --radius-lg: 0.64rem;
  --radius-md: 0.34rem;
  --radius-sm: 0.24rem;

  --shadow-sm: 0 0px 1px rgba(0,0,0,0.05);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 20px rgba(0,0,0,0.08);

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

  --brand: #C0392B;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #B0B0B0;
  --neutral-600: #666666;
  --neutral-800: #2C2C2C;
  --neutral-900: #1A1A1A;

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

  --bg-alt: #F0F0F0;
  --fg-on-alt: #2C2C2C;

  --surface-1: #FFFFFF;
  --surface-2: #F9F9F9;
  --fg-on-surface: #1A1A1A;
  --border-on-surface: #E0E0E0;

  --surface-light: #FAFAFA;
  --fg-on-surface-light: #333333;
  --border-on-surface-light: #E8E8E8;

  --bg-primary: #C0392B;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #A93226;
  --ring: #C0392B;

  --bg-accent: #F39C12;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D35400;

  --link: #C0392B;
  --link-hover: #A93226;

  --gradient-hero: linear-gradient(135deg, #C0392B 0%, #E67E22 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #F39C12 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;}

.site-header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }

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

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--brand, #e63946);
    border-bottom-color: var(--brand, #e63946);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .search-toggle:hover {
    color: var(--brand, #e63946);
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
  }

  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }

    .main-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      background: var(--surface-1, #ffffff);
      padding: 2rem;
      border-radius: var(--radius-lg, 12px);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      gap: 1.25rem;
      text-align: center;
      min-width: 240px;
    }

    .nav-list a {
      font-size: 1.125rem;
      padding: 0.5rem 0;
    }

    .burger {
      display: flex;
    }

    .search-toggle {
      display: flex;
    }
  }

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

    .search-toggle {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

.intro-spokes-c3 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .intro-spokes-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .intro-spokes-c3__hero {
        flex: 1 1 22rem;
    }

    .intro-spokes-c3__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        letter-spacing: .12em;
        text-transform: uppercase;
        font-size: .82rem;
    }

    .intro-spokes-c3__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1.02;
    }

    .intro-spokes-c3__hero span {
        display: block;
        margin-top: 1rem;
        color: rgba(255, 255, 255, .88);
        max-width: 38rem;
    }

    .intro-spokes-c3__wheel {
        flex: 0 0 18rem;
        min-height: 18rem;
        position: relative;
    }

    .intro-spokes-c3__note {
        position: absolute;
        padding: .6rem .8rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-spokes-c3__note--a {
        top: 0;
        left: 18%;
    }

    .intro-spokes-c3__note--b {
        right: 0;
        top: 42%;
    }

    .intro-spokes-c3__note--c {
        left: 0;
        bottom: 12%;
    }

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

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

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

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

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

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

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

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

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

    .faq-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .faq-fresh-v5 .stack {
        display: grid;
        gap: .75rem;
    }

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

    .faq-fresh-v5 h3 {
        margin: 0 0 .5rem;
        font-size: 1rem;
    }

    .faq-fresh-v5 p {
        margin: 0;
        opacity: .88;
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }

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

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--brand, #e63946);
    border-bottom-color: var(--brand, #e63946);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .search-toggle:hover {
    color: var(--brand, #e63946);
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
  }

  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }

    .main-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      background: var(--surface-1, #ffffff);
      padding: 2rem;
      border-radius: var(--radius-lg, 12px);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      gap: 1.25rem;
      text-align: center;
      min-width: 240px;
    }

    .nav-list a {
      font-size: 1.125rem;
      padding: 0.5rem 0;
    }

    .burger {
      display: flex;
    }

    .search-toggle {
      display: flex;
    }
  }

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

    .search-toggle {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

    }

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

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

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

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

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

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

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

.add-review {

        color: var(--fg-on-page);
        background: var(--bg-page);
        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);
    }

.site-header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }

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

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--brand, #e63946);
    border-bottom-color: var(--brand, #e63946);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .search-toggle:hover {
    color: var(--brand, #e63946);
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
  }

  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }

    .main-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      background: var(--surface-1, #ffffff);
      padding: 2rem;
      border-radius: var(--radius-lg, 12px);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      gap: 1.25rem;
      text-align: center;
      min-width: 240px;
    }

    .nav-list a {
      font-size: 1.125rem;
      padding: 0.5rem 0;
    }

    .burger {
      display: flex;
    }

    .search-toggle {
      display: flex;
    }
  }

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

    .search-toggle {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

.author--light-v6 {

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

.author__inner {
    max-width: 520px;
    margin: 0 auto;
}

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

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

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

.site-header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }

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

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--brand, #e63946);
    border-bottom-color: var(--brand, #e63946);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .search-toggle:hover {
    color: var(--brand, #e63946);
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
  }

  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }

    .main-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      background: var(--surface-1, #ffffff);
      padding: 2rem;
      border-radius: var(--radius-lg, 12px);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      gap: 1.25rem;
      text-align: center;
      min-width: 240px;
    }

    .nav-list a {
      font-size: 1.125rem;
      padding: 0.5rem 0;
    }

    .burger {
      display: flex;
    }

    .search-toggle {
      display: flex;
    }
  }

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

    .search-toggle {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

.review-item {

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

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

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

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

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

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

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

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

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

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

.site-header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }

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

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--brand, #e63946);
    border-bottom-color: var(--brand, #e63946);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .search-toggle:hover {
    color: var(--brand, #e63946);
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
  }

  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }

    .main-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      background: var(--surface-1, #ffffff);
      padding: 2rem;
      border-radius: var(--radius-lg, 12px);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      gap: 1.25rem;
      text-align: center;
      min-width: 240px;
    }

    .nav-list a {
      font-size: 1.125rem;
      padding: 0.5rem 0;
    }

    .burger {
      display: flex;
    }

    .search-toggle {
      display: flex;
    }
  }

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

    .search-toggle {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

.review-item--colored-v5 {

    padding: 56px 20px;
    background: radial-gradient(circle at top left, rgba(59,130,246,0.4), transparent),
                radial-gradient(circle at bottom right, rgba(236,72,153,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

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

.review-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 18px 20px;
    border: 1px solid rgba(191,219,254,0.7);
    box-shadow: var(--shadow-lg);
}

.review-item__header {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.review-item__avatar {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-item__meta h3 {
    margin: 0 0 2px;
    font-size: 1rem;
    color: var(--brand-contrast);
}

.review-item__meta p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.review-item__rating {
    font-size: 0.9rem;
    color: var(--accent);
}

.review-item__text {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-100);
    line-height: 1.7;
}

.education-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900)
    }

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

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

    .education-struct-v1 a {
        text-decoration: none
    }

    .education-struct-v1 article, .education-struct-v1 .row, .education-struct-v1 details, .education-struct-v1 .program {
        background: var(--neutral-0);
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v1 h2, .education-struct-v1 h3 {
        color: var(--neutral-900)
    }

    .education-struct-v1 p {
        color: var(--neutral-800)
    }

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

    .education-struct-v1 .grid a, .education-struct-v1 .tiers a, .education-struct-v1 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v1 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v1 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

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

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

    .education-struct-v1 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v1 .mentors {
        display: grid;
        gap: .6rem
    }

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

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

    .education-struct-v1 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v1 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v1 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v1 .grid, .education-struct-v1 .tiers, .education-struct-v1 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v1 .grid, .education-struct-v1 .tiers, .education-struct-v1 .combo, .education-struct-v1 .row {
            grid-template-columns:1fr
        }
    }

.site-header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }

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

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--brand, #e63946);
    border-bottom-color: var(--brand, #e63946);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .search-toggle:hover {
    color: var(--brand, #e63946);
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
  }

  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }

    .main-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      background: var(--surface-1, #ffffff);
      padding: 2rem;
      border-radius: var(--radius-lg, 12px);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      gap: 1.25rem;
      text-align: center;
      min-width: 240px;
    }

    .nav-list a {
      font-size: 1.125rem;
      padding: 0.5rem 0;
    }

    .burger {
      display: flex;
    }

    .search-toggle {
      display: flex;
    }
  }

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

    .search-toggle {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        transform: translateY(-18px);
    }

    .feedback-ux7__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
    }

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

    .feedback-ux7__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .feedback-ux7__card {
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

        transform: translateY(28px);
    }

    .feedback-ux7__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
    }

    .feedback-ux7__who {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
    }

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

    .feedback-ux7__who h3 {
        margin: 0;
        font-size: 16px;
        font-weight: 800;
        color: var(--neutral-900);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 20ch;
    }

    .feedback-ux7__who p {
        margin: 2px 0 0;
        font-size: 13px;
        color: var(--neutral-600);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 26ch;
    }

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

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

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

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

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

.connect {
        color: var(--gradient-accent);
        background: var(--gradient-hero);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

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

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

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

    .connect .connect__item {
        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:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
    }

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

.site-header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }

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

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--brand, #e63946);
    border-bottom-color: var(--brand, #e63946);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .search-toggle:hover {
    color: var(--brand, #e63946);
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
  }

  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }

    .main-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      background: var(--surface-1, #ffffff);
      padding: 2rem;
      border-radius: var(--radius-lg, 12px);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      gap: 1.25rem;
      text-align: center;
      min-width: 240px;
    }

    .nav-list a {
      font-size: 1.125rem;
      padding: 0.5rem 0;
    }

    .burger {
      display: flex;
    }

    .search-toggle {
      display: flex;
    }
  }

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

    .search-toggle {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

    .nfcontacts-v7__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .nfcontacts-v7__head {
        margin-bottom: 16px;
        text-align: center;
    }

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

    .nfcontacts-v7__head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .nfcontacts-v7__panel {
        border: 1px solid rgba(255, 255, 255, .26);
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .1);
        padding: 16px;
    }

    .nfcontacts-v7__panel h3 {
        margin: 0 0 12px;
    }

    .nfcontacts-v7__list p {
        margin: 0 0 10px;
        display: grid;
        gap: 3px;
    }

    .nfcontacts-v7__social {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .nfcontacts-v7__social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: 999px;
        padding: 6px 10px;
    }

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

    .form-fresh-v1 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: calc(var(--gap) * 1.4);
    }

    .form-fresh-v1 .intro h2 {
        margin: .3rem 0;
        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    }

    .form-fresh-v1 .intro p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v1 .form {
        display: grid;
        gap: .75rem;
        padding: 1.1rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

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

    .form-fresh-v1 span {
        font-size: .85rem;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v1 input {
        padding: .68rem .8rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

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

    @media (max-width: 900px) {
        .form-fresh-v1 .shell {
            grid-template-columns:1fr;
        }
    }

.site-header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }

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

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--brand, #e63946);
    border-bottom-color: var(--brand, #e63946);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .search-toggle:hover {
    color: var(--brand, #e63946);
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
  }

  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }

    .main-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      background: var(--surface-1, #ffffff);
      padding: 2rem;
      border-radius: var(--radius-lg, 12px);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      gap: 1.25rem;
      text-align: center;
      min-width: 240px;
    }

    .nav-list a {
      font-size: 1.125rem;
      padding: 0.5rem 0;
    }

    .burger {
      display: flex;
    }

    .search-toggle {
      display: flex;
    }
  }

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

    .search-toggle {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }

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

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--brand, #e63946);
    border-bottom-color: var(--brand, #e63946);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .search-toggle:hover {
    color: var(--brand, #e63946);
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
  }

  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }

    .main-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      background: var(--surface-1, #ffffff);
      padding: 2rem;
      border-radius: var(--radius-lg, 12px);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      gap: 1.25rem;
      text-align: center;
      min-width: 240px;
    }

    .nav-list a {
      font-size: 1.125rem;
      padding: 0.5rem 0;
    }

    .burger {
      display: flex;
    }

    .search-toggle {
      display: flex;
    }
  }

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

    .search-toggle {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

.site-header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }

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

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--brand, #e63946);
    border-bottom-color: var(--brand, #e63946);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .search-toggle:hover {
    color: var(--brand, #e63946);
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
  }

  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }

    .main-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      background: var(--surface-1, #ffffff);
      padding: 2rem;
      border-radius: var(--radius-lg, 12px);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      gap: 1.25rem;
      text-align: center;
      min-width: 240px;
    }

    .nav-list a {
      font-size: 1.125rem;
      padding: 0.5rem 0;
    }

    .burger {
      display: flex;
    }

    .search-toggle {
      display: flex;
    }
  }

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

    .search-toggle {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

.nfthank-v9 {
        padding: clamp(56px, 10vw, 114px) 18px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

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

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

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

.site-header {
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1.5rem);
  }

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

  .main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: var(--gap, 1.5rem);
  }

  .nav-list a {
    text-decoration: none;
    color: var(--neutral-800, #333);
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    padding: 0.25rem 0;
    border-bottom: 2px solid transparent;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), border-color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .nav-list a:hover,
  .nav-list a:focus {
    color: var(--brand, #e63946);
    border-bottom-color: var(--brand, #e63946);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  .search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--neutral-800, #333);
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }

  .search-toggle:hover {
    color: var(--brand, #e63946);
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    width: 28px;
    height: 28px;
  }

  .burger-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--neutral-800, #333);
    border-radius: 2px;
    transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease), opacity var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }

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

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

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

  @media (max-width: 767px) {
    .header-inner {
      padding: var(--space-y, 0.75rem) var(--space-x, 1rem);
    }

    .main-nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--overlay, rgba(0,0,0,0.5));
      display: flex;
      justify-content: center;
      align-items: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity var(--anim-duration, 0.3s) var(--anim-ease, ease), visibility var(--anim-duration, 0.3s) var(--anim-ease, ease);
      z-index: 200;
    }

    .main-nav.open {
      opacity: 1;
      visibility: visible;
    }

    .nav-list {
      flex-direction: column;
      background: var(--surface-1, #ffffff);
      padding: 2rem;
      border-radius: var(--radius-lg, 12px);
      box-shadow: var(--shadow-lg, 0 10px 30px rgba(0,0,0,0.15));
      gap: 1.25rem;
      text-align: center;
      min-width: 240px;
    }

    .nav-list a {
      font-size: 1.125rem;
      padding: 0.5rem 0;
    }

    .burger {
      display: flex;
    }

    .search-toggle {
      display: flex;
    }
  }

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

    .search-toggle {
      display: flex;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid #333;
    padding-bottom: 1.5rem;
  }
  .footer-logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f0c040;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  .footer-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  .footer-nav a:hover {
    color: #f0c040;
  }
  .footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-contact address {
    font-style: normal;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.95rem;
  }
  .contact-item .icon {
    font-size: 1.1rem;
  }
  .contact-item a {
    color: #b0b0b0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f0c040;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
  }
  .footer-links {
    display: flex;
    gap: 1.5rem;
  }
  .footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .footer-links a:hover {
    color: #f0c040;
  }
  .footer-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 1rem;
    margin-top: 0.5rem;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-contact address {
      flex-direction: column;
      gap: 0.8rem;
    }
    .footer-legal {
      flex-direction: column;
      text-align: center;
    }
    .footer-links {
      justify-content: center;
    }
  }

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

    .cookie-lv6__card {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        color: var(--fg-on-surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv6__card h3 {
        margin: 0 0 6px;
        color: var(--fg-on-page);
    }

    .cookie-lv6__card p {
        margin: 0;
    }

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

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

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

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

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

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

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

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