:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 17.7px;
  --line-height-base: 1.31;

  --max-w: 1300px;
  --space-x: 1.2rem;
  --space-y: 1.5rem;
  --gap: 1.2rem;

  --radius-xl: 1.18rem;
  --radius-lg: 0.98rem;
  --radius-md: 0.51rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.16);
  --shadow-md: 0 14px 32px rgba(0,0,0,0.21);
  --shadow-lg: 0 20px 36px rgba(0,0,0,0.25);

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

  --brand: #1a3a5c;
  --brand-contrast: #ffffff;
  --accent: #d97706;
  --accent-contrast: #ffffff;

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

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

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

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

  --surface-light: #fafafa;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #2563eb;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #1d4ed8;
  --ring: #2563eb;

  --bg-accent: #f59e0b;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #b45309;

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

  --gradient-hero: linear-gradient(135deg, #1a3a5c 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 var(--space-x) var(--space-y);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .mobile-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }
  @media (min-width: 768px) {
    .mobile-nav {
      display: none !important;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.3rem;
      font-weight: 700;
      color: #f0c040;
      text-decoration: none;
      letter-spacing: 1px;
    }
    .footer-tagline {
      margin: 0.3rem 0 0;
      color: #b0b0b0;
      font-size: 0.85rem;
    }
    .footer-nav {
      flex: 2 1 300px;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
    }
    .footer-nav a {
      color: #c0c0c0;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .footer-nav a:hover {
      color: #f0c040;
    }
    .footer-contact {
      flex: 1 1 200px;
    }
    .footer-contact address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-contact a {
      color: #c0c0c0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0c040;
    }
    .footer-social {
      flex: 1 1 150px;
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .footer-social a {
      color: #c0c0c0;
      text-decoration: none;
      font-size: 0.85rem;
    }
    .footer-social a:hover {
      color: #f0c040;
    }
    .footer-disclaimer {
      flex: 0 0 100%;
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 0.5rem;
      text-align: center;
      font-size: 0.8rem;
      color: #999;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav {
        justify-content: center;
      }
      .footer-contact address {
        align-items: center;
      }
      .footer-social {
        justify-content: center;
      }
    }

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.intro-flag-c11 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .intro-flag-c11__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .intro-flag-c11__left, .intro-flag-c11__right {
        padding: 1.1rem;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-flag-c11__tag {
        display: inline-flex;
        padding: .4rem .75rem;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .intro-flag-c11__left h1 {
        margin: .8rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1;
    }

    .intro-flag-c11__left p {
        margin: .9rem 0 0;

    }

    .intro-flag-c11__right {
        display: grid;
        align-content: center;
        gap: .65rem;
    }

    .intro-flag-c11__right div {
        font-size: clamp(2.8rem, 5vw, 4rem);
        font-weight: 700;
    }

    .intro-flag-c11__right span {
        color: rgba(255, 255, 255, .82);
    }

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

.next-route-l6 {
        padding: clamp(3.1rem, 7vw, 5.6rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-route-l6__wrap {
        max-width: 56rem;
        margin: 0 auto;
    }

    .next-route-l6__head p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-route-l6__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-route-l6__line {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
        gap: .7rem;
    }

    .next-route-l6__line a {
        display: flex;
        gap: .6rem;
        align-items: center;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
        text-decoration: none;
        color: var(--fg-on-page);
    }

    .next-route-l6__line i {
        font-style: normal;
    }

    .next-route-l6__copy {
        margin: 1rem 0 0;
        color: var(--neutral-600);
    }

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

.education-struct-v3 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast)
    }

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

    .education-struct-v3 h2, .education-struct-v3 h3, .education-struct-v3 p {
        margin: 0
    }

    .education-struct-v3 a {
        text-decoration: none
    }

    .education-struct-v3 article, .education-struct-v3 .row, .education-struct-v3 details, .education-struct-v3 .program {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .education-struct-v3 .grid, .education-struct-v3 .tiers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .education-struct-v3 .grid a, .education-struct-v3 .tiers a, .education-struct-v3 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v3 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v3 .path article {
        position: relative;
        padding-left: 1.25rem
    }

    .education-struct-v3 .path article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .education-struct-v3 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v3 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v3 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v3 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v3 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v3 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v3 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v3 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v3 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v3 .grid, .education-struct-v3 .tiers, .education-struct-v3 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v3 .grid, .education-struct-v3 .tiers, .education-struct-v3 .combo, .education-struct-v3 .row {
            grid-template-columns:1fr
        }
    }

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 var(--space-x) var(--space-y);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .mobile-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }
  @media (min-width: 768px) {
    .mobile-nav {
      display: none !important;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.3rem;
      font-weight: 700;
      color: #f0c040;
      text-decoration: none;
      letter-spacing: 1px;
    }
    .footer-tagline {
      margin: 0.3rem 0 0;
      color: #b0b0b0;
      font-size: 0.85rem;
    }
    .footer-nav {
      flex: 2 1 300px;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
    }
    .footer-nav a {
      color: #c0c0c0;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .footer-nav a:hover {
      color: #f0c040;
    }
    .footer-contact {
      flex: 1 1 200px;
    }
    .footer-contact address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-contact a {
      color: #c0c0c0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0c040;
    }
    .footer-social {
      flex: 1 1 150px;
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .footer-social a {
      color: #c0c0c0;
      text-decoration: none;
      font-size: 0.85rem;
    }
    .footer-social a:hover {
      color: #f0c040;
    }
    .footer-disclaimer {
      flex: 0 0 100%;
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 0.5rem;
      text-align: center;
      font-size: 0.8rem;
      color: #999;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav {
        justify-content: center;
      }
      .footer-contact address {
        align-items: center;
      }
      .footer-social {
        justify-content: center;
      }
    }

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

.mission--light-v6 {

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

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

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

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

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

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

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

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

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

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

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

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

.timeline--colored-v5 {

    padding: 60px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

.timeline__inner {
    max-width: 720px;
    margin: 0 auto;
}

.timeline__header {
    text-align: center;
    margin-bottom: 20px;
}

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

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

.timeline__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-left: 2px solid rgba(75,85,99,0.8);
}

.timeline__item {
    position: relative;
    padding-left: 16px;
    padding-bottom: 14px;
}

.timeline__item:last-child {
    padding-bottom: 0;
}

.timeline__dot {
    position: absolute;
    left: -7px;
    top: 0.35rem;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: var(--bg-primary);
    border: 2px solid var(--neutral-900);
}

.timeline__item--accent .timeline__dot {
    background: var(--accent);
}

.timeline__item--accent .timeline__dot {
    background: var(--accent);
}

.timeline__time {
    font-size: 0.8rem;
    color: var(--neutral-300);
}

.timeline__content h3 {
    margin: 0 0 2px;
    font-size: 0.95rem;
}

.timeline__content p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

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

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

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

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

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

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

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

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

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

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

    .identity-lv4__line h3 {
        margin: 0;
    }

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 var(--space-x) var(--space-y);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .mobile-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }
  @media (min-width: 768px) {
    .mobile-nav {
      display: none !important;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.3rem;
      font-weight: 700;
      color: #f0c040;
      text-decoration: none;
      letter-spacing: 1px;
    }
    .footer-tagline {
      margin: 0.3rem 0 0;
      color: #b0b0b0;
      font-size: 0.85rem;
    }
    .footer-nav {
      flex: 2 1 300px;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
    }
    .footer-nav a {
      color: #c0c0c0;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .footer-nav a:hover {
      color: #f0c040;
    }
    .footer-contact {
      flex: 1 1 200px;
    }
    .footer-contact address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-contact a {
      color: #c0c0c0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0c040;
    }
    .footer-social {
      flex: 1 1 150px;
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .footer-social a {
      color: #c0c0c0;
      text-decoration: none;
      font-size: 0.85rem;
    }
    .footer-social a:hover {
      color: #f0c040;
    }
    .footer-disclaimer {
      flex: 0 0 100%;
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 0.5rem;
      text-align: center;
      font-size: 0.8rem;
      color: #999;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav {
        justify-content: center;
      }
      .footer-contact address {
        align-items: center;
      }
      .footer-social {
        justify-content: center;
      }
    }

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.capabilities-light-alt {

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

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

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

    }

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

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

    .capabilities-light-alt .capabilities-light-alt__steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: clamp(24px, 4vw, 48px);
        position: relative;
    }

    .capabilities-light-alt .capabilities-light-alt__step {
        position: relative;

        transform: translateY(30px);
    }

    .capabilities-light-alt .capabilities-light-alt__number {
        width: 56px;
        height: 56px;
        background: var(--brand);
        color: var(--fg-on-primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: 900;
        margin: 0 auto 1.5rem;
        box-shadow: var(--shadow-md);
        position: relative;
        z-index: 2;
    }

    .capabilities-light-alt .capabilities-light-alt__number::before {
        content: '';
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        background: var(--brand);
        opacity: 0.2;
        animation: ripple 2s ease-out infinite;
    }

    @keyframes ripple {
        0% {
            transform: scale(1);
            opacity: 0.2;
        }
        100% {
            transform: scale(1.5);

        }
    }

    .capabilities-light-alt .capabilities-light-alt__box {
        background: var(--surface-1);
        border: 2px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: clamp(24px, 3vw, 32px);
        text-align: center;
        position: relative;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .capabilities-light-alt .capabilities-light-alt__step:hover .capabilities-light-alt__box {
        border-color: var(--brand);
        transform: translateY(-4px);
        box-shadow: var(--shadow-lg);
    }

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

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

    .capabilities-light-alt .capabilities-light-alt__arrow {
        position: absolute;
        bottom: -32px;
        left: 50%;
        transform: translateX(-50%) rotate(90deg);
        font-size: 32px;
        color: var(--brand);
        opacity: 0.5;
    }

    .capabilities-light-alt .capabilities-light-alt__step:last-child .capabilities-light-alt__arrow {
        display: none;
    }

    @media (min-width: 768px) {
        .capabilities-light-alt .capabilities-light-alt__arrow {
            bottom: auto;
            top: 50%;
            left: auto;
            right: -40px;
            transform: translateY(-50%) rotate(0deg);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .plans-lv2__grid h3 {
        margin: 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .hiw-ribbon-c1__track p {
        margin: 0;
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 var(--space-x) var(--space-y);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .mobile-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }
  @media (min-width: 768px) {
    .mobile-nav {
      display: none !important;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.3rem;
      font-weight: 700;
      color: #f0c040;
      text-decoration: none;
      letter-spacing: 1px;
    }
    .footer-tagline {
      margin: 0.3rem 0 0;
      color: #b0b0b0;
      font-size: 0.85rem;
    }
    .footer-nav {
      flex: 2 1 300px;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
    }
    .footer-nav a {
      color: #c0c0c0;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .footer-nav a:hover {
      color: #f0c040;
    }
    .footer-contact {
      flex: 1 1 200px;
    }
    .footer-contact address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-contact a {
      color: #c0c0c0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0c040;
    }
    .footer-social {
      flex: 1 1 150px;
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .footer-social a {
      color: #c0c0c0;
      text-decoration: none;
      font-size: 0.85rem;
    }
    .footer-social a:hover {
      color: #f0c040;
    }
    .footer-disclaimer {
      flex: 0 0 100%;
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 0.5rem;
      text-align: center;
      font-size: 0.8rem;
      color: #999;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav {
        justify-content: center;
      }
      .footer-contact address {
        align-items: center;
      }
      .footer-social {
        justify-content: center;
      }
    }

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.support-cv2 {
        padding: clamp(56px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(140deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

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

    .support-cv2__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: 16px;
    }

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

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

    .support-cv2__box a {
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 16px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .support-cv2__box {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.form-fresh-v4 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

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

    .form-fresh-v4 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

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

    .form-fresh-v4 .steps {
        display: flex;
        gap: .5rem;
        flex-wrap: wrap;
    }

    .form-fresh-v4 .steps span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--btn-ghost-bg-hover);
        font-size: .8rem;
    }

    .form-fresh-v4 .fields {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: .7rem;
    }

    .form-fresh-v4 label {
        display: grid;
        gap: .3rem;
        font-size: .88rem;
    }

    .form-fresh-v4 input {
        padding: .62rem .72rem;
        border: 1px solid var(--btn-ghost-bg-hover);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-surface);
        font: inherit;
    }

    .form-fresh-v4 button {
        padding: .72rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 700px) {
        .form-fresh-v4 .fields {
            grid-template-columns:1fr;
        }
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 var(--space-x) var(--space-y);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .mobile-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }
  @media (min-width: 768px) {
    .mobile-nav {
      display: none !important;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.3rem;
      font-weight: 700;
      color: #f0c040;
      text-decoration: none;
      letter-spacing: 1px;
    }
    .footer-tagline {
      margin: 0.3rem 0 0;
      color: #b0b0b0;
      font-size: 0.85rem;
    }
    .footer-nav {
      flex: 2 1 300px;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
    }
    .footer-nav a {
      color: #c0c0c0;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .footer-nav a:hover {
      color: #f0c040;
    }
    .footer-contact {
      flex: 1 1 200px;
    }
    .footer-contact address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-contact a {
      color: #c0c0c0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0c040;
    }
    .footer-social {
      flex: 1 1 150px;
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .footer-social a {
      color: #c0c0c0;
      text-decoration: none;
      font-size: 0.85rem;
    }
    .footer-social a:hover {
      color: #f0c040;
    }
    .footer-disclaimer {
      flex: 0 0 100%;
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 0.5rem;
      text-align: center;
      font-size: 0.8rem;
      color: #999;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav {
        justify-content: center;
      }
      .footer-contact address {
        align-items: center;
      }
      .footer-social {
        justify-content: center;
      }
    }

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

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

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

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

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

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

    .policy-layout-a .meta {
        margin: 0;
        color: var(--brand);
        font-weight: 600;
    }

    .policy-layout-a h3 {
        margin: 8px 0;
    }

    .policy-layout-a article p {
        margin: 0;
        color: var(--neutral-600);
    }

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 var(--space-x) var(--space-y);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .mobile-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }
  @media (min-width: 768px) {
    .mobile-nav {
      display: none !important;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.3rem;
      font-weight: 700;
      color: #f0c040;
      text-decoration: none;
      letter-spacing: 1px;
    }
    .footer-tagline {
      margin: 0.3rem 0 0;
      color: #b0b0b0;
      font-size: 0.85rem;
    }
    .footer-nav {
      flex: 2 1 300px;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
    }
    .footer-nav a {
      color: #c0c0c0;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .footer-nav a:hover {
      color: #f0c040;
    }
    .footer-contact {
      flex: 1 1 200px;
    }
    .footer-contact address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-contact a {
      color: #c0c0c0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0c040;
    }
    .footer-social {
      flex: 1 1 150px;
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .footer-social a {
      color: #c0c0c0;
      text-decoration: none;
      font-size: 0.85rem;
    }
    .footer-social a:hover {
      color: #f0c040;
    }
    .footer-disclaimer {
      flex: 0 0 100%;
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 0.5rem;
      text-align: center;
      font-size: 0.8rem;
      color: #999;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav {
        justify-content: center;
      }
      .footer-contact address {
        align-items: center;
      }
      .footer-social {
        justify-content: center;
      }
    }

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

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

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

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 var(--space-x) var(--space-y);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .mobile-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }
  @media (min-width: 768px) {
    .mobile-nav {
      display: none !important;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.3rem;
      font-weight: 700;
      color: #f0c040;
      text-decoration: none;
      letter-spacing: 1px;
    }
    .footer-tagline {
      margin: 0.3rem 0 0;
      color: #b0b0b0;
      font-size: 0.85rem;
    }
    .footer-nav {
      flex: 2 1 300px;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
    }
    .footer-nav a {
      color: #c0c0c0;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .footer-nav a:hover {
      color: #f0c040;
    }
    .footer-contact {
      flex: 1 1 200px;
    }
    .footer-contact address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-contact a {
      color: #c0c0c0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0c040;
    }
    .footer-social {
      flex: 1 1 150px;
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .footer-social a {
      color: #c0c0c0;
      text-decoration: none;
      font-size: 0.85rem;
    }
    .footer-social a:hover {
      color: #f0c040;
    }
    .footer-disclaimer {
      flex: 0 0 100%;
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 0.5rem;
      text-align: center;
      font-size: 0.8rem;
      color: #999;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav {
        justify-content: center;
      }
      .footer-contact address {
        align-items: center;
      }
      .footer-social {
        justify-content: center;
      }
    }

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

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

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

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

header {
    background: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-y) var(--space-x);
    gap: var(--gap);
    position: relative;
  }
  .logo {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color var(--anim-duration) var(--anim-ease);
  }
  .logo:hover {
    color: var(--accent);
  }
  .nav-left,
  .nav-right {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }
  .nav-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.35rem 0.6rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }
  .nav-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
    border-radius: var(--radius-sm);
    transition: background var(--anim-duration) var(--anim-ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface);
    border-radius: 2px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }
  .mobile-nav {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0 var(--space-x) var(--space-y);
    background: var(--surface-1);
    border-top: 1px solid var(--border-on-surface);
  }
  .mobile-nav.open {
    display: flex;
  }
  .mobile-link {
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    padding: 0.6rem 0.8rem;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .mobile-link:hover {
    background: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (max-width: 767px) {
    .nav-left,
    .nav-right {
      display: none;
    }
    .burger {
      display: flex;
    }
    .header-inner {
      justify-content: space-between;
    }
  }
  @media (min-width: 768px) {
    .mobile-nav {
      display: none !important;
    }
  }

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      font-size: 0.9rem;
      line-height: 1.5;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1.5rem;
    }
    .footer-brand {
      flex: 1 1 200px;
    }
    .logo {
      font-size: 1.3rem;
      font-weight: 700;
      color: #f0c040;
      text-decoration: none;
      letter-spacing: 1px;
    }
    .footer-tagline {
      margin: 0.3rem 0 0;
      color: #b0b0b0;
      font-size: 0.85rem;
    }
    .footer-nav {
      flex: 2 1 300px;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1rem;
    }
    .footer-nav a {
      color: #c0c0c0;
      text-decoration: none;
      transition: color 0.2s;
      white-space: nowrap;
    }
    .footer-nav a:hover {
      color: #f0c040;
    }
    .footer-contact {
      flex: 1 1 200px;
    }
    .footer-contact address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-contact a {
      color: #c0c0c0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0c040;
    }
    .footer-social {
      flex: 1 1 150px;
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    .footer-social a {
      color: #c0c0c0;
      text-decoration: none;
      font-size: 0.85rem;
    }
    .footer-social a:hover {
      color: #f0c040;
    }
    .footer-disclaimer {
      flex: 0 0 100%;
      border-top: 1px solid #333;
      padding-top: 1rem;
      margin-top: 0.5rem;
      text-align: center;
      font-size: 0.8rem;
      color: #999;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    @media (max-width: 768px) {
      .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav {
        justify-content: center;
      }
      .footer-contact address {
        align-items: center;
      }
      .footer-social {
        justify-content: center;
      }
    }

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

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

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

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

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

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

    .nf404-v10 a {
        display: inline-block;
        margin-top: 18px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }