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

  --max-w: 1260px;
  --space-x: 0.92rem;
  --space-y: 1.44rem;
  --gap: 1.09rem;

  --radius-xl: 1.09rem;
  --radius-lg: 0.76rem;
  --radius-md: 0.4rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 1px 6px rgba(0,0,0,0.1);
  --shadow-md: 0 7px 12px rgba(0,0,0,0.13);
  --shadow-lg: 0 16px 26px rgba(0,0,0,0.15);

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

  --brand: #8B4513;
  --brand-contrast: #FFFFFF;
  --accent: #D4AF37;
  --accent-contrast: #212121;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #E0E0E0;
  --neutral-600: #757575;
  --neutral-800: #424242;
  --neutral-900: #212121;

  --bg-page: #FAF9F6;
  --fg-on-page: #2C1810;

  --bg-alt: #F3EDE4;
  --fg-on-alt: #3E2723;

  --surface-1: #FFFFFF;
  --surface-2: #F8F5F0;
  --fg-on-surface: #2C1810;
  --border-on-surface: #D7CCC8;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #5D4037;
  --border-on-surface-light: #E0D6CC;

  --bg-primary: #8B4513;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #A0522D;
  --ring: rgba(139, 69, 19, 0.4);

  --bg-accent: #FFF8E1;
  --fg-on-accent: #5D4037;
  --bg-accent-hover: #FFD54F;

  --link: #5D4037;
  --link-hover: #8B4513;

  --gradient-hero: linear-gradient(135deg, #F3EDE4 0%, #FAF9F6 100%);
  --gradient-accent: linear-gradient(90deg, #D4AF37 0%, #FFD54F 100%);

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

/* Header Container */
  header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  /* Burger Menu (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: var(--space-y) var(--space-x);
    z-index: 100;
  }

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

  /* Navigation List */
  .nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: var(--gap);
  }

  .nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-md);
  }

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

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

    .main-nav {
      position: relative;
      padding: 0;
    }

    .burger-menu {
      display: flex;
      margin-left: auto;
    }

    /* Initially hidden menu on mobile */
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-2);
      padding: var(--space-y) 0;
      box-shadow: var(--shadow-md);
      z-index: 99;
      gap: 0;
    }

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

    .nav-link {
      padding: 1rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-radius: 0;
    }

    /* Burger animation when active */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.55rem) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.55rem) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #ddd;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #555;
        font-size: 0.85rem;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

.intro-split {
        padding: clamp(60px, 9vw, 120px) clamp(16px, 3vw, 40px);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .intro-split .wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 16px;
        align-items: center;
    }

    .intro-split .eyebrow {
        margin: 0 0 8px;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.8rem;
    }

    .intro-split h1 {
        margin: 0 0 10px;
        font-size: clamp(34px, 5.6vw, 60px);
    }

    .intro-split .lead {
        margin: 0 0 18px;
        max-width: 60ch;
        opacity: 0.9;
    }

    .intro-split .actions {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
    }

    .intro-split .btn {
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        border: 1px solid transparent;
        font-weight: 600;
    }

    .intro-split .btn-primary {
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }

    .intro-split .btn-ghost {
        background: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

    .intro-split .fact {
        border: 1px solid var(--chip-bg);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--chip-bg);
    }

    .intro-split .label {
        margin: 0;
        opacity: 0.85;
    }

    .intro-split .number {
        margin: 8px 0;
        font-size: clamp(32px, 5vw, 52px);
        font-weight: 700;
    }

    .intro-split .caption {
        margin: 0;
        opacity: 0.9;
    }

    @media (max-width: 860px) {
        .intro-split .wrap {
            grid-template-columns: 1fr;
        }
    }

