:root {
  --font-family: "Raleway", sans-serif;
  --font-size-base: 16.8px;
  --line-height-base: 1.48;

  --max-w: 1380px;
  --space-x: 1rem;
  --space-y: 1.5rem;
  --gap: 1.83rem;

  --radius-xl: 1.36rem;
  --radius-lg: 0.9rem;
  --radius-md: 0.5rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 1px 8px rgba(0,0,0,0.23);
  --shadow-md: 0 12px 22px rgba(0,0,0,0.3);
  --shadow-lg: 0 18px 52px rgba(0,0,0,0.36);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 180ms;
  --anim-ease: ease;
  --random-number: 2;

  --brand: #0056B3;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B00;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #6C7A95;
  --neutral-800: #2D3748;
  --neutral-900: #1A202C;

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

  --bg-alt: #F5F7FA;
  --fg-on-alt: #2D3748;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #2D3748;
  --border-on-surface: #D1D9E6;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #2D3748;
  --border-on-surface-light: #E2E8F0;

  --bg-primary: #0056B3;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #004A9A;
  --ring: #0056B3;

  --bg-accent: #FF6B00;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E05E00;

  --link: #0056B3;
  --link-hover: #004A9A;

  --gradient-hero: linear-gradient(135deg, #0056B3 0%, #003D82 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B00 0%, #E05E00 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);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header__nav-group {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .header__nav-group--left,
    .header__nav-group--right {
        flex: 1;
    }

    .header__nav-group--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        padding: 0 calc(var(--space-x) * 2);
    }

    .header__logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .header__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .header__link:hover,
    .header__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    @media (max-width: 767px) {
        .header__nav-group {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            flex-direction: column;
            padding: var(--space-y) var(--space-x);
            gap: calc(var(--gap) / 2);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 999;
        }

        .header__nav-group--left,
        .header__nav-group--right {
            flex: none;
            justify-content: stretch;
        }

        .header__nav-group--active {
            display: flex;
        }

        .header__burger {
            display: flex;
        }

        .header__logo {
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  .footer-legal-links {
    margin-bottom: 0.75rem;
  }
  .footer-legal-links a {
    color: #555;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #000;
  }
  .separator {
    margin: 0 0.5rem;
    color: #aaa;
  }
  .footer-disclaimer {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-menu a {
    color: #555;
    text-decoration: none;
  }
  .footer-menu a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-brand, .footer-nav, .footer-contact {
      width: 100%;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

.intro-stack-l12 {
        padding: clamp(3.6rem, 8vw, 6.5rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .intro-stack-l12__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .intro-stack-l12__hero {
        text-align: center;
    }

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

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

    .intro-stack-l12__hero strong {
        display: block;
        margin-top: .7rem;
    }

    .intro-stack-l12__panels {
        margin-top: 1.15rem;
        display: grid;
        gap: .8rem;
    }

    .intro-stack-l12__panels article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        color: var(--neutral-600);
    }

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

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

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

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

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

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

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

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

    .faq-layout-b .wrap {
        max-width: 940px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-b .grid {
        display: grid;
        gap: var(--gap);
    }

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

    .faq-layout-b summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-b details p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--colored.why-choose--v2 {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__row {
            transition: none;
        }

        .why-choose__row::after {
            display: none;
        }
    }

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

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

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

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

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

    .touch-bulletin ul {
        margin: var(--space-y) 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
    }

    .touch-bulletin li {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 16px 20px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 16px;
        align-items: center;
        transition: box-shadow var(--anim-duration) var(--anim-ease);
    }

    .touch-bulletin li:hover {
        box-shadow: var(--shadow-sm);
    }

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

    .touch-bulletin strong {
        color: var(--fg-on-surface);
        font-weight: 600;
    }

    .touch-bulletin li a {
        color: var(--link);
        text-decoration: none;
        font-weight: 500;
        white-space: nowrap;
    }

    .touch-bulletin li a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    .touch-bulletin .cta {
        display: inline-block;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        padding: 14px 28px;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
        border: none;
        font-size: 1rem;
    }

    .touch-bulletin .cta:hover {
        background: var(--bg-primary-hover);
    }

    .contact-form button.cta {
        width: 100%;
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header__nav-group {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .header__nav-group--left,
    .header__nav-group--right {
        flex: 1;
    }

    .header__nav-group--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        padding: 0 calc(var(--space-x) * 2);
    }

    .header__logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .header__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .header__link:hover,
    .header__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    @media (max-width: 767px) {
        .header__nav-group {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            flex-direction: column;
            padding: var(--space-y) var(--space-x);
            gap: calc(var(--gap) / 2);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 999;
        }

        .header__nav-group--left,
        .header__nav-group--right {
            flex: none;
            justify-content: stretch;
        }

        .header__nav-group--active {
            display: flex;
        }

        .header__burger {
            display: flex;
        }

        .header__logo {
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  .footer-legal-links {
    margin-bottom: 0.75rem;
  }
  .footer-legal-links a {
    color: #555;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #000;
  }
  .separator {
    margin: 0 0.5rem;
    color: #aaa;
  }
  .footer-disclaimer {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-menu a {
    color: #555;
    text-decoration: none;
  }
  .footer-menu a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-brand, .footer-nav, .footer-contact {
      width: 100%;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

.review-list {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .review-list p {

        line-height: 1.6;
        margin: 0 0 1rem;
    }

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

    }

.add-review {

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

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

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

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

    .add-review .add-review__form {
        background: var(--surface-2);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

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

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

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

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

    .add-review .add-review__form input,
    .add-review .add-review__form textarea {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        outline: none;
        font-family: var(--font-family);
    }

    .add-review .add-review__form input::placeholder,
    .add-review .add-review__form textarea::placeholder {
        color: var(--input-placeholder);
    }

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

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

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header__nav-group {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .header__nav-group--left,
    .header__nav-group--right {
        flex: 1;
    }

    .header__nav-group--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        padding: 0 calc(var(--space-x) * 2);
    }

    .header__logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .header__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .header__link:hover,
    .header__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    @media (max-width: 767px) {
        .header__nav-group {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            flex-direction: column;
            padding: var(--space-y) var(--space-x);
            gap: calc(var(--gap) / 2);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 999;
        }

        .header__nav-group--left,
        .header__nav-group--right {
            flex: none;
            justify-content: stretch;
        }

        .header__nav-group--active {
            display: flex;
        }

        .header__burger {
            display: flex;
        }

        .header__logo {
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  .footer-legal-links {
    margin-bottom: 0.75rem;
  }
  .footer-legal-links a {
    color: #555;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #000;
  }
  .separator {
    margin: 0 0.5rem;
    color: #aaa;
  }
  .footer-disclaimer {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-menu a {
    color: #555;
    text-decoration: none;
  }
  .footer-menu a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-brand, .footer-nav, .footer-contact {
      width: 100%;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

.review-item--light-v6 {

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

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

.review-item__content {
    margin: 0;
    padding: 18px 20px;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-md);
}

.review-item__content blockquote {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-800);
    line-height: 1.7;
}

.review-item__content figcaption {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: 0.85rem;
}

.review-item__name {
    font-weight: 600;
    color: var(--bg-primary);
}

.review-item__role {
    color: var(--neutral-600);
}

.author {

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

    .author .author__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .author .author__content {
        display: flex;
        gap: clamp(24px, 4vw, 40px);
        align-items: flex-start;
    }

    .author .author__image {
        flex-shrink: 0;
        width: clamp(120px, 18vw, 180px);
        height: clamp(120px, 18vw, 180px);
        border-radius: 50%;
        overflow: hidden;
    }

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

    .author .author__info h3 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-alt);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.5rem;
    }

    .author .author__contacts a {
        color: var(--link);
        text-decoration: none;
        font-size: clamp(14px, 2vw, 16px);
    }

    .author .author__contacts a:hover {
        color: var(--link-hover);
    }

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header__nav-group {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .header__nav-group--left,
    .header__nav-group--right {
        flex: 1;
    }

    .header__nav-group--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        padding: 0 calc(var(--space-x) * 2);
    }

    .header__logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .header__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .header__link:hover,
    .header__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    @media (max-width: 767px) {
        .header__nav-group {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            flex-direction: column;
            padding: var(--space-y) var(--space-x);
            gap: calc(var(--gap) / 2);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 999;
        }

        .header__nav-group--left,
        .header__nav-group--right {
            flex: none;
            justify-content: stretch;
        }

        .header__nav-group--active {
            display: flex;
        }

        .header__burger {
            display: flex;
        }

        .header__logo {
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  .footer-legal-links {
    margin-bottom: 0.75rem;
  }
  .footer-legal-links a {
    color: #555;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #000;
  }
  .separator {
    margin: 0 0.5rem;
    color: #aaa;
  }
  .footer-disclaimer {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-menu a {
    color: #555;
    text-decoration: none;
  }
  .footer-menu a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-brand, .footer-nav, .footer-contact {
      width: 100%;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

.review-item {

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

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

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

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

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

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

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

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

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

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

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

    .faq-layout-b .wrap {
        max-width: 940px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-b .grid {
        display: grid;
        gap: var(--gap);
    }

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

    .faq-layout-b summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-b details p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header__nav-group {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .header__nav-group--left,
    .header__nav-group--right {
        flex: 1;
    }

    .header__nav-group--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        padding: 0 calc(var(--space-x) * 2);
    }

    .header__logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .header__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .header__link:hover,
    .header__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    @media (max-width: 767px) {
        .header__nav-group {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            flex-direction: column;
            padding: var(--space-y) var(--space-x);
            gap: calc(var(--gap) / 2);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 999;
        }

        .header__nav-group--left,
        .header__nav-group--right {
            flex: none;
            justify-content: stretch;
        }

        .header__nav-group--active {
            display: flex;
        }

        .header__burger {
            display: flex;
        }

        .header__logo {
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  .footer-legal-links {
    margin-bottom: 0.75rem;
  }
  .footer-legal-links a {
    color: #555;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #000;
  }
  .separator {
    margin: 0 0.5rem;
    color: #aaa;
  }
  .footer-disclaimer {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-menu a {
    color: #555;
    text-decoration: none;
  }
  .footer-menu a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-brand, .footer-nav, .footer-contact {
      width: 100%;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

.review-item {

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

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

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

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

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

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

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

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

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

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header__nav-group {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .header__nav-group--left,
    .header__nav-group--right {
        flex: 1;
    }

    .header__nav-group--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        padding: 0 calc(var(--space-x) * 2);
    }

    .header__logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .header__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .header__link:hover,
    .header__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    @media (max-width: 767px) {
        .header__nav-group {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            flex-direction: column;
            padding: var(--space-y) var(--space-x);
            gap: calc(var(--gap) / 2);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 999;
        }

        .header__nav-group--left,
        .header__nav-group--right {
            flex: none;
            justify-content: stretch;
        }

        .header__nav-group--active {
            display: flex;
        }

        .header__burger {
            display: flex;
        }

        .header__logo {
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  .footer-legal-links {
    margin-bottom: 0.75rem;
  }
  .footer-legal-links a {
    color: #555;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #000;
  }
  .separator {
    margin: 0 0.5rem;
    color: #aaa;
  }
  .footer-disclaimer {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-menu a {
    color: #555;
    text-decoration: none;
  }
  .footer-menu a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-brand, .footer-nav, .footer-contact {
      width: 100%;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--colored.why-choose--v2 {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__row {
            transition: none;
        }

        .why-choose__row::after {
            display: none;
        }
    }

.next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: var(--accent);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--accent-contrast);
        text-decoration: none;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
    }

    .next-fan-c5__tail {
        margin-top: 1rem;

    }

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header__nav-group {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .header__nav-group--left,
    .header__nav-group--right {
        flex: 1;
    }

    .header__nav-group--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        padding: 0 calc(var(--space-x) * 2);
    }

    .header__logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .header__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .header__link:hover,
    .header__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    @media (max-width: 767px) {
        .header__nav-group {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            flex-direction: column;
            padding: var(--space-y) var(--space-x);
            gap: calc(var(--gap) / 2);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 999;
        }

        .header__nav-group--left,
        .header__nav-group--right {
            flex: none;
            justify-content: stretch;
        }

        .header__nav-group--active {
            display: flex;
        }

        .header__burger {
            display: flex;
        }

        .header__logo {
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  .footer-legal-links {
    margin-bottom: 0.75rem;
  }
  .footer-legal-links a {
    color: #555;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #000;
  }
  .separator {
    margin: 0 0.5rem;
    color: #aaa;
  }
  .footer-disclaimer {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-menu a {
    color: #555;
    text-decoration: none;
  }
  .footer-menu a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-brand, .footer-nav, .footer-contact {
      width: 100%;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

    .form-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .82;
    }

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

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

    .form-fresh-v5 span {
        font-size: .82rem;
        opacity: .85;
    }

    .form-fresh-v5 input {
        padding: .65rem .75rem;
        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-v5 button {
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

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

.support-cv3 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .support-cv3__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .support-cv3__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-cv3__list {
        display: grid;
        gap: 10px;
    }

    .support-cv3__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-cv3__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-cv3__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-cv3__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header__nav-group {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .header__nav-group--left,
    .header__nav-group--right {
        flex: 1;
    }

    .header__nav-group--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        padding: 0 calc(var(--space-x) * 2);
    }

    .header__logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .header__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .header__link:hover,
    .header__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    @media (max-width: 767px) {
        .header__nav-group {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            flex-direction: column;
            padding: var(--space-y) var(--space-x);
            gap: calc(var(--gap) / 2);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 999;
        }

        .header__nav-group--left,
        .header__nav-group--right {
            flex: none;
            justify-content: stretch;
        }

        .header__nav-group--active {
            display: flex;
        }

        .header__burger {
            display: flex;
        }

        .header__logo {
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  .footer-legal-links {
    margin-bottom: 0.75rem;
  }
  .footer-legal-links a {
    color: #555;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #000;
  }
  .separator {
    margin: 0 0.5rem;
    color: #aaa;
  }
  .footer-disclaimer {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-menu a {
    color: #555;
    text-decoration: none;
  }
  .footer-menu a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-brand, .footer-nav, .footer-contact {
      width: 100%;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

    .terms-layout-d .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-d .section-head {
        margin-bottom: 16px;
    }

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
    }

    .terms-layout-d p, .terms-layout-d li li {
        color: var(--neutral-100);
    }
    .terms-layout-d a {
        color: var(--neutral-100);
        text-decoration: underline;
    }
    .terms-layout-d a:hover {
        color: var(--neutral-0);
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header__nav-group {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .header__nav-group--left,
    .header__nav-group--right {
        flex: 1;
    }

    .header__nav-group--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        padding: 0 calc(var(--space-x) * 2);
    }

    .header__logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .header__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .header__link:hover,
    .header__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    @media (max-width: 767px) {
        .header__nav-group {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            flex-direction: column;
            padding: var(--space-y) var(--space-x);
            gap: calc(var(--gap) / 2);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 999;
        }

        .header__nav-group--left,
        .header__nav-group--right {
            flex: none;
            justify-content: stretch;
        }

        .header__nav-group--active {
            display: flex;
        }

        .header__burger {
            display: flex;
        }

        .header__logo {
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  .footer-legal-links {
    margin-bottom: 0.75rem;
  }
  .footer-legal-links a {
    color: #555;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #000;
  }
  .separator {
    margin: 0 0.5rem;
    color: #aaa;
  }
  .footer-disclaimer {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-menu a {
    color: #555;
    text-decoration: none;
  }
  .footer-menu a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-brand, .footer-nav, .footer-contact {
      width: 100%;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

    .terms-layout-a .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .terms-layout-a .section-head {
        margin-bottom: 16px;
    }

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

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

    .terms-layout-a article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
        margin-bottom: 12px;
    }

    .terms-layout-a h3, .terms-layout-a h4 {
        margin: 0 0 8px;
    }

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header__nav-group {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .header__nav-group--left,
    .header__nav-group--right {
        flex: 1;
    }

    .header__nav-group--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        padding: 0 calc(var(--space-x) * 2);
    }

    .header__logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .header__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .header__link:hover,
    .header__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    @media (max-width: 767px) {
        .header__nav-group {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            flex-direction: column;
            padding: var(--space-y) var(--space-x);
            gap: calc(var(--gap) / 2);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 999;
        }

        .header__nav-group--left,
        .header__nav-group--right {
            flex: none;
            justify-content: stretch;
        }

        .header__nav-group--active {
            display: flex;
        }

        .header__burger {
            display: flex;
        }

        .header__logo {
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  .footer-legal-links {
    margin-bottom: 0.75rem;
  }
  .footer-legal-links a {
    color: #555;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #000;
  }
  .separator {
    margin: 0 0.5rem;
    color: #aaa;
  }
  .footer-disclaimer {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-menu a {
    color: #555;
    text-decoration: none;
  }
  .footer-menu a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-brand, .footer-nav, .footer-contact {
      width: 100%;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

.nfthank-v12 {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nfthank-v12__shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-top: 6px solid var(--accent);
        border-left: 1px solid var(--border-on-surface);
        border-right: 1px solid var(--border-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: clamp(30px, 4vw, 46px);
    }

    .nfthank-v12 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 52px);
        color: var(--brand);
    }

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

    .nfthank-v12 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        padding: var(--space-y) 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow-sm);
    }

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

    .header__nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .header__nav-group {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }

    .header__nav-group--left,
    .header__nav-group--right {
        flex: 1;
    }

    .header__nav-group--right {
        justify-content: flex-end;
    }

    .header__logo {
        flex-shrink: 0;
        padding: 0 calc(var(--space-x) * 2);
    }

    .header__logo-text {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        letter-spacing: -0.5px;
    }

    .header__link {
        color: var(--fg-on-surface);
        text-decoration: none;
        padding: calc(var(--space-y) / 2) var(--space-x);
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
        font-weight: 500;
    }

    .header__link:hover,
    .header__link:focus-visible {
        background-color: var(--btn-ghost-bg-hover);
        color: var(--link-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }

    .header__burger {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: calc(var(--space-y) / 2);
        flex-direction: column;
        justify-content: space-between;
        width: 2.5rem;
        height: 2rem;
        z-index: 1001;
    }

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

    @media (max-width: 767px) {
        .header__nav-group {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background-color: var(--surface-1);
            flex-direction: column;
            padding: var(--space-y) var(--space-x);
            gap: calc(var(--gap) / 2);
            border-top: 1px solid var(--border-on-surface);
            box-shadow: var(--shadow-md);
            border-radius: 0 0 var(--radius-lg) var(--radius-lg);
            z-index: 999;
        }

        .header__nav-group--left,
        .header__nav-group--right {
            flex: none;
            justify-content: stretch;
        }

        .header__nav-group--active {
            display: flex;
        }

        .header__burger {
            display: flex;
        }

        .header__logo {
            padding: 0;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(2) {
            opacity: 0;
        }

        .header__burger[aria-expanded="true"] .header__burger-line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
    }

.footer {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    color: #333;
    font-family: sans-serif;
    padding: 2rem 1rem;
    font-size: 0.9rem;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #2c3e50;
  }
  .footer-legal-links {
    margin-bottom: 0.75rem;
  }
  .footer-legal-links a {
    color: #555;
    text-decoration: none;
  }
  .footer-legal-links a:hover {
    text-decoration: underline;
    color: #000;
  }
  .separator {
    margin: 0 0.5rem;
    color: #aaa;
  }
  .footer-disclaimer {
    color: #666;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.5rem;
  }
  .footer-menu a {
    color: #555;
    text-decoration: none;
  }
  .footer-menu a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .footer-contact address {
    font-style: normal;
    line-height: 1.6;
    color: #555;
  }
  .footer-contact a {
    color: #555;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
    color: #000;
  }
  .footer-copyright {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
    text-align: center;
    color: #777;
    font-size: 0.85rem;
    width: 100%;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-brand, .footer-nav, .footer-contact {
      width: 100%;
    }
    .footer-disclaimer {
      max-width: 100%;
    }
  }

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

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

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

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

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

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

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

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

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

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

.err-slab-d {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: var(--accent);
        color: var(--neutral-0);
    }

    .err-slab-d .plate {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 50px);
        border-radius: var(--radius-xl);
        background: linear-gradient(160deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
        border: 1px solid rgba(255, 255, 255, 0.25);
    }

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

    .err-slab-d p {
        margin: 12px 0 0;
        color: var(--neutral-100);
    }

    .err-slab-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: var(--radius-md);
        background: var(--accent);
        color: var(--accent-contrast);
        text-decoration: none;
    }