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

  --max-w: 1100px;
  --space-x: 1.17rem;
  --space-y: 1.31rem;
  --gap: 1.96rem;

  --radius-xl: 1.17rem;
  --radius-lg: 0.96rem;
  --radius-md: 0.56rem;
  --radius-sm: 0.29rem;

  --shadow-sm: 0 2px 7px rgba(0,0,0,0.15);
  --shadow-md: 0 14px 30px rgba(0,0,0,0.19);
  --shadow-lg: 0 30px 44px rgba(0,0,0,0.23);

  --overlay: rgba(15, 23, 42, 0.6);
  --anim-duration: 230ms;
  --anim-ease: ease;
  --random-number: 1;

  --brand: #1e3a5f;
  --brand-contrast: #ffffff;
  --accent: #2563eb;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f1f5f9;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #f8fafc;
  --fg-on-page: #1e293b;

  --bg-alt: #e2e8f0;
  --fg-on-alt: #334155;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

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

  --bg-primary: #1e3a5f;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #152d4a;
  --ring: #2563eb;

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

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

  --gradient-hero: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
  --gradient-accent: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

  .nav-link {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-600);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    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(6px) rotate(45deg);
  }

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

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: calc(var(--gap) * 0.75);
    }

    .nav-menu.open {
      display: flex;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    padding: 2.5rem 1.5rem 1.5rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    margin-bottom: 0.5rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer-logo:hover {
    color: #4fc3f7;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #b0bec5;
    margin-top: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal-links a {
    color: #90a4ae;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal-links a:hover {
    color: #4fc3f7;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2c3e50;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .contact-label {
    font-weight: 600;
    color: #b0bec5;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #78909c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #607d8b;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-left {
      flex: 0 0 auto;
      margin-bottom: 0;
    }
    .footer-right {
      flex: 0 0 auto;
      align-items: flex-end;
      text-align: right;
      margin-bottom: 0;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .next-ux22 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

    .next-ux22__head {
        margin-bottom: 1.1rem;
    }

    .next-ux22__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .next-ux22__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
        max-width: 38rem;
    }

    .next-ux22__pins {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-ux22__pins article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);
    }

    .next-ux22__pins div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--neutral-100);
    }

    .next-ux22__pins h3 {
        margin: .75rem 0 .35rem;
    }

    .next-ux22__pins a {
        color: var(--link);
        text-decoration: none;
    }

    .next-ux22__button {
        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-v6 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0)
    }

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

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

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

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

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

    .education-struct-v6 .grid a, .education-struct-v6 .tiers a, .education-struct-v6 .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-v6 .path {
        display: grid;
        gap: .65rem
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-l2 {

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

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

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

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

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

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

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

    @keyframes socialL2Badges {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

  .nav-link {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-600);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    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(6px) rotate(45deg);
  }

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

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: calc(var(--gap) * 0.75);
    }

    .nav-menu.open {
      display: flex;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    padding: 2.5rem 1.5rem 1.5rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    margin-bottom: 0.5rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer-logo:hover {
    color: #4fc3f7;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #b0bec5;
    margin-top: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal-links a {
    color: #90a4ae;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal-links a:hover {
    color: #4fc3f7;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2c3e50;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .contact-label {
    font-weight: 600;
    color: #b0bec5;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #78909c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #607d8b;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-left {
      flex: 0 0 auto;
      margin-bottom: 0;
    }
    .footer-right {
      flex: 0 0 auto;
      align-items: flex-end;
      text-align: right;
      margin-bottom: 0;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.team-orbit {

        background: radial-gradient(circle at 10% 10%, rgba(255, 139, 92, 0.18), transparent 40%), var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(64px, 8vw, 110px) clamp(18px, 4vw, 48px);
        position: relative;
        overflow: hidden;
    }

    .team-orbit::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 85% 10%, rgba(73, 146, 255, 0.4), transparent 50%);
        opacity: 0.4;
        pointer-events: none;
    }

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

    .team-orbit__h {
        text-align: center;
        margin-bottom: clamp(48px, 6vw, 80px);

    }

    .team-orbit__eyebrow {
        text-transform: uppercase;
        letter-spacing: 0.25em;
        color: rgba(255, 255, 255, 0.6);
        margin: 0 0 0.75rem;
    }

    .team-orbit h2 {
        margin: 0 0 1rem;
        font-size: clamp(34px, 5vw, 58px);
    }

    .team-orbit__lead {
        margin: 0 auto;
        max-width: 720px;
        color: rgba(255, 255, 255, 0.75);
    }

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

    .team-orbit__card {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
        background: rgba(3, 7, 21, 0.65);
        border-radius: var(--radius-xl);
        padding: clamp(24px, 3vw, 32px);
        border: 1px solid rgba(255, 255, 255, 0.15);
        box-shadow: 0 25px 40px rgba(1, 4, 16, 0.6);
        backdrop-filter: blur(18px);

        transform: translateY(30px);
    }

    .team-orbit__avatar {
        width: 80px;
        height: 80px;
        border-radius: 24px;
        overflow: hidden;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .team-orbit__avatar img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .team-orbit__meta h3 {
        margin: 0;
        font-size: 1.4rem;
    }

    .team-orbit__meta span {
        color: rgba(255, 255, 255, 0.6);
        font-size: 0.95rem;
    }

    .team-orbit__content p {
        margin: 0.75rem 0 1rem;

    }

    .team-orbit__focus {
        display: inline-flex;
        padding: 0.35rem 0.75rem;
        border-radius: 999px;
        background: rgba(255, 139, 92, 0.2);
        color: var(--bg-accent);
        font-weight: 600;
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .identity-lv2 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

    .identity-lv2__head {
        text-align: center;
        margin-bottom: 16px;
    }

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

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

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

    .identity-lv2__grid article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
    }

    .identity-lv2__grid h3 {
        margin: 0;
    }

    .identity-lv2__grid strong {
        display: block;
        margin: 6px 0;
        color: var(--brand);
    }

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

    .identity-lv2__grid blockquote {
        margin: 0;
        padding: 8px 10px;
        border-left: 3px solid var(--brand);
        background: var(--neutral-100);
        color: var(--neutral-800);
    }

.mission--colored-v5 {

    padding: 64px 20px;
    background: radial-gradient(circle at top left, rgba(16,185,129,0.35), transparent),
                radial-gradient(circle at bottom right, rgba(59,130,246,0.4), transparent),
                var(--neutral-900);
    color: var(--neutral-0);
}

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

.mission__eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: rgba(209,250,229,0.9);
    margin: 0 0 0.5rem;
}

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

.mission__text {
    margin: 0;
    color: var(--neutral-200);
    font-size: 0.95rem;
    line-height: 1.7;
}

.mission__pillars {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.mission__pillar {
    border-radius: var(--radius-lg);
    padding: 10px 12px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

.mission__pillar--impact {
    border-color: var(--accent);
}

.mission__pillar--safety {
    border-color: var(--accent);
}

.mission__pillar--focus {
    border-color: var(--bg-primary);
}

.mission__pillar h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    color: var(--brand-contrast);
}

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

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

  .nav-link {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-600);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    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(6px) rotate(45deg);
  }

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

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: calc(var(--gap) * 0.75);
    }

    .nav-menu.open {
      display: flex;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    padding: 2.5rem 1.5rem 1.5rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    margin-bottom: 0.5rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer-logo:hover {
    color: #4fc3f7;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #b0bec5;
    margin-top: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal-links a {
    color: #90a4ae;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal-links a:hover {
    color: #4fc3f7;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2c3e50;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .contact-label {
    font-weight: 600;
    color: #b0bec5;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #78909c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #607d8b;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-left {
      flex: 0 0 auto;
      margin-bottom: 0;
    }
    .footer-right {
      flex: 0 0 auto;
      align-items: flex-end;
      text-align: right;
      margin-bottom: 0;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.plans-ux9{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--neutral-0);color:var(--neutral-900)}.plans-ux9__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux9__rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(240px,1fr);gap:10px;overflow:auto;padding-bottom:4px}.plans-ux9 article{border:1px solid var(--neutral-300);border-radius:var(--radius-lg);background:var(--neutral-100);padding:12px}.plans-ux9 h3{margin:0}.plans-ux9 small{display:inline-flex;margin-top:6px;color:var(--brand)}.plans-ux9 p{margin:7px 0;color:var(--neutral-800)}.plans-ux9 ol{margin:0;padding-left:18px;display:grid;gap:5px;color:var(--neutral-800)}.plans-ux9 button{width:100%;margin-top:9px;background:var(--bg-primary);color:var(--fg-on-primary);border:0;border-radius:var(--radius-sm);padding:8px 10px}

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

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

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

    .hiw-ux8__head {
        margin-bottom: 1.25rem;
    }

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

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

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

    .hiw-ux8__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-ux8__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-ux8__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-ux8__track h3 {
        margin: .8rem 0 .35rem;
    }

    .hiw-ux8__track p {
        margin: 0;
    }

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

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

.features__title {
    text-align: left;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-2);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: left;
    border: 1px solid var(--border-on-surface);
}

.features__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.features__icon {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

  .nav-link {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-600);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    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(6px) rotate(45deg);
  }

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

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: calc(var(--gap) * 0.75);
    }

    .nav-menu.open {
      display: flex;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    padding: 2.5rem 1.5rem 1.5rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    margin-bottom: 0.5rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer-logo:hover {
    color: #4fc3f7;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #b0bec5;
    margin-top: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal-links a {
    color: #90a4ae;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal-links a:hover {
    color: #4fc3f7;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2c3e50;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .contact-label {
    font-weight: 600;
    color: #b0bec5;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #78909c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #607d8b;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-left {
      flex: 0 0 auto;
      margin-bottom: 0;
    }
    .footer-right {
      flex: 0 0 auto;
      align-items: flex-end;
      text-align: right;
      margin-bottom: 0;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

.nftouch-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nftouch-v9__wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .nftouch-v9__head {
        margin-bottom: 12px;
    }

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

    .nftouch-v9__head p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .nftouch-v9__stream {
        display: grid;
        gap: 8px;
    }

    .nftouch-v9__stream a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 999px;
        background: rgba(255, 255, 255, .1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v9__stream span {
        opacity: .86;
        white-space: nowrap;
    }

    .nftouch-v9__foot {
        margin-top: 12px;
    }

    .nftouch-v9__foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

    @media (max-width: 700px) {
        .nftouch-v9__stream a {
            flex-direction: column;
            align-items: flex-start;
            border-radius: var(--radius-md);
        }

        .nftouch-v9__stream span {
            white-space: normal;
        }
    }

.form-fresh-v3 {
        padding: calc(var(--space-y) * 2.6) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface);
    }

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

    .form-fresh-v3 .band {
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
    }

    .form-fresh-v3 .band h2 {
        margin: 0 0 .35rem;
    }

    .form-fresh-v3 .band p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v3 .row {
        display: flex;
        flex-wrap: wrap;
        gap: .7rem;
    }

    .form-fresh-v3 label {
        display: grid;
        gap: .3rem;
        min-width: 190px;
        flex: 1 1 220px;
    }

    .form-fresh-v3 span {
        font-size: .84rem;
        color: var(--fg-on-surface-light);
    }

    .form-fresh-v3 input {
        padding: .65rem .75rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v3 button {
        padding: .7rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        align-self: end;
    }

.map-note-c3 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .map-note-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1rem;
    }

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

    .map-note-c3__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .map-note-c3__notes {
        margin-top: 1rem;
        display: grid;
        gap: .7rem;
    }

    .map-note-c3__notes div {
        padding: .9rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__notes span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .map-note-c3__embed {
        overflow: hidden;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-note-c3__embed iframe {
        display: block;
        width: 100%;
        height: 24rem;
    }

    @media (max-width: 840px) {
        .map-note-c3__wrap {
            grid-template-columns: 1fr;
        }
    }

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

  .nav-link {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-600);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    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(6px) rotate(45deg);
  }

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

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: calc(var(--gap) * 0.75);
    }

    .nav-menu.open {
      display: flex;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    padding: 2.5rem 1.5rem 1.5rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    margin-bottom: 0.5rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer-logo:hover {
    color: #4fc3f7;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #b0bec5;
    margin-top: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal-links a {
    color: #90a4ae;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal-links a:hover {
    color: #4fc3f7;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2c3e50;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .contact-label {
    font-weight: 600;
    color: #b0bec5;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #78909c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #607d8b;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-left {
      flex: 0 0 auto;
      margin-bottom: 0;
    }
    .footer-right {
      flex: 0 0 auto;
      align-items: flex-end;
      text-align: right;
      margin-bottom: 0;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

    .policy-layout-d .timeline {
        border-left: 3px solid var(--brand);
        padding-left: 14px;
        display: grid;
        gap: 12px;
    }

    .policy-layout-d article {
        position: relative;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .policy-layout-d .meta {
        margin: 0;
        color: var(--brand);
        font-size: .9rem;
        font-weight: 600;
    }

    .policy-layout-d h3 {
        margin: 7px 0;
    }

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

  .nav-link {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-600);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    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(6px) rotate(45deg);
  }

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

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: calc(var(--gap) * 0.75);
    }

    .nav-menu.open {
      display: flex;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    padding: 2.5rem 1.5rem 1.5rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    margin-bottom: 0.5rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer-logo:hover {
    color: #4fc3f7;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #b0bec5;
    margin-top: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal-links a {
    color: #90a4ae;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal-links a:hover {
    color: #4fc3f7;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2c3e50;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .contact-label {
    font-weight: 600;
    color: #b0bec5;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #78909c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #607d8b;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-left {
      flex: 0 0 auto;
      margin-bottom: 0;
    }
    .footer-right {
      flex: 0 0 auto;
      align-items: flex-end;
      text-align: right;
      margin-bottom: 0;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

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

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

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

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

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

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

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

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

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

    .terms-layout-b p, .terms-layout-b li {
        color: var(--neutral-600);
        margin-top: 0;
    }

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

  .nav-link {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-600);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    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(6px) rotate(45deg);
  }

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

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: calc(var(--gap) * 0.75);
    }

    .nav-menu.open {
      display: flex;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    padding: 2.5rem 1.5rem 1.5rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    margin-bottom: 0.5rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer-logo:hover {
    color: #4fc3f7;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #b0bec5;
    margin-top: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal-links a {
    color: #90a4ae;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal-links a:hover {
    color: #4fc3f7;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2c3e50;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .contact-label {
    font-weight: 600;
    color: #b0bec5;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #78909c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #607d8b;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-left {
      flex: 0 0 auto;
      margin-bottom: 0;
    }
    .footer-right {
      flex: 0 0 auto;
      align-items: flex-end;
      text-align: right;
      margin-bottom: 0;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

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

header {
    background-color: var(--neutral-0);
    border-bottom: 1px solid var(--border-on-surface-light);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
  }

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

  .logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: -0.02em;
  }

  .logo:hover {
    color: var(--brand-contrast);
  }

  .nav-menu {
    display: flex;
    gap: var(--gap);
    align-items: center;
  }

  .nav-link {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--neutral-600);
    text-decoration: none;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: var(--font-size-base);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
  }

  .cta-button:hover {
    background-color: var(--bg-primary-hover);
    box-shadow: var(--shadow-md);
  }

  .burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--neutral-800);
    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(6px) rotate(45deg);
  }

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

  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  @media (max-width: 767px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--neutral-0);
      border-bottom: 1px solid var(--border-on-surface-light);
      box-shadow: var(--shadow-md);
      padding: var(--space-y) var(--space-x);
      gap: calc(var(--gap) * 0.75);
    }

    .nav-menu.open {
      display: flex;
    }

    .cta-button {
      display: none;
    }

    .burger {
      display: flex;
    }
  }

  @media (min-width: 768px) {
    .nav-menu {
      display: flex !important;
    }
  }

footer {
    background-color: #1a2a3a;
    color: #e0e6ed;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    padding: 2.5rem 1.5rem 1.5rem;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer-left {
    flex: 1 1 100%;
    margin-bottom: 1.5rem;
  }
  .footer-right {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    margin-bottom: 0.5rem;
  }
  .footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.02em;
  }
  .footer-logo:hover {
    color: #4fc3f7;
  }
  .footer-tagline {
    font-size: 0.9rem;
    color: #b0bec5;
    margin-top: 0.25rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-legal-links a {
    color: #90a4ae;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
  }
  .footer-legal-links a:hover {
    color: #4fc3f7;
  }
  .footer-bottom {
    flex: 1 1 100%;
    border-top: 1px solid #2c3e50;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
  }
  .footer-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .contact-label {
    font-weight: 600;
    color: #b0bec5;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    font-size: 0.8rem;
    color: #78909c;
    margin-bottom: 0.75rem;
    line-height: 1.4;
  }
  .footer-copyright {
    font-size: 0.8rem;
    color: #607d8b;
    margin: 0;
  }
  @media (min-width: 768px) {
    .footer-left {
      flex: 0 0 auto;
      margin-bottom: 0;
    }
    .footer-right {
      flex: 0 0 auto;
      align-items: flex-end;
      text-align: right;
      margin-bottom: 0;
    }
    .footer-nav ul {
      justify-content: flex-end;
    }
    .footer-legal-links {
      justify-content: flex-end;
    }
    .footer-contact {
      justify-content: center;
    }
  }

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

    .cookie-cv15__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.45), rgba(17, 24, 39, 0.95));
        color: #f3f4f6;
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, 0.35);
    }

    .cookie-cv15__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .cookie-cv15__top strong {
        font-size: 16px;
    }

    .cookie-cv15__top a {
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
    }

    .cookie-cv15 p {
        margin: 10px 0 0;
        color: #d1d5db;
    }

    .cookie-cv15__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
    }

    .cookie-cv15__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, 0.45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, 0.65);
        cursor: pointer;
    }

    .cookie-cv15__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .cookie-cv15__card {
            max-width: none;
        }
    }

.nf404-v9 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--accent);
        color: var(--accent-contrast);
    }

    .nf404-v9__card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .26);
        background: rgba(255, 255, 255, .08);
        padding: clamp(28px, 4vw, 46px);
    }

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

    .nf404-v9 p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .nf404-v9 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        color: var(--accent-contrast);
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, .45);
    }