.value-list {
        padding: clamp(60px, 8vw, 110px) clamp(16px, 3vw, 40px);
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

    .value-list .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .value-list h2 {
        margin: 0;
        font-size: clamp(30px, 4.8vw, 52px);
    }

    .value-list .lead {
        margin: 10px 0 16px;
        color: var(--neutral-600);
    }

    .value-list ol {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 12px;
    }

    .value-list li {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
    }

    .value-list .head {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .value-list .head strong {
        display: inline-flex;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        align-items: center;
        justify-content: center;
        font-size: 0.85rem;
    }

    .value-list h3 {
        margin: 0;
    }

    .value-list li p {
        margin: 8px 0 6px;
        color: var(--neutral-600);
    }

    .value-list li span {
        font-size: .85rem;
        color: var(--neutral-600);
    }

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

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

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

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

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

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

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

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

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

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

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

    .touch-orbit .main {
        display: inline-block;
        text-decoration: none;
        padding: 12px 24px;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }

    .touch-orbit .main:hover {
        background: var(--bg-primary-hover);
    }

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

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

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

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

        transform: translateY(-18px);
    }

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

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

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

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

        transform: translateY(24px);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visual-highlights-flow {

        background: radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.25), transparent 55%),
        var(--gradient-accent),
        var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(70px, 9vw, 120px) clamp(20px, 4vw, 60px);
        position: relative;
        overflow: hidden;
    }

    .visual-highlights-flow::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.18), transparent 55%);
        pointer-events: none;
    }

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

    .visual-highlights-flow__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 88px);

        transform: translateY(-20px);
    }

    .visual-highlights-flow h2 {
        margin: 0 0 1rem;
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
    }

    .visual-highlights-flow__subtitle {
        margin: 0;
        font-size: clamp(16px, 2vw, 20px);
        color: rgba(255, 255, 255, 0.82);
    }

    .visual-highlights-flow__rail {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: clamp(24px, 3vw, 40px);
    }

    .visual-highlights-flow__panel {
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.15);
        overflow: hidden;
        box-shadow: 0 24px 40px rgba(0, 0, 0, 0.45);

        transform: translateY(40px);
    }

    .visual-highlights-flow__media {
        position: relative;
        padding-top: 62%;
        background-size: cover;
        background-position: center;
    }

    .visual-highlights-flow__glow {
        position: absolute;
        inset: 0;

        transition: opacity 0.4s ease;
        background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.35), transparent 60%);
    }

    .visual-highlights-flow__panel:hover .visual-highlights-flow__glow {
        opacity: 1;
    }

    .visual-highlights-flow__step {
        position: absolute;
        bottom: 16px;
        right: 16px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: var(--accent);
        color: var(--accent-contrast);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: 0.04em;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .visual-highlights-flow__content {
        padding: clamp(24px, 3vw, 32px);
    }

    .visual-highlights-flow__caption {
        margin: 0 0 0.5rem;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 12px;
        color: rgba(255, 255, 255, 0.65);
    }

    .visual-highlights-flow__content h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.5vw, 26px);
        color: var(--neutral-0);
    }

    .visual-highlights-flow__content p {
        margin: 0;
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

/* Header Container */
  header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  /* Burger Menu (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: var(--space-y) var(--space-x);
    z-index: 100;
  }

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

  /* Navigation List */
  .nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: var(--gap);
  }

  .nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-md);
  }

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

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

    .main-nav {
      position: relative;
      padding: 0;
    }

    .burger-menu {
      display: flex;
      margin-left: auto;
    }

    /* Initially hidden menu on mobile */
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-2);
      padding: var(--space-y) 0;
      box-shadow: var(--shadow-md);
      z-index: 99;
      gap: 0;
    }

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

    .nav-link {
      padding: 1rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-radius: 0;
    }

    /* Burger animation when active */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.55rem) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.55rem) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #ddd;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #555;
        font-size: 0.85rem;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

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

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

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

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

