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

  --max-w: 1000px;
  --space-x: 2.19rem;
  --space-y: 1.5rem;
  --gap: 1.04rem;

  --radius-xl: 1.33rem;
  --radius-lg: 1rem;
  --radius-md: 0.62rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.02);
  --shadow-md: 0 3px 18px rgba(0,0,0,0.03);
  --shadow-lg: 0 14px 34px rgba(0,0,0,0.03);

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

  --brand: #2A5C87;
  --brand-contrast: #FFFFFF;
  --accent: #D35400;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #7E8A9A;
  --neutral-800: #3A4556;
  --neutral-900: #1A202C;

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

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

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #1A202C;
  --border-on-surface: #E2E8F0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #3A4556;
  --border-on-surface-light: #D1D9E6;

  --bg-primary: #2A5C87;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1E4668;
  --ring: rgba(42, 92, 135, 0.4);

  --bg-accent: #FFF3E0;
  --fg-on-accent: #5D4037;
  --bg-accent-hover: #E65100;

  --link: #2A5C87;
  --link-hover: #1E4668;

  --gradient-hero: linear-gradient(135deg, #2A5C87 0%, #3A7CA5 100%);
  --gradient-accent: linear-gradient(90deg, #FFF3E0 0%, #FFECB3 100%);

  --btn-ghost-bg: transparent;
  --btn-ghost-bg-hover: rgba(255,255,255,0.06);
  --chip-bg: rgba(255,255,255,0.08);
  --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);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    flex-shrink: 0;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--gap) * 2);
  }

  .main-nav a {
    color: var(--link);
    text-decoration: none;
    padding: var(--space-y) 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--link-hover);
    outline: none;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover::after,
  .main-nav a:focus::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .burger-menu {
      display: flex;
    }

    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      border-top: none;
    }

    .main-nav.active {
      max-height: 300px;
    }

    .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: var(--space-y) 0;
    }

    .main-nav li {
      width: 100%;
      text-align: center;
    }

    .main-nav a {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      width: 100%;
    }

    .main-nav a::after {
      display: none;
    }

    .cta-button {
      order: 1;
      margin-left: auto;
      margin-right: var(--gap);
    }
  }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 5%;
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  .footer-column h3, .footer-column h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
  }
  .footer-column h3 {
    font-size: 1.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .copyright {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    font-size: 0.8rem;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.75rem;
  }
  .footer-menu a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-info a {
    color: #444;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #555;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 5%;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.wp-lang-switcher-v3 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v3__btn {
        width: calc(54px + var(--local-random) * 4px);
        height: calc(54px + var(--local-random) * 4px);
        background: var(--surface-1);
        color: var(--bg-primary);
        border: calc(2px + var(--local-random) * 0.5px) solid var(--bg-primary);
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow-md);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
    }

    .wp-lang-switcher-v3__btn::before {
        content: '';
        position: absolute;
        inset: calc(-2px - var(--local-random) * 0.5px);
        border-radius: 50%;
        background: var(--gradient-hero);

        z-index: -1;
        transition: opacity var(--anim-duration) var(--anim-ease);
        animation: pulse calc(1.8s + var(--local-random) * 0.4s) ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1);  }
        50% { transform: scale(1.1); opacity: 0.3; }
    }

    .wp-lang-switcher-v3__btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        transform: scale(calc(1.03 + var(--local-random) * 0.02));
        box-shadow: var(--shadow-lg);
    }

    .wp-lang-switcher-v3__btn:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v3__text {
        font-weight: 700;
        font-size: calc(13px + var(--local-random) * 1px);
        letter-spacing: calc(0.8px + var(--local-random) * 0.2px);
    }

    .wp-lang-switcher-v3__dropdown {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 12px);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-xl) - var(--local-random) * 4px);
        box-shadow: var(--shadow-lg);
        padding: calc(6px + var(--local-random) * 2px);
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: calc(6px + var(--local-random) * 2px);

        transform: scale(0.8);
        transform-origin: bottom right;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v3__dropdown.open {
        display: grid;
        opacity: 1;
        transform: scale(1);
    }

    .wp-lang-switcher-v3__dropdown button,
    .wp-lang-switcher-v3__dropdown a {
        width: calc(46px + var(--local-random) * 2px);
        height: calc(46px + var(--local-random) * 2px);
        border: 2px solid var(--border-on-surface);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;

        font-size: 13px;
        font-weight: 600;
        border-radius: 50%;
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        overflow: hidden;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v3__dropdown button::after {
        content: attr(data-lang);
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--fg-on-primary);
        text-transform: uppercase;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v3__dropdown button:hover {
        border-color: var(--bg-primary);
        transform: scale(calc(1.08 + var(--local-random) * 0.02));
    }

    .wp-lang-switcher-v3__dropdown button:hover::before,
    .wp-lang-switcher-v3__dropdown a:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v3__dropdown button:hover::after,
    .wp-lang-switcher-v3__dropdown a:hover::after {
        opacity: 1;
    }

.hero {
        position: relative;
        min-height: 600px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

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

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

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

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

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

    .hero__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: var(--radius-md);
        font-weight: 500;
        text-align: center;
        transition: all var(--anim-duration) var(--anim-ease);
        cursor: pointer;
        border: 1px solid transparent;
        font-size: 1rem;
    }

    .hero__btn--primary {
        background-color: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

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

    .hero__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

    .hero__btn--outline:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

.value-points-columns {

        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
    }

    .value-points-columns__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .value-points-columns__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 70px);

        transform: translateY(-20px);
    }

    .value-points-columns__h p {
        margin: 0 0 0.75rem;
        color: var(--brand);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        font-size: 12px;
    }

    .value-points-columns__h h2 {
        margin: 0;
        font-size: clamp(32px, 4.8vw, 52px);
        font-weight: 800;
        color: var(--fg-on-alt);
    }

    .value-points-columns__wrap {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
        gap: clamp(18px, 3vw, 28px);
    }

    .value-points-columns__item {
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        padding: clamp(22px, 3vw, 30px);
        box-shadow: var(--shadow-sm);

        transform: translateY(30px);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .value-points-columns__item h3 {
        margin: 0;
        font-size: clamp(18px, 2.4vw, 24px);
    }

    .value-points-columns__item p {
        margin: 0;
        color: var(--neutral-600);
    }

    .value-points-columns__item span {
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: var(--accent);
    }

.next-stages {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: linear-gradient(150deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

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

    .next-stages .intro {
        max-width: 66ch;
        margin: 0 auto 14px;
        text-align: center;
    }

    .next-stages .intro p {
        margin: 8px 0 0;
        opacity: .9;
    }

    .next-stages h2 {
        margin: 8px 0;
        font-size: clamp(30px, 4.4vw, 46px);
    }

    .next-stages .stages {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 10px;
    }

    .next-stages article {
        border: 1px solid rgba(255, 255, 255, .35);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        padding: 12px;
        animation: stageIn 420ms ease both;
    }

    .next-stages article:nth-child(2) {
        animation-delay: 80ms;
    }

    .next-stages article:nth-child(3) {
        animation-delay: 160ms;
    }

    .next-stages article:nth-child(4) {
        animation-delay: 240ms;
    }

    .next-stages .icon {
        margin: 0 0 6px;
        opacity: .92;
    }

    .next-stages h3 {
        margin: 0 0 8px;
        font-size: 1rem;
    }

    .next-stages a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

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

.visual-highlights-light {

        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(60px, 8vw, 100px) clamp(18px, 4vw, 48px);
        position: relative;
    }

    .visual-highlights-light::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 15% 15%, rgba(0, 86, 179, 0.08), transparent 55%);
        pointer-events: none;
    }

    .visual-highlights-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .visual-highlights-light__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 72px);

        transform: translateY(-20px);
    }

    .visual-highlights-light h2 {
        margin: 0 0 1rem;
        font-size: clamp(30px, 4.8vw, 48px);
        font-weight: 800;
    }

    .visual-highlights-light__subtitle {
        margin: 0;
        color: var(--neutral-600);
        font-size: clamp(16px, 2vw, 20px);
    }

    .visual-highlights-light__board {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .visual-highlights-light__tile {
        margin: 0;
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        overflow: hidden;
        box-shadow: var(--shadow-md);

        transform: translateY(32px);
        transition: box-shadow 0.3s ease, transform 0.3s ease;
    }

    .visual-highlights-light__tile:hover {
        box-shadow: var(--shadow-lg);
        transform: translateY(0);
    }

    .visual-highlights-light__snapshot {
        position: relative;
        padding-top: 62%;
        overflow: hidden;
    }

    .visual-highlights-light__snapshot img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .visual-highlights-light__tile:hover img {
        transform: scale(1.04);
    }

    .visual-highlights-light__chip {
        position: absolute;
        bottom: 16px;
        left: 16px;
        padding: 6px 14px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 600;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        box-shadow: 0 6px 14px rgba(255, 107, 53, 0.25);
    }

    .visual-highlights-light__tile figcaption {
        padding: clamp(20px, 3vw, 28px);
    }

    .visual-highlights-light__caption {
        margin: 0 0 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.18em;
        font-size: 11px;
        color: var(--neutral-600);
    }

    .visual-highlights-light__tile h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(18px, 2.2vw, 24px);
        color: var(--fg-on-page);
    }

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

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

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

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

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

    .touch-orbit header p {
        margin: 10px auto 0;
        max-width: 64ch;
        opacity: .92;
        color: var(--neutral-800);
    }

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

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

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

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

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

    .touch-orbit .badge {
        display: inline-block;
        background: var(--chip-bg);
        color: var(--fg-on-surface);
        padding: 2px 8px;
        border-radius: var(--radius-sm);
        font-size: 0.8rem;
    }

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

    .touch-orbit .card a:hover {
        color: var(--link-hover);
    }

    .main-form button:hover {
        background: var(--bg-primary-hover);
    }

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    flex-shrink: 0;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--gap) * 2);
  }

  .main-nav a {
    color: var(--link);
    text-decoration: none;
    padding: var(--space-y) 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--link-hover);
    outline: none;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover::after,
  .main-nav a:focus::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .burger-menu {
      display: flex;
    }

    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      border-top: none;
    }

    .main-nav.active {
      max-height: 300px;
    }

    .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: var(--space-y) 0;
    }

    .main-nav li {
      width: 100%;
      text-align: center;
    }

    .main-nav a {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      width: 100%;
    }

    .main-nav a::after {
      display: none;
    }

    .cta-button {
      order: 1;
      margin-left: auto;
      margin-right: var(--gap);
    }
  }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 5%;
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  .footer-column h3, .footer-column h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
  }
  .footer-column h3 {
    font-size: 1.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .copyright {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    font-size: 0.8rem;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.75rem;
  }
  .footer-menu a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-info a {
    color: #444;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #555;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 5%;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

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

    .faq-layout-d .card {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .faq-layout-d .card h3 {
        margin: 0;
        font-size: 1.05rem;
        color: var(--neutral-900);
    }

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

.our-story--colored-v5 {

    padding: 64px 20px;
    background:
        radial-gradient(circle at top left, var(--accent), transparent),
        radial-gradient(circle at bottom right, var(--bg-page), transparent),
        var(--neutral-900);
    color: var(--neutral-0);
}

.our-story__inner {
    max-width: var(--max-w);
    margin: 0 auto;
}

.our-story__badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.our-story__layout {
    display: grid;
    grid-template-columns: minmax(0,1.6fr) minmax(0,1fr);
    gap: 24px;
    align-items: stretch;
}

.our-story__content h2 {
    margin: 0 0 8px;
    font-size: clamp(24px,4vw,32px);
    color: var(--brand-contrast);
}

.our-story__lead {
    margin: 0 0 10px;
    font-size: 0.95rem;
    color: var(--neutral-100);
}

.our-story__text {
    margin: 0;
    font-size: 0.92rem;
    color: var(--neutral-300);
    line-height: 1.7;
}

.our-story__side {
    display: grid;
    gap: 10px;
}

.our-story__stat {
    border-radius: var(--radius-xl);
    padding: 10px 12px;
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.75);
}

.our-story__stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.our-story__stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.our-story__stat--brand .our-story__stat-value {
    color: var(--bg-primary);
}
.our-story__stat--accent .our-story__stat-value {
    color: var(--accent);
}
.our-story__stat--accent .our-story__stat-value {
    color: var(--accent);
}

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

.identity-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .identity-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .identity-lv4__head {
        margin-bottom: 15px;
    }

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

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

    .identity-lv4__head span {
        color: var(--neutral-600);
    }

    .identity-lv4__stack {
        display: grid;
        gap: 10px;
    }

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

    .identity-lv4__line {
        display: flex;
        align-items: baseline;
        gap: 8px;
        flex-wrap: wrap;
    }

    .identity-lv4__line i {
        font-style: normal;
        color: var(--link);
    }

    .identity-lv4__line h3 {
        margin: 0;
    }

    .identity-lv4__stack p {
        margin: 7px 0 6px;
        color: var(--neutral-600);
    }

    .identity-lv4__stack small {
        color: var(--neutral-800);
        font-weight: 600;
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    flex-shrink: 0;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--gap) * 2);
  }

  .main-nav a {
    color: var(--link);
    text-decoration: none;
    padding: var(--space-y) 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--link-hover);
    outline: none;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover::after,
  .main-nav a:focus::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .burger-menu {
      display: flex;
    }

    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      border-top: none;
    }

    .main-nav.active {
      max-height: 300px;
    }

    .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: var(--space-y) 0;
    }

    .main-nav li {
      width: 100%;
      text-align: center;
    }

    .main-nav a {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      width: 100%;
    }

    .main-nav a::after {
      display: none;
    }

    .cta-button {
      order: 1;
      margin-left: auto;
      margin-right: var(--gap);
    }
  }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 5%;
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  .footer-column h3, .footer-column h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
  }
  .footer-column h3 {
    font-size: 1.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .copyright {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    font-size: 0.8rem;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.75rem;
  }
  .footer-menu a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-info a {
    color: #444;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #555;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 5%;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.plans-lv2 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .plans-lv2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .plans-lv2__head {
        margin-bottom: 14px;
    }

    .plans-lv2__head h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 44px);
    }

    .plans-lv2__head p {
        margin: 8px 0 0;
        color: var(--neutral-600);
    }

    .plans-lv2__range {
        margin-bottom: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
        display: grid;
        gap: 8px;
    }

    .plans-lv2__range label {
        font-weight: 700;
    }

    .plans-lv2__range input {
        width: 100%;
        accent-color: var(--bg-primary);
    }

    .plans-lv2__range span {
        color: var(--neutral-600);
    }

    .plans-lv2__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

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

    .plans-lv2__grid h3 {
        margin: 0;
    }

    .plans-lv2__tier {
        margin: 5px 0 7px;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv2__price {
        margin: 0 0 6px;
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--fg-on-page);
    }

    .plans-lv2__desc {
        margin: 0;
        color: var(--neutral-600);
    }

    .plans-lv2__grid ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-lv2__grid button {
        width: 100%;
        margin-top: 10px;
        border: 1px solid var(--bg-primary);
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

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

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
}

