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

  --max-w: 860px;
  --space-x: 1.4rem;
  --space-y: 1.5rem;
  --gap: 0.89rem;

  --radius-xl: 0.7rem;
  --radius-lg: 0.58rem;
  --radius-md: 0.33rem;
  --radius-sm: 0.22rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 5px 10px rgba(0,0,0,0.11);
  --shadow-lg: 0 14px 20px rgba(0,0,0,0.13);

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

  --brand: #1a56db;
  --brand-contrast: #ffffff;
  --accent: #10b981;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f9fafb;
  --neutral-300: #d1d5db;
  --neutral-600: #4b5563;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

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

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

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

  --surface-light: #f8fafc;
  --fg-on-surface-light: #334155;
  --border-on-surface-light: #e2e8f0;

  --bg-primary: #1a56db;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1e40af;
  --ring: #93c5fd;

  --bg-accent: #d1fae5;
  --fg-on-accent: #065f46;
  --bg-accent-hover: #34d399;

  --link: #2563eb;
  --link-hover: #1d4ed8;

  --gradient-hero: linear-gradient(135deg, #1e40af 0%, #1a56db 100%);
  --gradient-accent: linear-gradient(90deg, #10b981 0%, #34d399 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);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .contact-cta .cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .contact-cta .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

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

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

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

  .nav-list li {
    flex: 0 0 auto;
  }

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

  .nav-list a:hover {
    color: var(--link-hover);
  }

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

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    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-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      position: relative;
      padding: 0 var(--space-x);
    }

    .main-nav {
      padding: 0;
      width: 100%;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      width: 100%;
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    margin-bottom: 2rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a5fb4;
  }
  .tagline {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
  }
  .footer-right {
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #1a5fb4;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #666;
  }
  .footer-legal-links a:hover {
    color: #1a5fb4;
    text-decoration: underline;
  }
  .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #666;
  }
  .footer-contact a {
    text-decoration: none;
    color: #1a5fb4;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  #current-year {
    font-weight: 600;
  }
  @media (min-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 2rem;
    }
    .footer-brand {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 0;
    }
    .footer-right {
      grid-column: 2;
      grid-row: 1;
      margin-bottom: 0;
      text-align: right;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-bottom {
      grid-column: 1 / span 2;
      grid-row: 2;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .footer-contact {
      order: 1;
    }
    .footer-disclaimer {
      order: 2;
      text-align: right;
      max-width: 50%;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

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

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

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

    .wp-lang-switcher-v4__container {
        display: flex;
        align-items: center;
        gap: 0;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-xl) + var(--local-random) * 4px);
        padding: calc(5px + var(--local-random) * 1px);
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v4__container.expanded {
        gap: calc(4px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v4__toggle {
        width: calc(42px + var(--local-random) * 2px);
        height: calc(42px + var(--local-random) * 2px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v4__toggle::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: spin calc(2.8s + var(--local-random) * 0.4s) linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .wp-lang-switcher-v4__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        position: relative;
        z-index: 1;
    }

    .wp-lang-switcher-v4__toggle:hover {
        transform: scale(calc(1.03 + var(--local-random) * 0.02));
    }

    .wp-lang-switcher-v4__list {
        display: flex;
        gap: calc(5px + var(--local-random) * 1px);
        max-width: 0;
        opacity: 0;
        transition: all var(--anim-duration) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .wp-lang-switcher-v4__container.expanded .wp-lang-switcher-v4__list {
        max-width: 300px;
        opacity: 1;
    }

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

        font-size: 12px;
        font-weight: 700;
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        flex-shrink: 0;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v4__list button::before,
    .wp-lang-switcher-v4__list a::before {
        content: '';
        position: absolute;
        inset: calc(-2px - var(--local-random) * 0.5px);
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        background: var(--gradient-accent);

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

    .wp-lang-switcher-v4__list button:hover,
    .wp-lang-switcher-v4__list a:hover {
        border-color: transparent;
        color: var(--fg-on-primary);
        transform: translateY(calc(-2px - var(--local-random) * 1px));
    }

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

    .wp-lang-switcher-v4__list button span,
    .wp-lang-switcher-v4__list a span {
        position: relative;
        z-index: 1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    @media (max-width: 900px) {
        .nfintro-v10__split {grid-template-columns: 1fr;}
        .nfintro-v10__rail {grid-template-columns: repeat(2, minmax(0, 1fr));}
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.index-recommendations-list {
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-recommendations-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-recommendations-list__list {
        display: grid;
        gap: 12px;
    }

    .index-recommendations-list__row {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

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

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

    .index-recommendations-list__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .index-recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .index-recommendations-list__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-800);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .index-recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .index-recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

    .index-recommendations-list__a p {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .index-recommendations-list__hint {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-recommendations-list__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
    }

    .index-recommendations-list__cta::after {
        content: '->';
    }

    .index-recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .index-recommendations-list__tag {
            display: none;
        }
    }

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

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

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

        transform: translateY(20px);
    }

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

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

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

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

        transform: translateY(30px);
    }

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

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

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

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

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

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

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .contact-cta .cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .contact-cta .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

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

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

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

  .nav-list li {
    flex: 0 0 auto;
  }

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

  .nav-list a:hover {
    color: var(--link-hover);
  }

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

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    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-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      position: relative;
      padding: 0 var(--space-x);
    }

    .main-nav {
      padding: 0;
      width: 100%;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      width: 100%;
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    margin-bottom: 2rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a5fb4;
  }
  .tagline {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
  }
  .footer-right {
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #1a5fb4;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #666;
  }
  .footer-legal-links a:hover {
    color: #1a5fb4;
    text-decoration: underline;
  }
  .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #666;
  }
  .footer-contact a {
    text-decoration: none;
    color: #1a5fb4;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  #current-year {
    font-weight: 600;
  }
  @media (min-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 2rem;
    }
    .footer-brand {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 0;
    }
    .footer-right {
      grid-column: 2;
      grid-row: 1;
      margin-bottom: 0;
      text-align: right;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-bottom {
      grid-column: 1 / span 2;
      grid-row: 2;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .footer-contact {
      order: 1;
    }
    .footer-disclaimer {
      order: 2;
      text-align: right;
      max-width: 50%;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

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

.identity-nv8 {
        padding: clamp(52px, 7vw, 92px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

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

    .identity-nv8__media img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        display: block;
        background: var(--surface-2);
    }

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

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

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

    .identity-nv8__body span {
        display: block;
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

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

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

.gallery--colored-v5 {
    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.gallery__header {
    text-align: center;
    margin-bottom: 24px;
}

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

.gallery__header p {
    margin: 0;
    color: var(--neutral-300);
}

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

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(148,163,184,0.6);
}

.gallery__item--featured {
    border-color: var(--accent);
}

.gallery__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.gallery__item figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 8px 10px;
    background: linear-gradient(to top, rgba(15,23,42,0.9), transparent);
    font-size: 0.85rem;
}

.mission--light-v6 {
        padding: 56px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .mission__inner {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
        gap: 24px;
        align-items: center;
    }

    .mission__headline h2 {
        margin: 0 0 6px;
        font-size: clamp(24px, 4vw, 30px);
    }

    .mission__headline p {
        margin: 0;
        color: var(--neutral-600);
        line-height: 1.7;
    }

    .mission__stats {
        display: grid;
        gap: 10px;
    }

    .mission__stat {
        border-radius: var(--radius-lg);
        padding: 10px 12px;
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
    }

    .mission__stat-label {
        display: block;
        font-size: 0.8rem;
        color: var(--neutral-600);
    }

    .mission__stat-value {
        display: block;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .mission__stat--accent .mission__stat-value {
        color: var(--accent);
    }

    .mission__stat--brand .mission__stat-value {
        color: var(--bg-primary);
    }

    .mission__stat--accent .mission__stat-value {
        color: var(--accent);
    }

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

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

    .faq-layout-e .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-e .accordion {
        border-top: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .entry {
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .faq-layout-e .question {
        width: 100%;
        text-align: left;
        border: 0;
        background: transparent;
        padding: 12px 0;
        font: inherit;
        font-weight: 600;
        color: var(--brand);
        cursor: pointer;
    }

    .faq-layout-e .answer {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        color: var(--neutral-600);
        padding: 0;
    }

    .faq-layout-e .entry.open .answer {
        max-height: 220px;
        padding-bottom: 12px;
    }

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

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

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .contact-cta .cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .contact-cta .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

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

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

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

  .nav-list li {
    flex: 0 0 auto;
  }

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

  .nav-list a:hover {
    color: var(--link-hover);
  }

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

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    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-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      position: relative;
      padding: 0 var(--space-x);
    }

    .main-nav {
      padding: 0;
      width: 100%;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      width: 100%;
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    margin-bottom: 2rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a5fb4;
  }
  .tagline {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
  }
  .footer-right {
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #1a5fb4;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #666;
  }
  .footer-legal-links a:hover {
    color: #1a5fb4;
    text-decoration: underline;
  }
  .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #666;
  }
  .footer-contact a {
    text-decoration: none;
    color: #1a5fb4;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  #current-year {
    font-weight: 600;
  }
  @media (min-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 2rem;
    }
    .footer-brand {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 0;
    }
    .footer-right {
      grid-column: 2;
      grid-row: 1;
      margin-bottom: 0;
      text-align: right;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-bottom {
      grid-column: 1 / span 2;
      grid-row: 2;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .footer-contact {
      order: 1;
    }
    .footer-disclaimer {
      order: 2;
      text-align: right;
      max-width: 50%;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

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

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

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

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

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

    .plans-cv2__line {
        display: flex;
        justify-content: space-between;
        gap: 8px;
        align-items: center;
    }

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.capabilities-light {

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

    .capabilities-light .capabilities-light__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

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

    }

    .capabilities-light h2 {
        font-size: clamp(32px, 5vw, 48px);
        font-weight: 800;
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

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

    .capabilities-light .capabilities-light__list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: clamp(20px, 3vw, 32px);
    }

    .capabilities-light .capabilities-light__card {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        display: flex;
        gap: clamp(16px, 2vw, 24px);
        transition: all var(--anim-duration) var(--anim-ease);

        transform: scale(0.95);
    }

    .capabilities-light .capabilities-light__card:hover {
        border-color: var(--brand);
        box-shadow: var(--shadow-md);
        transform: scale(1);
    }

    .capabilities-light .capabilities-light__visual {
        flex-shrink: 0;
        position: relative;
    }

    .capabilities-light .capabilities-light__number {
        width: 64px;
        height: 64px;
        background: var(--bg-accent);
        border-radius: var(--radius-lg);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 32px;
    }

    .capabilities-light .capabilities-light__content {
        flex: 1;
    }

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

    .capabilities-light .capabilities-light__card p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

    .hiw-split-c6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

    .hiw-split-c6__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .hiw-split-c6__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .hiw-split-c6__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-lg);
    }

    .hiw-split-c6__content p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .82rem;
    }

    .hiw-split-c6__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3.1rem);
    }

    .hiw-split-c6__content strong {
        display: block;
        margin-top: .8rem;
        color: var(--bg-accent);
    }

    .hiw-split-c6__copy {
        margin: .75rem 0 0;
        color: rgba(255, 255, 255, .85);
    }

    .hiw-split-c6__content ul {
        margin: 1rem 0 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: .65rem;
    }

    .hiw-split-c6__content li {
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .16);
    }

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

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

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .contact-cta .cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .contact-cta .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

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

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

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

  .nav-list li {
    flex: 0 0 auto;
  }

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

  .nav-list a:hover {
    color: var(--link-hover);
  }

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

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    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-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      position: relative;
      padding: 0 var(--space-x);
    }

    .main-nav {
      padding: 0;
      width: 100%;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      width: 100%;
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    margin-bottom: 2rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a5fb4;
  }
  .tagline {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
  }
  .footer-right {
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #1a5fb4;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #666;
  }
  .footer-legal-links a:hover {
    color: #1a5fb4;
    text-decoration: underline;
  }
  .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #666;
  }
  .footer-contact a {
    text-decoration: none;
    color: #1a5fb4;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  #current-year {
    font-weight: 600;
  }
  @media (min-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 2rem;
    }
    .footer-brand {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 0;
    }
    .footer-right {
      grid-column: 2;
      grid-row: 1;
      margin-bottom: 0;
      text-align: right;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-bottom {
      grid-column: 1 / span 2;
      grid-row: 2;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .footer-contact {
      order: 1;
    }
    .footer-disclaimer {
      order: 2;
      text-align: right;
      max-width: 50%;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

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

.connect--colored-v5 {
        padding: 64px 20px;
        background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), transparent),
        radial-gradient(circle at bottom right, rgba(139, 92, 246, 0.45), transparent),
        var(--neutral-900);
        color: var(--neutral-0);
    }

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

    .connect__header {
        text-align: center;
        margin-bottom: 32px;
    }

    .connect__eyebrow {
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 0.16em;
        color: rgba(191, 219, 254, 0.9);
        margin: 0 0 0.5rem;
    }

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

    .connect__text {
        margin: 0;
        color: var(--neutral-300);
    }

    .connect__channels {
        margin-top: 24px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 18px;
    }

    .connect__channel {
        background: rgba(15, 23, 42, 0.95);
        border-radius: var(--radius-xl);
        padding: 16px 18px;
        border: 1px solid rgba(148, 163, 184, 0.7);
        display: grid;
        gap: 8px;
        box-shadow: var(--shadow-md);
    }

    .connect__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(17, 24, 39, 0.96);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .connect__channel-title {
        margin: 0;
        font-size: 1rem;
        color: var(--brand-contrast);
    }

    .connect__channel-text {
        margin: 0;
        font-size: 0.9rem;
        color: rgba(226, 232, 240, 0.9);
    }

    .connect__channel-link {
        margin-top: 4px;
        font-size: 0.88rem;
        color: var(--bg-accent);
        text-decoration: none;
    }

    .connect__channel-link:hover {
        text-decoration: underline;
    }

.contacts-fresh-v2 {
        padding: calc(var(--space-y) * 2.2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .contacts-fresh-v2 .shell {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .contacts-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    }

    .contacts-fresh-v2 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .contacts-fresh-v2 article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v2 .label {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .9rem;
    }

    .contacts-fresh-v2 .value {
        margin: .2rem 0 0;
        font-weight: 700;
    }

    .contacts-fresh-v2 a {
        padding: .5rem .8rem;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    @media (max-width: 700px) {
        .contacts-fresh-v2 article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

    .nfform-v11__form {
        max-width: 760px;
        margin: 0 auto;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v11 p {
        margin: 0;
        opacity: .85;
    }

    .nfform-v11 label {
        display: grid;
        gap: 6px;
    }

    .nfform-v11 label span {
        opacity: .9;
        font-size: .9rem;
    }

    .nfform-v11 input {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .25);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .1);
        color: var(--neutral-0);
        padding: 9px;
        font: inherit;
    }

    .nfform-v11 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

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

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

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .contact-cta .cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .contact-cta .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

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

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

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

  .nav-list li {
    flex: 0 0 auto;
  }

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

  .nav-list a:hover {
    color: var(--link-hover);
  }

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

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    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-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      position: relative;
      padding: 0 var(--space-x);
    }

    .main-nav {
      padding: 0;
      width: 100%;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      width: 100%;
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    margin-bottom: 2rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a5fb4;
  }
  .tagline {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
  }
  .footer-right {
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #1a5fb4;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #666;
  }
  .footer-legal-links a:hover {
    color: #1a5fb4;
    text-decoration: underline;
  }
  .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #666;
  }
  .footer-contact a {
    text-decoration: none;
    color: #1a5fb4;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  #current-year {
    font-weight: 600;
  }
  @media (min-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 2rem;
    }
    .footer-brand {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 0;
    }
    .footer-right {
      grid-column: 2;
      grid-row: 1;
      margin-bottom: 0;
      text-align: right;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-bottom {
      grid-column: 1 / span 2;
      grid-row: 2;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .footer-contact {
      order: 1;
    }
    .footer-disclaimer {
      order: 2;
      text-align: right;
      max-width: 50%;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

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

.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);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .contact-cta .cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .contact-cta .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

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

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

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

  .nav-list li {
    flex: 0 0 auto;
  }

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

  .nav-list a:hover {
    color: var(--link-hover);
  }

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

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    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-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      position: relative;
      padding: 0 var(--space-x);
    }

    .main-nav {
      padding: 0;
      width: 100%;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      width: 100%;
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    margin-bottom: 2rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a5fb4;
  }
  .tagline {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
  }
  .footer-right {
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #1a5fb4;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #666;
  }
  .footer-legal-links a:hover {
    color: #1a5fb4;
    text-decoration: underline;
  }
  .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #666;
  }
  .footer-contact a {
    text-decoration: none;
    color: #1a5fb4;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  #current-year {
    font-weight: 600;
  }
  @media (min-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 2rem;
    }
    .footer-brand {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 0;
    }
    .footer-right {
      grid-column: 2;
      grid-row: 1;
      margin-bottom: 0;
      text-align: right;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-bottom {
      grid-column: 1 / span 2;
      grid-row: 2;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .footer-contact {
      order: 1;
    }
    .footer-disclaimer {
      order: 2;
      text-align: right;
      max-width: 50%;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    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);
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .contact-cta .cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .contact-cta .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

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

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

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

  .nav-list li {
    flex: 0 0 auto;
  }

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

  .nav-list a:hover {
    color: var(--link-hover);
  }

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

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    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-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      position: relative;
      padding: 0 var(--space-x);
    }

    .main-nav {
      padding: 0;
      width: 100%;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      width: 100%;
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    margin-bottom: 2rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a5fb4;
  }
  .tagline {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
  }
  .footer-right {
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #1a5fb4;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #666;
  }
  .footer-legal-links a:hover {
    color: #1a5fb4;
    text-decoration: underline;
  }
  .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #666;
  }
  .footer-contact a {
    text-decoration: none;
    color: #1a5fb4;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  #current-year {
    font-weight: 600;
  }
  @media (min-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 2rem;
    }
    .footer-brand {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 0;
    }
    .footer-right {
      grid-column: 2;
      grid-row: 1;
      margin-bottom: 0;
      text-align: right;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-bottom {
      grid-column: 1 / span 2;
      grid-row: 2;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .footer-contact {
      order: 1;
    }
    .footer-disclaimer {
      order: 2;
      text-align: right;
      max-width: 50%;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

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

.nfthank-v10 {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nfthank-v10__wrap {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    }

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

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

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

header {
    background-color: var(--surface-1);
    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);
  }

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

  .logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand);
  }

  .contact-cta .cta-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .contact-cta .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

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

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

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

  .nav-list li {
    flex: 0 0 auto;
  }

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

  .nav-list a:hover {
    color: var(--link-hover);
  }

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

  .nav-list a:hover::after {
    width: 100%;
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 1rem;
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
  }

  .burger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    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-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      position: relative;
      padding: 0 var(--space-x);
    }

    .main-nav {
      padding: 0;
      width: 100%;
    }

    .nav-list {
      display: none;
      flex-direction: column;
      gap: 0;
      width: 100%;
      background-color: var(--surface-2);
      position: absolute;
      top: 100%;
      left: 0;
      z-index: 1000;
      box-shadow: var(--shadow-md);
      border-top: 1px solid var(--border-on-surface-light);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list li {
      width: 100%;
    }

    .nav-list a {
      padding: 1rem var(--space-x);
      border-bottom: 1px solid var(--border-on-surface-light);
    }

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

    .burger-menu {
      display: flex;
    }

    .burger-menu.active span:nth-child(1) {
      transform: translateY(10px) rotate(45deg);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: translateY(-10px) rotate(-45deg);
    }
  }

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    font-family: sans-serif;
    color: #333;
    border-top: 1px solid #eaeaea;
  }
  .footer-brand {
    margin-bottom: 2rem;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #1a5fb4;
  }
  .tagline {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
  }
  .footer-right {
    margin-bottom: 2rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    text-decoration: none;
    color: #1a5fb4;
    font-weight: 500;
  }
  .footer-nav a:hover {
    text-decoration: underline;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
  }
  .footer-legal-links a {
    text-decoration: none;
    color: #666;
  }
  .footer-legal-links a:hover {
    color: #1a5fb4;
    text-decoration: underline;
  }
  .footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.95rem;
  }
  .footer-contact address {
    font-style: normal;
    color: #666;
  }
  .footer-contact a {
    text-decoration: none;
    color: #1a5fb4;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.5;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  #current-year {
    font-weight: 600;
  }
  @media (min-width: 768px) {
    .footer-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 2rem;
    }
    .footer-brand {
      grid-column: 1;
      grid-row: 1;
      margin-bottom: 0;
    }
    .footer-right {
      grid-column: 2;
      grid-row: 1;
      margin-bottom: 0;
      text-align: right;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-bottom {
      grid-column: 1 / span 2;
      grid-row: 2;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
    }
    .footer-contact {
      order: 1;
    }
    .footer-disclaimer {
      order: 2;
      text-align: right;
      max-width: 50%;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .cookie-lv12__actions button {
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        padding: 8px 12px;
        cursor: pointer;
    }

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

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

.err-slab-b {
    padding: clamp(56px, 10vw, 112px) 20px;
    background: var(--bg-alt);
    color: var(--fg-on-page);
}

.err-slab-b .frame {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: clamp(28px, 4vw, 46px);
    border: 2px solid var(--border-on-surface);
    border-radius: var(--radius-xl);
    background: var(--surface-1);
    box-shadow: var(--shadow-md);
}

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

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

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