.our-story {

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

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

    .our-story .our-story__title {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 clamp(24px, 4vw, 40px);
        text-align: center;
        color: var(--fg-on-page);
    }

    .our-story .our-story__wrapper {
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 4vw, 40px);
    }

    .our-story .our-story__text {
        max-width: 70ch;
        margin: 0 auto;
    }

    .our-story .our-story__text p {
        font-size: clamp(16px, 2vw, 18px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.25rem;
    }

    .our-story .our-story__image {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .our-story .our-story__image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

.identity-cv5 {
        padding: clamp(52px, 8vw, 96px) clamp(16px, 4vw, 40px);
        background: linear-gradient(145deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .identity-cv5__hero {
        position: relative;
        border-radius: var(--radius-xl);
        overflow: hidden;
        min-height: 220px;
    }

    .identity-cv5__hero img {
        width: 100%;
        height: 100%;
        min-height: 220px;
        object-fit: cover;
        display: block;
    }

    .identity-cv5__overlay {
        position: absolute;
        inset: auto 0 0 0;
        padding: var(--space-y) var(--space-x);
        background: linear-gradient(180deg, rgba(0, 0, 0, 0), var(--overlay));
    }

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

    .identity-cv5__overlay span {
        opacity: .92;
    }

    .identity-cv5__grid {
        margin-top: 14px;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: var(--gap);
    }

    .identity-cv5__grid p {
        margin: 0 0 10px;
    }

    .identity-cv5__grid ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 8px;
    }

    .identity-cv5__grid li {
        background: rgba(255, 255, 255, 0.16);
        border: 1px solid rgba(255, 255, 255, 0.24);
        border-radius: var(--radius-md);
        padding: 10px 12px;
    }

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

/* Header Container */
  header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  /* Burger Menu (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: var(--space-y) var(--space-x);
    z-index: 100;
  }

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

  /* Navigation List */
  .nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: var(--gap);
  }

  .nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-md);
  }

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

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

    .main-nav {
      position: relative;
      padding: 0;
    }

    .burger-menu {
      display: flex;
      margin-left: auto;
    }

    /* Initially hidden menu on mobile */
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-2);
      padding: var(--space-y) 0;
      box-shadow: var(--shadow-md);
      z-index: 99;
      gap: 0;
    }

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

    .nav-link {
      padding: 1rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-radius: 0;
    }

    /* Burger animation when active */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.55rem) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.55rem) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #ddd;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #555;
        font-size: 0.85rem;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.hiw-l2 {

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

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

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

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

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

    .hiw-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .hiw-l2__tabs {
        position: relative;
        display: flex;
        gap: 8px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface);
        overflow: auto;
    }

    .hiw-l2__tab {
        flex: 0 0 auto;
        border: 1px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-page);
        padding: 10px 12px;
        border-radius: 999px;
        font-weight: 900;
        cursor: pointer;
        white-space: nowrap;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .hiw-l2__tab:hover {
        transform: translateY(-1px);
    }

    .hiw-l2__tab.is-on {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: rgba(255, 107, 53, 0.35);
    }

    .hiw-l2__underline {
        position: absolute;
        height: 3px;
        bottom: 6px;
        left: 12px;
        width: 40px;
        border-radius: 999px;
        background: var(--bg-primary);
        transform: translateX(0);
        transition: transform 420ms var(--anim-ease), width 420ms var(--anim-ease);
    }

    .hiw-l2__panes {
        padding: 16px;
    }

    .hiw-l2__pane {
        display: none;
    }

    .hiw-l2__pane.is-on {
        display: block;
    }

    .hiw-l2__n {
        width: 44px;
        height: 44px;
        border-radius: 18px;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 900;
    }

    .hiw-l2__pTitle {
        margin-top: 12px;
        font-weight: 900;
        letter-spacing: -.01em;
        font-size: clamp(18px, 2.2vw, 22px);
        color: var(--fg-on-page);
    }

    .hiw-l2__pText {
        margin-top: 8px;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

        .hiw-l2__tab {
            transition: none;
        }
    }

