:root {
  --font-family: "Epilogue", sans-serif;
  --font-size-base: 18.6px;
  --line-height-base: 1.47;

  --max-w: 1300px;
  --space-x: 1.37rem;
  --space-y: 1.16rem;
  --gap: 1.99rem;

  --radius-xl: 1.34rem;
  --radius-lg: 1rem;
  --radius-md: 0.56rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.13);
  --shadow-md: 0 14px 28px rgba(0,0,0,0.16);
  --shadow-lg: 0 26px 54px rgba(0,0,0,0.2);

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

  --brand: #1a3a5c;
  --brand-contrast: #ffffff;
  --accent: #d35400;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f5f5f5;
  --neutral-300: #d1d5db;
  --neutral-600: #6b7280;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #ffffff;
  --fg-on-page: #1f2937;

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

  --surface-1: #ffffff;
  --surface-2: #f9fafb;
  --fg-on-surface: #1f2937;
  --border-on-surface: #e5e7eb;

  --surface-light: #f9fafb;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #1a5276;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #154360;
  --ring: #1a5276;

  --bg-accent: #e67e22;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #c0392b;

  --link: #1a5276;
  --link-hover: #d35400;

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #1a5276 100%);
  --gradient-accent: linear-gradient(135deg, #e67e22 0%, #d35400 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.68);
  --input-placeholder: rgba(255,255,255,0.55);
}
body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
*{box-sizing:border-box;}

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    letter-spacing: 0.5px;
  }
  .copyright {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .contact-item a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-left {
      align-items: center;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.hero {
        position: relative;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: #000000;
        overflow: hidden;
    }

    .hero--compact {
        min-height: 400px;
    }

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

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

    .hero--tint .hero__overlay {
        opacity: 0.55;
    }

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

    .hero--tint .hero__content {
        background: var(--chip-bg);
        border-radius: var(--radius-lg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto 0;
        max-width: 700px;
    }

.next-signal-c7 {
        padding: clamp(3.7rem, 8vw, 6.3rem) var(--space-x);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .next-signal-c7__wrap {
        max-width: 60rem;
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: 1rem;
        align-items: center;
    }

    .next-signal-c7__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

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

    .next-signal-c7__copy span {
        display: block;
        margin-top: .85rem;

    }

    .next-signal-c7__stack {
        display: grid;
        gap: .7rem;
    }

    .next-signal-c7__stack a {
        display: flex;
        justify-content: space-between;
        gap: .75rem;
        align-items: center;
        padding: .9rem 1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .next-signal-c7__stack span {
        color: rgba(255, 255, 255, .8);
    }

    .next-signal-c7__button {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

    @media (max-width: 820px) {
        .next-signal-c7__wrap {
            grid-template-columns: 1fr;
        }
    }

.clarifications-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .clarifications-l2__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .clarifications-l2__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-alt);
    }

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

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* постоянный скан */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

    .clarifications-l2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS добавит “плавающее” выделение активного ряда */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

    @media (max-width: 720px) {
        .clarifications-l2__row {
            grid-template-columns:1fr
        }

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l2__scan {
            animation: none;
        }
    }

.why-choose {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

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

        transform: translateY(20px);
    }

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

    .why-choose .why-choose__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        opacity: 0.9;
    }

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

    .why-choose .why-choose__item {
        background: var(--fg-on-primary);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        transition: transform var(--anim-duration) var(--anim-ease);

        transform: translateY(30px);
    }

    .why-choose .why-choose__item:hover {
        transform: translateY(-4px);
    }

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

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

    .why-choose .why-choose__item p {
        margin: 0;
        color: var(--fg-on-surface-light);
        opacity: 0.85;
        line-height: var(--line-height-base);
    }

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

    .values-ranks-l10__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-ranks-l10__head {
        margin-bottom: 1.1rem;
        text-align: center;
    }

    .values-ranks-l10__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .values-ranks-l10__head span {
        display: block;
        margin-top: .75rem;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows {
        display: grid;
        gap: .8rem;
    }

    .values-ranks-l10__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-ranks-l10__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ranks-l10__rows h3 {
        margin: 0;
    }

    .values-ranks-l10__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    letter-spacing: 0.5px;
  }
  .copyright {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .contact-item a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-left {
      align-items: center;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.messages {

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

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

    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    }

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

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

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

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

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

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

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

    }

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

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

    .messages .messages__chat-form input::placeholder {

    }

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

.index-feedback {
        background: radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.7), transparent 60%),
        radial-gradient(circle at 85% 65%, rgba(212, 165, 165, 0.35), transparent 55%),
        var(--gradient-accent);
        color: var(--fg-on-primary);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

    .index-feedback__h {
        text-align: center;
        margin-bottom: clamp(28px, 6vw, 60px);

        transform: translateY(-18px);
    }

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

    .index-feedback__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

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

    .index-feedback__card {
        border-radius: var(--radius-xl);
        border: 1px solid rgba(58, 46, 61, 0.12);
        background: rgba(255, 255, 255, 0.6);
        box-shadow: var(--shadow-lg);
        padding: clamp(18px, 3vw, 26px);
        backdrop-filter: blur(10px);

        transform: translateY(28px);
        position: relative;
        overflow: hidden;
    }

    .index-feedback__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.6), transparent 55%);
        opacity: 0.6;
        pointer-events: none;
    }

    .index-feedback__top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 14px;
        position: relative;
        z-index: 1;
    }

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

    .index-feedback__name {
        margin: 0;
        font-size: 16px;
        font-weight: 700;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback__meta {
        margin: 2px 0 0;
        font-size: 13px;
        color: rgba(58, 46, 61, 0.7);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 22ch;
    }

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

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

    .index-feedback__score {
        font-size: 12px;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .index-feedback__quote {
        margin: 14px 0 0;
        position: relative;
        z-index: 1;
        color: rgba(58, 46, 61, 0.88);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback__badge {
        display: inline-flex;
        margin-top: 12px;
        position: relative;
        z-index: 1;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid var(--border-on-surface-light);
        font-size: 11px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

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

    .faq-fresh-v4 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap);
    }

    .faq-fresh-v4 .cover {
        padding: 1.1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        align-self: start;
    }

    .faq-fresh-v4 .cover h2 {
        margin: 0 0 .5rem;
    }

    .faq-fresh-v4 .cover p {
        margin: 0;
        opacity: .9;
    }

    .faq-fresh-v4 .rows {
        display: grid;
        gap: .75rem;
    }

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

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

    .faq-fresh-v4 details p {
        margin: .65rem 0 0;
        opacity: .9;
    }

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

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

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    letter-spacing: 0.5px;
  }
  .copyright {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .contact-item a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-left {
      align-items: center;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.touch-orbit {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .touch-orbit .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .touch-orbit .touch-header {
        margin-bottom: 14px;
        text-align: center;
    }

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

    .touch-orbit .touch-header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
    }

    .touch-orbit .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 10px;
    }

    .touch-orbit .card {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: orbitIn 420ms ease both;
    }

    .touch-orbit .card:nth-child(2) {
        animation-delay: 90ms;
    }

    .touch-orbit .card:nth-child(3) {
        animation-delay: 180ms;
    }

    .touch-orbit .icon,
    .touch-orbit .badge,
    .touch-orbit h3,
    .touch-orbit .card p {
        margin: 0 0 8px;
    }

    .touch-orbit .card a {
        color: var(--accent-contrast);
        text-decoration: underline;
    }

    .touch-orbit .main {
        display: inline-block;
        margin-top: 14px;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    @keyframes orbitIn {
        from {
            opacity: 0;
            transform: translateY(8px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

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

    .values-ranks-l10__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-ranks-l10__head {
        margin-bottom: 1.1rem;
        text-align: center;
    }

    .values-ranks-l10__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .values-ranks-l10__head span {
        display: block;
        margin-top: .75rem;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows {
        display: grid;
        gap: .8rem;
    }

    .values-ranks-l10__rows article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-ranks-l10__rows strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: 999px;
        background: var(--surface-2);
        color: var(--brand);
    }

    .values-ranks-l10__rows h3 {
        margin: 0;
    }

    .values-ranks-l10__rows p {
        margin: .35rem 0 0;
        color: var(--neutral-600);
    }

    .values-ranks-l10__rows small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    letter-spacing: 0.5px;
  }
  .copyright {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .contact-item a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-left {
      align-items: center;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

.support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .support-lv4__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-lv4__wrap article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-lv4__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

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

    @media (max-width: 700px) {
        .support-lv4__wrap {
            grid-template-columns: 1fr;
        }
    }

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

    .faq-fresh-v4 .shell {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap);
    }

    .faq-fresh-v4 .cover {
        padding: 1.1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        align-self: start;
    }

    .faq-fresh-v4 .cover h2 {
        margin: 0 0 .5rem;
    }

    .faq-fresh-v4 .cover p {
        margin: 0;
        opacity: .9;
    }

    .faq-fresh-v4 .rows {
        display: grid;
        gap: .75rem;
    }

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

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

    .faq-fresh-v4 details p {
        margin: .65rem 0 0;
        opacity: .9;
    }

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

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    letter-spacing: 0.5px;
  }
  .copyright {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .contact-item a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-left {
      align-items: center;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

    .form-fresh-v4 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

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

    .form-fresh-v4 .steps {
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
    }

    .form-fresh-v4 .steps span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--btn-ghost-bg-hover);
        font-size: .8rem;
    }

    .form-fresh-v4 .fields {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .form-fresh-v4 label {
        display: grid;
        gap: .3rem;
        font-size: .88rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    letter-spacing: 0.5px;
  }
  .copyright {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .contact-item a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-left {
      align-items: center;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    letter-spacing: 0.5px;
  }
  .copyright {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .contact-item a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-left {
      align-items: center;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    letter-spacing: 0.5px;
  }
  .copyright {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .contact-item a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-left {
      align-items: center;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }

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

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

  .logo:hover {
    color: var(--brand-contrast);
  }

  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: var(--btn-ghost-bg);
    border: 1px solid var(--border-on-surface);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 8px;
    transition: background var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

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

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

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

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

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

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    opacity: 0;
  }

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

  .nav-list {
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    display: flex;
    flex-direction: column;
    gap: var(--gap);
  }

  .nav-link {
    display: block;
    padding: 8px 0;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-bottom: 1px solid transparent;
    transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--brand);
    border-bottom-color: var(--brand);
  }

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

    .nav {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      border-bottom: 1px solid var(--border-on-surface);
      box-shadow: var(--shadow-md);
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }

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

    .nav-list {
      flex-direction: column;
      gap: var(--gap);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-left {
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f39c12;
    letter-spacing: 0.5px;
  }
  .copyright {
    font-size: 0.85rem;
    opacity: 0.8;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #f39c12;
  }
  .footer-policy a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-policy a:hover {
    color: #f39c12;
  }
  .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .contact-item {
    font-size: 0.9rem;
  }
  .contact-item a {
    color: #ecf0f1;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f39c12;
  }
  .footer-disclaimer {
    font-size: 0.75rem;
    opacity: 0.7;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
  }
  @media (max-width: 600px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-left {
      align-items: center;
    }
  }

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

    .cookie-cv11__content {
        max-width: min(920px, 100%);
        margin: 0 auto;
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        border-radius: var(--radius-xl);
        background: linear-gradient(135deg, var(--accent), var(--brand-2, #2f80ed));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: var(--gap);
        align-items: center;
    }

    .cookie-cv11__text strong {
        display: block;
        margin-bottom: 4px;
    }

    .cookie-cv11__text p {
        margin: 0;
        opacity: 0.95;
    }

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

    .cookie-cv11__actions button {
        border: 1px solid rgba(255, 255, 255, 0.35);
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

    .cookie-cv11__actions button[data-choice='accept'] {
        background: var(--fg-on-primary);
        color: var(--accent);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv11__content {
            grid-template-columns: 1fr;
        }

        .cookie-cv11__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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