.hiw-l1 {

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

    .hiw-l1__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    .hiw-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
    }

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

    .hiw-l1__grid {
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 14px;
        position: relative;
    }

    .hiw-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
    }

    /* коннектор к следующему карточке (пульсирует постоянно) */
    .hiw-l1__card:not(:nth-child(3n))::after {
        content: '';
        position: absolute;
        right: -16px;
        top: 50%;
        width: 15px;
        height: 4px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(0, 86, 179, 0.25), rgba(0, 86, 179, 0.75), rgba(0, 86, 179, 0.25));
        transform: translateY(-50%);
        animation: hiwL1Link 1.9s ease-in-out infinite;
    }

    @keyframes hiwL1Link {
        0%, 100% {
            opacity: .45;
            filter: blur(0px)
        }
        50% {
            opacity: 1;
            filter: blur(0.3px)
        }
    }

    .hiw-l1__head {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .hiw-l1__n {
        width: 40px;
        height: 40px;
        border-radius: 16px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .hiw-l1__t {
        font-weight: 900;
        letter-spacing: -.01em;
    }

    .hiw-l1__d {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .hiw-l1__card:hover {
        transform: translateY(-3px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 980px) {
        .hiw-l1__card {
            grid-column: span 6;
        }

        .hiw-l1__card:not(:nth-child(2n))::after {
            display: none;
        }
    }

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

        .hiw-l1__card::after {
            display: none;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .hiw-l1__card::after {
            animation: none;
        }
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    flex-shrink: 0;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--gap) * 2);
  }

  .main-nav a {
    color: var(--link);
    text-decoration: none;
    padding: var(--space-y) 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--link-hover);
    outline: none;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover::after,
  .main-nav a:focus::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .burger-menu {
      display: flex;
    }

    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      border-top: none;
    }

    .main-nav.active {
      max-height: 300px;
    }

    .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: var(--space-y) 0;
    }

    .main-nav li {
      width: 100%;
      text-align: center;
    }

    .main-nav a {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      width: 100%;
    }

    .main-nav a::after {
      display: none;
    }

    .cta-button {
      order: 1;
      margin-left: auto;
      margin-right: var(--gap);
    }
  }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 5%;
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  .footer-column h3, .footer-column h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
  }
  .footer-column h3 {
    font-size: 1.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .copyright {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    font-size: 0.8rem;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.75rem;
  }
  .footer-menu a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-info a {
    color: #444;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #555;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 5%;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.support-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .support-lv6__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

    .support-lv6__table {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .support-lv6__table article {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
    }

    .support-lv6__table article:last-child {
        border-bottom: 0;
    }

    .support-lv6__table h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .contact-layout-e .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .contact-layout-e .section-head {
        margin-bottom: 16px;
    }

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .contact-layout-e aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

    .contact-layout-e .social {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .contact-layout-e .row a {
        color: var(--link);
        text-decoration: none;
    }

    .contact-layout-e .row a:hover {
        color: var(--link-hover);
        text-decoration: underline;
    }

    @media (max-width: 760px) {
        .contact-layout-e .rail {
            grid-template-columns: 1fr;
        }
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    flex-shrink: 0;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--gap) * 2);
  }

  .main-nav a {
    color: var(--link);
    text-decoration: none;
    padding: var(--space-y) 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--link-hover);
    outline: none;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover::after,
  .main-nav a:focus::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .burger-menu {
      display: flex;
    }

    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      border-top: none;
    }

    .main-nav.active {
      max-height: 300px;
    }

    .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: var(--space-y) 0;
    }

    .main-nav li {
      width: 100%;
      text-align: center;
    }

    .main-nav a {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      width: 100%;
    }

    .main-nav a::after {
      display: none;
    }

    .cta-button {
      order: 1;
      margin-left: auto;
      margin-right: var(--gap);
    }
  }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 5%;
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  .footer-column h3, .footer-column h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
  }
  .footer-column h3 {
    font-size: 1.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .copyright {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    font-size: 0.8rem;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.75rem;
  }
  .footer-menu a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-info a {
    color: #444;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #555;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 5%;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    flex-shrink: 0;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--gap) * 2);
  }

  .main-nav a {
    color: var(--link);
    text-decoration: none;
    padding: var(--space-y) 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--link-hover);
    outline: none;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover::after,
  .main-nav a:focus::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .burger-menu {
      display: flex;
    }

    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      border-top: none;
    }

    .main-nav.active {
      max-height: 300px;
    }

    .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: var(--space-y) 0;
    }

    .main-nav li {
      width: 100%;
      text-align: center;
    }

    .main-nav a {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      width: 100%;
    }

    .main-nav a::after {
      display: none;
    }

    .cta-button {
      order: 1;
      margin-left: auto;
      margin-right: var(--gap);
    }
  }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 5%;
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  .footer-column h3, .footer-column h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
  }
  .footer-column h3 {
    font-size: 1.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .copyright {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    font-size: 0.8rem;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.75rem;
  }
  .footer-menu a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-info a {
    color: #444;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #555;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 5%;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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

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

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

    .terms-layout-f h3 {
        margin: 0 0 8px;
        color: var(--brand);
    }

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    flex-shrink: 0;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--gap) * 2);
  }

  .main-nav a {
    color: var(--link);
    text-decoration: none;
    padding: var(--space-y) 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--link-hover);
    outline: none;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover::after,
  .main-nav a:focus::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .burger-menu {
      display: flex;
    }

    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      border-top: none;
    }

    .main-nav.active {
      max-height: 300px;
    }

    .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: var(--space-y) 0;
    }

    .main-nav li {
      width: 100%;
      text-align: center;
    }

    .main-nav a {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      width: 100%;
    }

    .main-nav a::after {
      display: none;
    }

    .cta-button {
      order: 1;
      margin-left: auto;
      margin-right: var(--gap);
    }
  }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 5%;
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  .footer-column h3, .footer-column h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
  }
  .footer-column h3 {
    font-size: 1.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .copyright {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    font-size: 0.8rem;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.75rem;
  }
  .footer-menu a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-info a {
    color: #444;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #555;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 5%;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

    .thank-mode-b h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
        color: var(--brand);
    }

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

    .thank-mode-b a {
        display: inline-block;
        margin-top: 18px;
        padding: 11px 18px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    position: relative;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: bold;
    color: var(--brand);
    flex-shrink: 0;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    flex-shrink: 0;
    white-space: nowrap;
  }

  .cta-button:hover,
  .cta-button:focus {
    background-color: var(--bg-accent-hover);
    outline: 2px solid var(--ring);
    outline-offset: 2px;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) * 0.5);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
  }

  .burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

  .main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: calc(var(--gap) * 2);
  }

  .main-nav a {
    color: var(--link);
    text-decoration: none;
    padding: var(--space-y) 0;
    display: inline-block;
    font-weight: 500;
    position: relative;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover,
  .main-nav a:focus {
    color: var(--link-hover);
    outline: none;
  }

  .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--anim-duration) var(--anim-ease);
  }

  .main-nav a:hover::after,
  .main-nav a:focus::after {
    width: 100%;
  }

  @media (max-width: 767px) {
    .burger-menu {
      display: flex;
    }

    .main-nav {
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      z-index: 1000;
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease);
      border-top: none;
    }

    .main-nav.active {
      max-height: 300px;
    }

    .main-nav ul {
      flex-direction: column;
      align-items: center;
      gap: 0;
      padding: var(--space-y) 0;
    }

    .main-nav li {
      width: 100%;
      text-align: center;
    }

    .main-nav a {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      width: 100%;
    }

    .main-nav a::after {
      display: none;
    }

    .cta-button {
      order: 1;
      margin-left: auto;
      margin-right: var(--gap);
    }
  }

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.5rem 5%;
    background-color: #f8f9fa;
    color: #333;
    border-top: 1px solid #dee2e6;
    font-family: sans-serif;
  }
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  .footer-column h3, .footer-column h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #2c3e50;
  }
  .footer-column h3 {
    font-size: 1.5rem;
  }
  .disclaimer {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
    max-width: 90%;
  }
  .copyright {
    font-size: 0.8rem;
    color: #777;
    margin-bottom: 0.5rem;
  }
  .legal-links {
    font-size: 0.8rem;
  }
  .legal-links a {
    color: #555;
    text-decoration: none;
  }
  .legal-links a:hover {
    text-decoration: underline;
  }
  .footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-menu li {
    margin-bottom: 0.75rem;
  }
  .footer-menu a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-menu a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.5;
  }
  .contact-info a {
    color: #444;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .social-links {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
  }
  .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #ddd;
    color: #555;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }
  .social-links a:hover {
    background-color: #ccc;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 5%;
    }
    .disclaimer {
      max-width: 100%;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

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

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

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

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