.capabilities-spectrum {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 120px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .capabilities-spectrum::before,
    .capabilities-spectrum::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18), transparent 55%);
        
        opacity: 0.6;
    }

    .capabilities-spectrum::after {
        background: radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.12), transparent 50%);
    }

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

    .capabilities-spectrum__h {
        text-align: center;
        margin-bottom: clamp(48px, 7vw, 88px);
        transform: translateY(-20px);
    }

    .capabilities-spectrum__eyebrow {
        font-size: clamp(14px, 2vw, 18px);
        letter-spacing: 0.2em;
        text-transform: uppercase;
        color: var(--accent, #ff9d5c);
        margin: 0 0 0.75rem;
    }

    .capabilities-spectrum h2 {
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
        line-height: 1.1;
        margin: 0;
        color: var(--fg-on-page);
    }

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

    .capabilities-spectrum__mosaic::before {
        content: '';
        position: absolute;
        inset: 10%;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius-xxl, 32px);
        pointer-events: none;
    }

    .capabilities-spectrum__tile {
        background: var(--surface-1, rgba(14, 16, 32, 0.8));
        backdrop-filter: blur(14px);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 36px);
        position: relative;
        overflow: hidden;
        isolation: isolate;
        border: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateY(40px) scale(0.97);
    }

    .capabilities-spectrum__halo {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 65%);
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .capabilities-spectrum__tile:hover .capabilities-spectrum__halo {
        opacity: 1;
    }

    .capabilities-spectrum__meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1.5rem;
    }

    .capabilities-spectrum__step {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        font-weight: 700;
        font-size: 18px;
        color: var(--accent-contrast, #0c0a0f);
        background: var(--accent, #ff9d5c);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    }

    .capabilities-spectrum__icon {
        font-size: 42px;
        color: var(--fg-on-primary);
        filter: drop-shadow(0 6px 20px rgba(0, 0, 0, 0.7));
    }

    .capabilities-spectrum__tile h3 {
        margin: 0 0 0.75rem;
        font-size: clamp(20px, 2.5vw, 26px);
        font-weight: 700;
        color: var(--fg-on-surface-light, #f5f5ff);
    }

    .capabilities-spectrum__tile p {
        margin: 0;
        color: var(--neutral-300, rgba(255, 255, 255, 0.78));
        line-height: var(--line-height-base, 1.6);
    }

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

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

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

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

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

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

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

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

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

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

    .plans-lv2__grid article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: var(--space-y) var(--space-x);
    }

    .plans-lv2__grid article:nth-child(2) {
        border-color: var(--brand);
        box-shadow: var(--shadow-md);
    }

    .plans-lv2__grid h3 {
        margin: 0;
    }

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

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

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

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

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

    .plans-lv2__grid button:hover {
        background-color: var(--bg-primary-hover);
    }

    .plans-lv2__grid article:nth-child(2) button {
        background-color: var(--brand);
        border-color: var(--brand);
    }

    .plans-lv2__grid article:nth-child(2) button:hover {
        background-color: var(--bg-primary-hover);
    }

.index-feedback-accordion {
        background: radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.75), transparent 60%),
        var(--gradient-hero);
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-feedback-accordion__h {
        text-align: center;
        margin-bottom: clamp(22px, 5vw, 44px);

        transform: translateY(-18px);
    }

    .index-feedback-accordion__h h2 {
        margin: 0 0 10px;
        font-size: clamp(26px, 4.4vw, 44px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-feedback-accordion__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-feedback-accordion__list {
        display: grid;
        gap: 12px;
    }

    .index-feedback-accordion__row {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(248, 225, 231, 0.95);
        background: rgba(58, 46, 61, 0.92);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

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

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

    .index-feedback-accordion__avatar {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-feedback-accordion__name {
        font-weight: 800;
        font-size: 14px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 18ch;
    }

    .index-feedback-accordion__meta {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 24ch;
    }

    .index-feedback-accordion__right {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
    }

    .index-feedback-accordion__stars {
        color: var(--brand);
        letter-spacing: 0.08em;
        font-size: 13px;
        line-height: 1;
    }

    .index-feedback-accordion__score {
        font-weight: 800;
        font-size: 12px;
        color: var(--bg-page);
    }

    .index-feedback-accordion__a {
        display: none;
        padding: 0 16px 14px;
        color: rgba(255, 255, 255, 0.85);
        overflow: hidden;
    }

    .index-feedback-accordion__quote {
        margin: 0;
        font-size: 14px;
        line-height: 1.65;
    }

    .index-feedback-accordion__badge {
        display: inline-flex;
        margin-top: 10px;
        padding: 6px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.78);
    }

/* Header Container */
  header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  /* Burger Menu (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: var(--space-y) var(--space-x);
    z-index: 100;
  }

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

  /* Navigation List */
  .nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: var(--gap);
  }

  .nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-md);
  }

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

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

    .main-nav {
      position: relative;
      padding: 0;
    }

    .burger-menu {
      display: flex;
      margin-left: auto;
    }

    /* Initially hidden menu on mobile */
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-2);
      padding: var(--space-y) 0;
      box-shadow: var(--shadow-md);
      z-index: 99;
      gap: 0;
    }

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

    .nav-link {
      padding: 1rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-radius: 0;
    }

    /* Burger animation when active */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.55rem) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.55rem) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #ddd;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #555;
        font-size: 0.85rem;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

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

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

    .contact-layout-b .item-card {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
        box-shadow: var(--shadow-sm);
    }

    .contact-layout-b .item-card h3 {
        margin: 0;
        color: var(--brand);
    }

    .contact-layout-b .item-card p {
        margin: 8px 0 0;
        color: var(--neutral-700, var(--neutral-600));
    }

    .contact-layout-b footer {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

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

    .contact-layout-b .social a {
        text-decoration: none;
        color: var(--link);
        padding: 6px 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: 999px;
    }

.clarifications-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        overflow: hidden;
        position: relative;
    }

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

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

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

    .clarifications-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        line-height: 1.1;
        letter-spacing: -.02em;
    }

    .clarifications-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

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

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

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

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

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 600;
        cursor: pointer;
        transition: background-color var(--anim-duration) var(--anim-ease);
    }
    .form-layout-f button:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 760px) {
        .form-layout-f .group {
            grid-template-columns: 1fr;
        }
    }

