:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 17.2px;
  --line-height-base: 1.83;

  --max-w: 1020px;
  --space-x: 1.16rem;
  --space-y: 1.5rem;
  --gap: 0.99rem;

  --radius-xl: 0.78rem;
  --radius-lg: 0.62rem;
  --radius-md: 0.35rem;
  --radius-sm: 0.18rem;

  --shadow-sm: 0 0px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 10px rgba(0,0,0,0.05);
  --shadow-lg: 0 14px 26px rgba(0,0,0,0.07);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 400ms;
  --anim-ease: ease-in-out;
  --random-number: 1;

  --brand: #6C63FF;
  --brand-contrast: #FFFFFF;
  --accent: #FF6584;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F8F9FA;
  --neutral-300: #DEE2E6;
  --neutral-600: #6C757D;
  --neutral-800: #343A40;
  --neutral-900: #212529;

  --bg-page: #FFFFFF;
  --fg-on-page: #212529;

  --bg-alt: #F8F9FA;
  --fg-on-alt: #343A40;

  --surface-1: #FFFFFF;
  --surface-2: #F8F9FA;
  --fg-on-surface: #212529;
  --border-on-surface: #E9ECEF;

  --surface-light: rgba(108, 99, 255, 0.05);
  --fg-on-surface-light: #6C63FF;
  --border-on-surface-light: rgba(108, 99, 255, 0.2);

  --bg-primary: #6C63FF;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #5A52E0;
  --ring: rgba(108, 99, 255, 0.4);

  --bg-accent: rgba(255, 101, 132, 0.1);
  --fg-on-accent: #FF6584;
  --bg-accent-hover: #FF4D6D;

  --link: #6C63FF;
  --link-hover: #5A52E0;

  --gradient-hero: linear-gradient(135deg, #6C63FF 0%, #9D4EDD 100%);
  --gradient-accent: linear-gradient(90deg, #FF6584 0%, #FF9E6D 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 Top */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
  }

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  /* Main Navigation */
  .main-nav {
    background: var(--surface-2);
    padding: 0 var(--space-x);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: calc(var(--space-y) * 0.75) 0;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      display: flex;
      justify-content: flex-end;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background: var(--surface-1);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 80px;
      gap: 0;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      box-shadow: var(--shadow-lg);
      z-index: 5;
    }

    .nav-list.active {
      transform: translateX(0);
    }

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

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    /* Burger animation when active */
    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Overlay when menu is open */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
    }
  }

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 180px;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
  }
  .nav-list a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .contact-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .contact-address {
    font-style: normal;
  }
  .contact-link {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-link:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #555;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
  }
  .copyright {
    flex: 1;
    min-width: 300px;
  }
  .legal-links {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #aaa;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .disclaimer {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #777;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .legal-links {
      order: 2;
    }
    .copyright {
      order: 1;
    }
    .disclaimer {
      order: 3;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.wp-lang-switcher-v6 {
        position: fixed;
        right: clamp(16px, 2vw, var(--space-x, 24px));
        bottom: clamp(16px, 2vw, var(--space-y, 20px));
        z-index: 99999;

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

    .wp-lang-switcher-v6__btn {
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        padding: calc(9px + var(--local-random) * 1px) calc(14px + var(--local-random) * 2px);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        box-shadow: var(--shadow-sm, 0 2px 4px rgba(0,0,0,0.05));
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);

        font-size: 14px;
        font-weight: 400;
        position: relative;
    }

    .wp-lang-switcher-v6__btn::after {
        content: '';
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 0;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-top: 5px solid var(--neutral-600, #4b5563);
        transition: transform var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__btn:hover {
        background: var(--surface-2, #f9fafb);
        border-color: var(--neutral-300, #d1d5db);
    }

    .wp-lang-switcher-v6__dropdown.open ~ .wp-lang-switcher-v6__btn::after,
    .wp-lang-switcher-v6__btn:has(~ .wp-lang-switcher-v6__dropdown.open)::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .wp-lang-switcher-v6__flag {
        font-size: 18px;
        line-height: 1;
    }

    .wp-lang-switcher-v6__text {
        padding-right: calc(12px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v6__dropdown {
        display: none;
        position: absolute;
        right: 0;
        bottom: calc(100% + 4px);
        background: var(--surface-1, #fff);
        border: 1px solid var(--border-on-surface, #e5e7eb);
        border-radius: calc(var(--radius-sm, 8px) + var(--local-random) * 1px);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
        min-width: calc(180px + var(--local-random) * 10px);
        overflow: hidden;

        transform: translateY(6px);
        transition: all var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
    }

    .wp-lang-switcher-v6__dropdown.open {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .wp-lang-switcher-v6__dropdown button,
    .wp-lang-switcher-v6__dropdown a {
        width: 100%;
        text-align: left;
        padding: calc(9px + var(--local-random) * 1px) calc(12px + var(--local-random) * 2px);
        border: 0;
        background: var(--surface-1, #fff);
        color: var(--fg-on-surface, #111827);
        cursor: pointer;

        font-size: 14px;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: background var(--anim-duration, 0.3s) var(--anim-ease, ease-in-out);
        text-decoration: none;
    }

    .wp-lang-switcher-v6__dropdown button:hover,
    .wp-lang-switcher-v6__dropdown a:hover {
        background: var(--bg-alt, #f9fafb);
    }

    .wp-lang-switcher-v6__dropdown button:active,
    .wp-lang-switcher-v6__dropdown a:active {
        background: var(--neutral-100, #f3f4f6);
    }

.hero {
        position: relative;
        min-height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--neutral-0);
        overflow: hidden;
    }

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

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

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

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

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

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

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

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

.values-spine-c1 {
        padding: clamp(3.5rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .values-spine-c1__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-spine-c1__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .values-spine-c1__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .values-spine-c1__head h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-0);
    }

    .values-spine-c1__head span {
        display: block;
        margin-top: .8rem;
        color: rgba(255, 255, 255, .9);
    }

    .values-spine-c1__list {
        display: grid;
        gap: .8rem;
    }

    .values-spine-c1__list article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--neutral-0);
    }

    .values-spine-c1__list strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: bold;
    }

    .values-spine-c1__list h3 {
        margin: 0;
        color: var(--neutral-0);
    }

    .values-spine-c1__list p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .85);
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .7);
        font-style: italic;
    }

.social-l1 {

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

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

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

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

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

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

    .social-l1__card {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        transform-style: preserve-3d;
        transition: transform 420ms var(--anim-ease);
        min-height: 170px;
    }

    .social-l1__card:hover {
        transform: rotateY(180deg);
    }

    .social-l1__front,
    .social-l1__back {
        position: absolute;
        inset: 0;
        padding: 16px;
        backface-visibility: hidden;
        border-radius: inherit;
    }

    .social-l1__front::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(260px 130px at 20% 15%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(240px 140px at 85% 35%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
        border-radius: inherit;
    }

    .social-l1__chip {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        position: relative;
    }

    .social-l1__big {
        margin-top: 12px;
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
        letter-spacing: -.01em;
        position: relative;
    }

    .social-l1__small {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
        position: relative;
    }

    .social-l1__back {
        transform: rotateY(180deg);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
    }

    .social-l1__backTitle {
        font-weight: 900;
        color: var(--bg-primary);
        letter-spacing: -.01em;
        margin-bottom: 8px;
    }

    .social-l1__backText {
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

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

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

.why-choose {

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

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

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

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

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

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

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

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

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

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

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

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

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

        pointer-events: none;
    }

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

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

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

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

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

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

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

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

/* Header Top */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
  }

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  /* Main Navigation */
  .main-nav {
    background: var(--surface-2);
    padding: 0 var(--space-x);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: calc(var(--space-y) * 0.75) 0;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      display: flex;
      justify-content: flex-end;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background: var(--surface-1);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 80px;
      gap: 0;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      box-shadow: var(--shadow-lg);
      z-index: 5;
    }

    .nav-list.active {
      transform: translateX(0);
    }

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

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    /* Burger animation when active */
    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Overlay when menu is open */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
    }
  }

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 180px;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
  }
  .nav-list a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .contact-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .contact-address {
    font-style: normal;
  }
  .contact-link {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-link:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #555;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
  }
  .copyright {
    flex: 1;
    min-width: 300px;
  }
  .legal-links {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #aaa;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .disclaimer {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #777;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .legal-links {
      order: 2;
    }
    .copyright {
      order: 1;
    }
    .disclaimer {
      order: 3;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.story-stream-l7 {
        padding: clamp(3.2rem, 7vw, 5.8rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .story-stream-l7__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.4rem;
        flex-wrap: wrap;
        align-items: start;
    }

    .story-stream-l7__media {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .story-stream-l7__content {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

    .story-stream-l7__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-stream-l7__content p:first-child {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-stream-l7__content h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-stream-l7__content strong {
        display: block;
        margin-top: .75rem;
    }

    .story-stream-l7__copy {
        margin: .75rem 0 0;
        color: var(--neutral-600);
    }

    .story-stream-l7__content a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

.identity-cv1 {
        padding: clamp(56px, 8vw, 104px) clamp(16px, 4vw, 40px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .identity-cv1__head {
        text-align: center;
        margin-bottom: 18px;
    }

    .identity-cv1__head p {
        margin: 0;
        opacity: .9;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .identity-cv1__head h2 {
        margin: 8px 0;
        font-size: clamp(30px, 5vw, 52px);
    }

    .identity-cv1__head span {
        display: block;
        max-width: 74ch;
        margin: 0 auto;
        opacity: .92;
    }

    .identity-cv1__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }

    .identity-cv1__grid article {
        border: 1px solid rgba(255, 255, 255, 0.25);
        background: rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-md);
    }

    .identity-cv1__icon {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }

    .identity-cv1__grid h3 {
        margin: 0;
    }

    .identity-cv1__grid p {
        margin: 7px 0;
        opacity: .92;
    }

    .identity-cv1__grid small {
        opacity: .9;
    }

.about-timeline {

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

    .about-timeline .about-timeline__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-timeline .about-timeline__tl {
        display: grid;
        gap: 16px;
    }

    .about-timeline .about-timeline__tl .timeline {
        list-style: none;
        border-left: 3px solid var(--bg-primary);
        padding: .4rem .6rem .4rem 1rem;
    }

    .about-timeline time {
        display: block;
        font-weight: 700;
        color: var(--fg-on-page);
    }

    .about-timeline p {
        margin: .25rem 0 0;
        color: var(--neutral-600);
    }

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

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

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

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

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

    .faq-layout-c .faq-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
        counter-reset: faq;
    }

    .faq-layout-c .row {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .faq-layout-c .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        cursor: pointer;
    }

    .faq-layout-c .q span {
        display: inline-block;
        min-width: 50px;
        color: var(--brand);
        font-weight: 700;
    }

    .faq-layout-c .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-c .a p {
        margin: 0;
        padding: 0 12px 12px;
        color: var(--neutral-600);
    }

    .faq-layout-c .row.open .a {
        max-height: 240px;
    }

/* Header Top */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
  }

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  /* Main Navigation */
  .main-nav {
    background: var(--surface-2);
    padding: 0 var(--space-x);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: calc(var(--space-y) * 0.75) 0;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      display: flex;
      justify-content: flex-end;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background: var(--surface-1);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 80px;
      gap: 0;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      box-shadow: var(--shadow-lg);
      z-index: 5;
    }

    .nav-list.active {
      transform: translateX(0);
    }

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

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    /* Burger animation when active */
    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Overlay when menu is open */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
    }
  }

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 180px;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
  }
  .nav-list a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .contact-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .contact-address {
    font-style: normal;
  }
  .contact-link {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-link:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #555;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
  }
  .copyright {
    flex: 1;
    min-width: 300px;
  }
  .legal-links {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #aaa;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .disclaimer {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #777;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .legal-links {
      order: 2;
    }
    .copyright {
      order: 1;
    }
    .disclaimer {
      order: 3;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.hiw-ribbon-c1 {
        padding: clamp(3.5rem, 7vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .hiw-ribbon-c1__head {
        margin-bottom: 1.25rem;
    }

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

    .hiw-ribbon-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .hiw-ribbon-c1__track {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
        gap: var(--gap);
    }

    .hiw-ribbon-c1__track article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
        box-shadow: var(--shadow-md);
        position: relative;
    }

    .hiw-ribbon-c1__track article::after {
        content: '';
        position: absolute;
        inset: auto 1rem 0.7rem 1rem;
        height: 2px;
        background: linear-gradient(90deg, rgba(255, 255, 255, .45), transparent);
    }

    .hiw-ribbon-c1__track span {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .hiw-ribbon-c1__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ribbon-c1__track p {
        margin: 0;
        color: rgba(255, 255, 255, .84);
    }

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

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

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

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

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

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

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

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

.capabilities {

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

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

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

    }

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

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

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

    .capabilities .capabilities__card {
        background: var(--surface-light);
        padding: clamp(28px, 4vw, 40px);
        border-radius: var(--radius-xl);
        position: relative;

        transform: translateY(40px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .capabilities .capabilities__card:hover {
        transform: translateY(-8px);
    }

    .capabilities .capabilities__step {
        position: absolute;
        top: -16px;
        right: 24px;
        width: 48px;
        height: 48px;
        background: var(--accent);
        color: var(--accent-contrast);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 800;
        font-size: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .capabilities .capabilities__icon {
        font-size: 40px;
        margin-bottom: 1.5rem;
    }

    .capabilities .capabilities__card h3 {
        font-size: clamp(20px, 2.5vw, 24px);
        font-weight: 700;
        margin: 0 0 1rem;
        color: var(--fg-on-surface-light);
    }

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

/* Header Top */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
  }

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  /* Main Navigation */
  .main-nav {
    background: var(--surface-2);
    padding: 0 var(--space-x);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: calc(var(--space-y) * 0.75) 0;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      display: flex;
      justify-content: flex-end;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background: var(--surface-1);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 80px;
      gap: 0;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      box-shadow: var(--shadow-lg);
      z-index: 5;
    }

    .nav-list.active {
      transform: translateX(0);
    }

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

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    /* Burger animation when active */
    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Overlay when menu is open */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
    }
  }

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 180px;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
  }
  .nav-list a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .contact-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .contact-address {
    font-style: normal;
  }
  .contact-link {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-link:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #555;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
  }
  .copyright {
    flex: 1;
    min-width: 300px;
  }
  .legal-links {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #aaa;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .disclaimer {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #777;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .legal-links {
      order: 2;
    }
    .copyright {
      order: 1;
    }
    .disclaimer {
      order: 3;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
        background: var(--surface-1);
        color: var(--fg-on-surface);
        border-radius: var(--radius-xl);
        padding: var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

    .form-layout-e h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--fg-on-surface);
    }

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

    .form-layout-e .dark-card {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-2);
    }

    .form-layout-e label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
        color: var(--fg-on-surface);
    }

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

    .form-layout-e input::placeholder,
    .form-layout-e textarea::placeholder {
        color: var(--input-placeholder);
    }

    .form-layout-e .end {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .form-layout-e .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        color: var(--fg-on-surface);
    }

    .form-layout-e button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .form-layout-e button:hover {
        background: var(--bg-accent-hover);
    }

.clarifications-l1 {

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

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

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

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

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

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

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

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

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

/* Header Top */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
  }

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  /* Main Navigation */
  .main-nav {
    background: var(--surface-2);
    padding: 0 var(--space-x);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: calc(var(--space-y) * 0.75) 0;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      display: flex;
      justify-content: flex-end;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background: var(--surface-1);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 80px;
      gap: 0;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      box-shadow: var(--shadow-lg);
      z-index: 5;
    }

    .nav-list.active {
      transform: translateX(0);
    }

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

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    /* Burger animation when active */
    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Overlay when menu is open */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
    }
  }

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 180px;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
  }
  .nav-list a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .contact-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .contact-address {
    font-style: normal;
  }
  .contact-link {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-link:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #555;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
  }
  .copyright {
    flex: 1;
    min-width: 300px;
  }
  .legal-links {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #aaa;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .disclaimer {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #777;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .legal-links {
      order: 2;
    }
    .copyright {
      order: 1;
    }
    .disclaimer {
      order: 3;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

    .policy-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 72ch;
        color: var(--neutral-100);
    }

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

/* Header Top */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
  }

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  /* Main Navigation */
  .main-nav {
    background: var(--surface-2);
    padding: 0 var(--space-x);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: calc(var(--space-y) * 0.75) 0;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      display: flex;
      justify-content: flex-end;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background: var(--surface-1);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 80px;
      gap: 0;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      box-shadow: var(--shadow-lg);
      z-index: 5;
    }

    .nav-list.active {
      transform: translateX(0);
    }

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

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    /* Burger animation when active */
    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Overlay when menu is open */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
    }
  }

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 180px;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
  }
  .nav-list a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .contact-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .contact-address {
    font-style: normal;
  }
  .contact-link {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-link:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #555;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
  }
  .copyright {
    flex: 1;
    min-width: 300px;
  }
  .legal-links {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #aaa;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .disclaimer {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #777;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .legal-links {
      order: 2;
    }
    .copyright {
      order: 1;
    }
    .disclaimer {
      order: 3;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

    .policy-layout-b .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

    .policy-layout-b li {
        background: var(--bg-alt);
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        padding: 12px;
    }

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

/* Header Top */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
  }

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  /* Main Navigation */
  .main-nav {
    background: var(--surface-2);
    padding: 0 var(--space-x);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: calc(var(--space-y) * 0.75) 0;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      display: flex;
      justify-content: flex-end;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background: var(--surface-1);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 80px;
      gap: 0;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      box-shadow: var(--shadow-lg);
      z-index: 5;
    }

    .nav-list.active {
      transform: translateX(0);
    }

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

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    /* Burger animation when active */
    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Overlay when menu is open */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
    }
  }

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 180px;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
  }
  .nav-list a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .contact-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .contact-address {
    font-style: normal;
  }
  .contact-link {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-link:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #555;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
  }
  .copyright {
    flex: 1;
    min-width: 300px;
  }
  .legal-links {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #aaa;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .disclaimer {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #777;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .legal-links {
      order: 2;
    }
    .copyright {
      order: 1;
    }
    .disclaimer {
      order: 3;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

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

/* Header Top */
  .header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface-light);
  }

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: calc(var(--space-y) * 0.75) calc(var(--space-x) * 1.5);
    border-radius: var(--radius-lg);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  /* Main Navigation */
  .main-nav {
    background: var(--surface-2);
    padding: 0 var(--space-x);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: calc(var(--space-y) * 0.75) 0;
  }

  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-weight: 500;
    padding: calc(var(--space-y) * 0.5) calc(var(--space-x) * 0.75);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .nav-link:hover {
    color: var(--link-hover);
    background-color: var(--btn-ghost-bg-hover);
  }

  /* Burger Menu (Hidden by default) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
  }

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

  /* Mobile Styles */
  @media (max-width: 767px) {
    .header-top {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
    }

    .main-nav {
      padding: calc(var(--space-y) * 0.75) var(--space-x);
      display: flex;
      justify-content: flex-end;
    }

    .burger-menu {
      display: flex;
    }

    .nav-list {
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: 70%;
      max-width: 300px;
      background: var(--surface-1);
      flex-direction: column;
      justify-content: flex-start;
      padding-top: 80px;
      gap: 0;
      transform: translateX(100%);
      transition: transform var(--anim-duration) var(--anim-ease);
      box-shadow: var(--shadow-lg);
      z-index: 5;
    }

    .nav-list.active {
      transform: translateX(0);
    }

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

    .nav-link {
      display: block;
      padding: var(--space-y) var(--space-x);
      border-radius: 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    /* Burger animation when active */
    .burger-menu.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }

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

    .burger-menu.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    /* Overlay when menu is open */
    .nav-list.active::before {
      content: '';
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: var(--overlay);
      z-index: -1;
    }
  }

.footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 3rem 1rem 1.5rem;
    font-family: sans-serif;
    border-top: 1px solid #333;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #333;
  }
  .footer-brand {
    flex: 1;
    min-width: 250px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 0.5rem;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 300px;
  }
  .footer-nav {
    flex: 1;
    min-width: 180px;
  }
  .nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  .nav-list a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 1rem;
  }
  .nav-list a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 250px;
  }
  .contact-title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
  .contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
  }
  .contact-address {
    font-style: normal;
  }
  .contact-link {
    color: #4dabf7;
    text-decoration: none;
  }
  .contact-link:hover {
    text-decoration: underline;
  }
  .footer-social {
    display: flex;
    gap: 1rem;
  }
  .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #333;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background-color 0.2s;
  }
  .footer-social a:hover {
    background-color: #555;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    font-size: 0.85rem;
    color: #999;
  }
  .copyright {
    flex: 1;
    min-width: 300px;
  }
  .legal-links {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }
  .legal-links a {
    color: #aaa;
    text-decoration: none;
  }
  .legal-links a:hover {
    color: #fff;
    text-decoration: underline;
  }
  .disclaimer {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1.4;
    color: #777;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 2rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 1rem;
    }
    .legal-links {
      order: 2;
    }
    .copyright {
      order: 1;
    }
    .disclaimer {
      order: 3;
    }
  }

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

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

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

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

    .err-slab-f .chip {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
        position: relative;
    }

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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