/* Header Container */
  header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  /* Burger Menu (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: var(--space-y) var(--space-x);
    z-index: 100;
  }

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

  /* Navigation List */
  .nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: var(--gap);
  }

  .nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-md);
  }

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

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

    .main-nav {
      position: relative;
      padding: 0;
    }

    .burger-menu {
      display: flex;
      margin-left: auto;
    }

    /* Initially hidden menu on mobile */
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-2);
      padding: var(--space-y) 0;
      box-shadow: var(--shadow-md);
      z-index: 99;
      gap: 0;
    }

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

    .nav-link {
      padding: 1rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-radius: 0;
    }

    /* Burger animation when active */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.55rem) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.55rem) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #ddd;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #555;
        font-size: 0.85rem;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

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

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

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

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

    .terms-layout-d .section-head p {
        margin: 10px 0 0;
        color: var(--fg-on-surface-light);
    }

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

    .terms-layout-d li {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-light);
        padding: 12px;
    }

    .terms-layout-d h3, .terms-layout-d h4 {
        margin: 0 0 8px;
        color: var(--fg-on-surface);
    }

    .terms-layout-d p, .terms-layout-d li li {
        color: var(--fg-on-surface-light);
    }

/* Header Container */
  header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  /* Burger Menu (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: var(--space-y) var(--space-x);
    z-index: 100;
  }

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

  /* Navigation List */
  .nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: var(--gap);
  }

  .nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-md);
  }

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

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

    .main-nav {
      position: relative;
      padding: 0;
    }

    .burger-menu {
      display: flex;
      margin-left: auto;
    }

    /* Initially hidden menu on mobile */
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-2);
      padding: var(--space-y) 0;
      box-shadow: var(--shadow-md);
      z-index: 99;
      gap: 0;
    }

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

    .nav-link {
      padding: 1rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-radius: 0;
    }

    /* Burger animation when active */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.55rem) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.55rem) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #ddd;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #555;
        font-size: 0.85rem;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.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 Container */
  header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  /* Burger Menu (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: var(--space-y) var(--space-x);
    z-index: 100;
  }

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

  /* Navigation List */
  .nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: var(--gap);
  }

  .nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-md);
  }

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

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

    .main-nav {
      position: relative;
      padding: 0;
    }

    .burger-menu {
      display: flex;
      margin-left: auto;
    }

    /* Initially hidden menu on mobile */
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-2);
      padding: var(--space-y) 0;
      box-shadow: var(--shadow-md);
      z-index: 99;
      gap: 0;
    }

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

    .nav-link {
      padding: 1rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-radius: 0;
    }

    /* Burger animation when active */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.55rem) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.55rem) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #ddd;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #555;
        font-size: 0.85rem;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.thank-mode-c {
        padding: clamp(56px, 10vw, 112px) 18px;
        background: linear-gradient(180deg, var(--fg-on-page), var(--bg-page));
        color: var(--fg-on-page);
    }

    .thank-mode-c .panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(30px, 4vw, 44px);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
    }

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

    .thank-mode-c p {
        margin: 12px 0 0;
        color: var(--neutral-800);
    }

    .thank-mode-c a {
        display: inline-block;
        margin-top: 17px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }

/* Header Container */
  header {
    background: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-sm);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

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

  .cta-button {
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: bold;
    transition: background-color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

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

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

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

  /* Burger Menu (Hidden on Desktop) */
  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: var(--space-y) var(--space-x);
    z-index: 100;
  }

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

  /* Navigation List */
  .nav-list {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    max-width: var(--max-w);
    margin: 0 auto;
    gap: var(--gap);
  }

  .nav-link {
    display: inline-block;
    padding: 1rem 1.5rem;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
    border-radius: var(--radius-md);
  }

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

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

    .main-nav {
      position: relative;
      padding: 0;
    }

    .burger-menu {
      display: flex;
      margin-left: auto;
    }

    /* Initially hidden menu on mobile */
    .nav-list {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--surface-2);
      padding: var(--space-y) 0;
      box-shadow: var(--shadow-md);
      z-index: 99;
      gap: 0;
    }

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

    .nav-link {
      padding: 1rem var(--space-x);
      width: 100%;
      box-sizing: border-box;
      border-radius: 0;
    }

    /* Burger animation when active */
    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.55rem) rotate(45deg);
    }

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

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.55rem) rotate(-45deg);
    }
  }

.site-footer {
        background-color: #f5f5f5;
        color: #333;
        padding: 2.5rem 1rem;
        font-family: sans-serif;
        border-top: 1px solid #ddd;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
    }
    .brand-logo {
        font-size: 1.8rem;
        font-weight: bold;
        margin-bottom: 1rem;
        color: #222;
    }
    .disclaimer {
        font-size: 0.85rem;
        line-height: 1.4;
        color: #666;
        margin-bottom: 1.5rem;
    }
    .legal-links {
        margin-bottom: 1rem;
    }
    .legal-links a {
        color: #555;
        font-size: 0.85rem;
        text-decoration: none;
    }
    .legal-links a:hover {
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.85rem;
        color: #777;
        margin-top: auto;
    }
    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.2rem;
        color: #222;
    }
    .footer-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-menu li {
        margin-bottom: 0.7rem;
    }
    .footer-menu a {
        color: #444;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-menu a:hover {
        color: #000;
        text-decoration: underline;
    }
    .contact-info p {
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    .contact-info a {
        color: #444;
        text-decoration: none;
    }
    .contact-info a:hover {
        text-decoration: underline;
    }
    .social-links {
        margin-top: 1rem;
        display: flex;
        gap: 1rem;
    }
    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background-color: #ddd;
        color: #333;
        border-radius: 50%;
        text-decoration: none;
        font-weight: bold;
        transition: background-color 0.3s;
    }
    .social-links a:hover {
        background-color: #ccc;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-column {
            text-align: center;
        }
        .social-links {
            justify-content: center;
        }
    }

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

    .cookie-lv10__body {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        color: var(--fg-on-page);
        padding: 12px;
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv10__body p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv10__actions {
        margin-top: 10px;
        display: flex;
        justify-content: flex-end;
        gap: 8px;
    }

    .cookie-lv10__actions button {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 7px 10px;
        cursor: pointer;
    }

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

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

.err-slab-a .box {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
    color: var(--fg-on-page);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
    color: var(--fg-on-page);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
}

.err-slab-a a {
    display: inline-block;
    margin-top: 18px;
    padding: 11px 18px;
    border-radius: var(--radius-md);
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    text-decoration: none;
    font-weight: 600;
    transition: background-color var(--anim-duration) var(--anim-ease);
}
.err-slab-a a:hover {
    background: var(--bg-primary-hover);
}