:root {
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 13.6px;
  --line-height-base: 1.39;

  --max-w: 980px;
  --space-x: 0.93rem;
  --space-y: 0.63rem;
  --gap: 0.41rem;

  --radius-xl: 0.78rem;
  --radius-lg: 0.65rem;
  --radius-md: 0.41rem;
  --radius-sm: 0.17rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.07);
  --shadow-lg: 0 14px 28px rgba(0,0,0,0.09);

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

  --brand: #1E3A5F;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B35;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D1D5DB;
  --neutral-600: #6B7280;
  --neutral-800: #1F2937;
  --neutral-900: #111827;

  --bg-page: #FFFFFF;
  --fg-on-page: #1F2937;

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

  --surface-1: #FFFFFF;
  --surface-2: #F3F4F6;
  --fg-on-surface: #1F2937;
  --border-on-surface: #E5E7EB;

  --surface-light: #F9FAFB;
  --fg-on-surface-light: #374151;
  --border-on-surface-light: #E5E7EB;

  --bg-primary: #1E3A5F;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #162D4A;
  --ring: #FF6B35;

  --bg-accent: #FF6B35;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #E55A2B;

  --link: #1E3A5F;
  --link-hover: #FF6B35;

  --gradient-hero: linear-gradient(135deg, #1E3A5F 0%, #2B5A8A 100%);
  --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        position: relative;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: var(--line-height-base);
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 110;
        transition: transform var(--anim-duration) var(--anim-ease);
    }
    .burger-line {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        opacity: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .nav-menu.open {
        max-height: 400px;
        opacity: 1;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 0;
        color: var(--neutral-800);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-bottom: 2px solid transparent;
        transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover,
    .nav-link:focus-visible {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    @media (min-width: 768px) {
        .burger {
            display: flex;
        }
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            border-bottom: 1px solid var(--border-on-surface);
        }
        .nav-menu.open {
            max-height: 400px;
            opacity: 1;
        }
        .nav-list {
            flex-direction: column;
            gap: var(--gap);
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    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;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-nav a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    flex: 1 1 200px;
  }
  .footer-contact address {
    font-style: normal;
    color: #b0b0c0;
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .footer-contact a {
    color: #b0b0c0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand, .footer-links, .footer-contact {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact address {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.intro-slice-c6 {
        padding: clamp(3.8rem, 8vw, 6.8rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .intro-slice-c6__image {
        flex: 1 1 18rem;
        order: var(--random-number);
    }

    .intro-slice-c6__copy {
        flex: 1 1 22rem;
        order: calc(3 - var(--random-number));
    }

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

    .intro-slice-c6__copy p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .intro-slice-c6__copy h1 {
        margin: .55rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.6rem);
        line-height: 1;
    }

    .intro-slice-c6__copy strong {
        display: block;
        margin-top: .65rem;
        font-size: clamp(1.1rem, 2vw, 1.5rem);
    }

    .intro-slice-c6__copy span {
        display: block;
        margin-top: .9rem;

    }

    .intro-slice-c6__meta {
        margin-top: 1rem;
        padding: .85rem 1rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
    }

.cta-struct-v1 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.values-board-l8 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .values-board-l8__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-board-l8__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-board-l8__head h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .values-board-l8__head p {
        margin: .65rem auto 0;
        max-width: 40rem;
        color: var(--neutral-600);
    }

    .values-board-l8__board {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .values-board-l8__board article {
        padding: 1rem;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-board-l8__board strong {
        color: var(--brand);
    }

    .values-board-l8__board h3 {
        margin: .7rem 0 .35rem;
    }

    .values-board-l8__board p {
        margin: 0;
        color: var(--neutral-600);
    }

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

    .touch-stream .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .touch-stream .touch-header {
        margin-bottom: 12px;
    }

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

    .touch-stream .touhc-header p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .touch-stream .stream {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 8px;
    }

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

    .touch-stream .chip em {
        font-style: normal;
        opacity: .85;
    }

    .touch-stream .foot {
        margin-top: 12px;
    }

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        position: relative;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: var(--line-height-base);
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 110;
        transition: transform var(--anim-duration) var(--anim-ease);
    }
    .burger-line {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        opacity: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .nav-menu.open {
        max-height: 400px;
        opacity: 1;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 0;
        color: var(--neutral-800);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-bottom: 2px solid transparent;
        transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover,
    .nav-link:focus-visible {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    @media (min-width: 768px) {
        .burger {
            display: flex;
        }
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            border-bottom: 1px solid var(--border-on-surface);
        }
        .nav-menu.open {
            max-height: 400px;
            opacity: 1;
        }
        .nav-list {
            flex-direction: column;
            gap: var(--gap);
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    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;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-nav a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    flex: 1 1 200px;
  }
  .footer-contact address {
    font-style: normal;
    color: #b0b0c0;
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .footer-contact a {
    color: #b0b0c0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand, .footer-links, .footer-contact {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact address {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

.partners--light-v6 {

    padding: 40px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.partners__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.partners__row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.partners__chip {
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    font-size: 0.85rem;
    color: var(--neutral-800);
}

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

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

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

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

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

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

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

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

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

    .identity-cv1__grid h3 {
        margin: 0;
    }

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

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

.testimonials-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

    .testimonials-struct-v1 h2, .testimonials-struct-v1 h3, .testimonials-struct-v1 p {
        margin: 0
    }

    .testimonials-struct-v1 article, .testimonials-struct-v1 blockquote, .testimonials-struct-v1 figure, .testimonials-struct-v1 .spotlight, .testimonials-struct-v1 .row {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .testimonials-struct-v1 .rail {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: .6rem
    }

    .testimonials-struct-v1 .stack {
        display: grid;
        gap: .65rem
    }

    .testimonials-struct-v1 .stack article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

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

    .testimonials-struct-v1 .table {
        display: grid;
        gap: .45rem
    }

    .testimonials-struct-v1 .row {
        display: grid;
        grid-template-columns:12rem 1fr;
        gap: .6rem
    }

    .testimonials-struct-v1 .wall {
        columns: 3;
        column-gap: var(--gap)
    }

    .testimonials-struct-v1 blockquote {
        break-inside: avoid;
        margin: 0 0 var(--gap) 0;
        display: grid;
        gap: .4rem
    }

    .testimonials-struct-v1 .slider {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap)
    }

    .testimonials-struct-v1 .dots {
        display: flex;
        justify-content: center;
        gap: .4rem
    }

    .testimonials-struct-v1 .dots span {
        padding: .25rem .45rem;
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .testimonials-struct-v1 .grid, .testimonials-struct-v1 .rail, .testimonials-struct-v1 .slider {
            grid-template-columns:1fr 1fr
        }

        .testimonials-struct-v1 .wall {
            columns: 2
        }
    }

    @media (max-width: 680px) {
        .testimonials-struct-v1 .grid, .testimonials-struct-v1 .rail, .testimonials-struct-v1 .slider, .testimonials-struct-v1 .row {
            grid-template-columns:1fr
        }

        .testimonials-struct-v1 .wall {
            columns: 1
        }
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        position: relative;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: var(--line-height-base);
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 110;
        transition: transform var(--anim-duration) var(--anim-ease);
    }
    .burger-line {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        opacity: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .nav-menu.open {
        max-height: 400px;
        opacity: 1;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 0;
        color: var(--neutral-800);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-bottom: 2px solid transparent;
        transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover,
    .nav-link:focus-visible {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    @media (min-width: 768px) {
        .burger {
            display: flex;
        }
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            border-bottom: 1px solid var(--border-on-surface);
        }
        .nav-menu.open {
            max-height: 400px;
            opacity: 1;
        }
        .nav-list {
            flex-direction: column;
            gap: var(--gap);
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    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;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-nav a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    flex: 1 1 200px;
  }
  .footer-contact address {
    font-style: normal;
    color: #b0b0c0;
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .footer-contact a {
    color: #b0b0c0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand, .footer-links, .footer-contact {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact address {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-l1 {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.capabilities-spectrum {

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

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

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

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

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

        transform: translateY(-20px);
    }

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

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

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

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

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

        transform: translateY(40px) scale(0.97);
    }

    .capabilities-spectrum__halo {
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at top, rgba(255, 255, 255, 0.18), transparent 65%);

        transition: opacity 0.4s ease;
        z-index: -1;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .plans-lv4__line h3 {
        margin: 0;
    }

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

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

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

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        position: relative;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: var(--line-height-base);
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 110;
        transition: transform var(--anim-duration) var(--anim-ease);
    }
    .burger-line {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        opacity: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .nav-menu.open {
        max-height: 400px;
        opacity: 1;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 0;
        color: var(--neutral-800);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-bottom: 2px solid transparent;
        transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover,
    .nav-link:focus-visible {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    @media (min-width: 768px) {
        .burger {
            display: flex;
        }
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            border-bottom: 1px solid var(--border-on-surface);
        }
        .nav-menu.open {
            max-height: 400px;
            opacity: 1;
        }
        .nav-list {
            flex-direction: column;
            gap: var(--gap);
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    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;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-nav a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    flex: 1 1 200px;
  }
  .footer-contact address {
    font-style: normal;
    color: #b0b0c0;
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .footer-contact a {
    color: #b0b0c0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand, .footer-links, .footer-contact {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact address {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

    .contacts-fresh-v4 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .contacts-fresh-v4 h2 {
        margin: 0 0 1rem;
        font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    }

    .contacts-fresh-v4 .grid {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .contacts-fresh-v4 article {
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
        padding: 1rem;
        border-radius: var(--radius-lg);
    }

    .contacts-fresh-v4 .tag {
        margin: 0;
        font-size: .86rem;
        opacity: .9;
    }

    .contacts-fresh-v4 .value {
        margin: .45rem 0 .8rem;
        font-size: 1.1rem;
        font-weight: 700;
    }

    .contacts-fresh-v4 a {
        color: var(--brand-contrast);
        text-decoration: underline;
    }

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

.support-lv6 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--surface-2), var(--surface-1));
        color: var(--fg-on-page);
    }

    .support-lv6__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .support-lv6__head {
        margin-bottom: 14px;
    }

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

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

    .support-lv6__table {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .support-lv6__table article {
        display: grid;
        grid-template-columns: .8fr 1.2fr;
        gap: 12px;
        padding: 12px;
        border-bottom: 1px solid var(--border-on-surface-light);
        background: var(--surface-1);
    }

    .support-lv6__table article:last-child {
        border-bottom: 0;
    }

    .support-lv6__table h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

    .support-lv6__table p {
        margin: 0;
        color: var(--neutral-600);
    }

    @media (max-width: 700px) {
        .support-lv6__table article {
            grid-template-columns: 1fr;
        }
    }

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

.nfform-v12 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-2);
        color: var(--fg-on-page);
    }

    .nfform-v12__form {
        max-width: 760px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

    .nfform-v12 h2 {
        margin: 0;
        font-size: clamp(28px, 4vw, 40px);
        color: var(--neutral-900);
    }

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

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

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

    .nfform-v12__agree {
        display: flex;
        align-items: center;
        gap: 8px;
    }

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        position: relative;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: var(--line-height-base);
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 110;
        transition: transform var(--anim-duration) var(--anim-ease);
    }
    .burger-line {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        opacity: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .nav-menu.open {
        max-height: 400px;
        opacity: 1;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 0;
        color: var(--neutral-800);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-bottom: 2px solid transparent;
        transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover,
    .nav-link:focus-visible {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    @media (min-width: 768px) {
        .burger {
            display: flex;
        }
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            border-bottom: 1px solid var(--border-on-surface);
        }
        .nav-menu.open {
            max-height: 400px;
            opacity: 1;
        }
        .nav-list {
            flex-direction: column;
            gap: var(--gap);
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    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;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-nav a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    flex: 1 1 200px;
  }
  .footer-contact address {
    font-style: normal;
    color: #b0b0c0;
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .footer-contact a {
    color: #b0b0c0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand, .footer-links, .footer-contact {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact address {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        position: relative;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: var(--line-height-base);
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 110;
        transition: transform var(--anim-duration) var(--anim-ease);
    }
    .burger-line {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        opacity: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .nav-menu.open {
        max-height: 400px;
        opacity: 1;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 0;
        color: var(--neutral-800);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-bottom: 2px solid transparent;
        transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover,
    .nav-link:focus-visible {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    @media (min-width: 768px) {
        .burger {
            display: flex;
        }
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            border-bottom: 1px solid var(--border-on-surface);
        }
        .nav-menu.open {
            max-height: 400px;
            opacity: 1;
        }
        .nav-list {
            flex-direction: column;
            gap: var(--gap);
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    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;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-nav a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    flex: 1 1 200px;
  }
  .footer-contact address {
    font-style: normal;
    color: #b0b0c0;
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .footer-contact a {
    color: #b0b0c0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand, .footer-links, .footer-contact {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact address {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .terms-layout-a h3, .terms-layout-a h4 {
        margin: 0 0 8px;
    }

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

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        position: relative;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: var(--line-height-base);
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 110;
        transition: transform var(--anim-duration) var(--anim-ease);
    }
    .burger-line {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        opacity: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .nav-menu.open {
        max-height: 400px;
        opacity: 1;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 0;
        color: var(--neutral-800);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-bottom: 2px solid transparent;
        transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover,
    .nav-link:focus-visible {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    @media (min-width: 768px) {
        .burger {
            display: flex;
        }
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            border-bottom: 1px solid var(--border-on-surface);
        }
        .nav-menu.open {
            max-height: 400px;
            opacity: 1;
        }
        .nav-list {
            flex-direction: column;
            gap: var(--gap);
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    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;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-nav a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    flex: 1 1 200px;
  }
  .footer-contact address {
    font-style: normal;
    color: #b0b0c0;
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .footer-contact a {
    color: #b0b0c0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand, .footer-links, .footer-contact {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact address {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

    .thank-mode-a p {
        margin: 12px 0 0;
        opacity: .92;
    }

    .thank-mode-a a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        text-decoration: none;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

header {
        background: var(--surface-1);
        border-bottom: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        position: relative;
        z-index: 100;
    }
    .header-container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .logo {
        font-size: calc(var(--font-size-base) * 1.5);
        font-weight: 700;
        color: var(--brand);
        text-decoration: none;
        line-height: var(--line-height-base);
        letter-spacing: -0.02em;
    }
    .logo:hover {
        color: var(--brand-contrast);
    }
    .burger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 28px;
        height: 20px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 110;
        transition: transform var(--anim-duration) var(--anim-ease);
    }
    .burger-line {
        display: block;
        width: 100%;
        height: 3px;
        background: var(--neutral-800);
        border-radius: var(--radius-sm);
        transition: all var(--anim-duration) var(--anim-ease);
    }
    .burger.active .burger-line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .burger.active .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger.active .burger-line:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-1);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
        opacity: 0;
        border-bottom: 1px solid var(--border-on-surface);
    }
    .nav-menu.open {
        max-height: 400px;
        opacity: 1;
    }
    .nav-list {
        list-style: none;
        margin: 0;
        padding: var(--space-y) var(--space-x);
        display: flex;
        flex-direction: column;
        gap: var(--gap);
    }
    .nav-link {
        display: block;
        padding: 0.5rem 0;
        color: var(--neutral-800);
        text-decoration: none;
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
        border-bottom: 2px solid transparent;
        transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }
    .nav-link:hover,
    .nav-link:focus-visible {
        color: var(--brand);
        border-bottom-color: var(--brand);
    }
    @media (min-width: 768px) {
        .burger {
            display: flex;
        }
        .nav-menu {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: var(--surface-1);
            box-shadow: var(--shadow-md);
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            border-bottom: 1px solid var(--border-on-surface);
        }
        .nav-menu.open {
            max-height: 400px;
            opacity: 1;
        }
        .nav-list {
            flex-direction: column;
            gap: var(--gap);
        }
    }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 2rem 1rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    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;
    gap: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
  }
  .footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-nav a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-nav a:hover {
    color: #ffffff;
  }
  .footer-links {
    flex: 1 1 150px;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }
  .footer-links a {
    color: #b0b0c0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
  }
  .footer-links a:hover {
    color: #ffffff;
  }
  .footer-contact {
    flex: 1 1 200px;
  }
  .footer-contact address {
    font-style: normal;
    color: #b0b0c0;
    font-size: 0.9rem;
    line-height: 1.8;
  }
  .footer-contact a {
    color: #b0b0c0;
    text-decoration: none;
  }
  .footer-contact a:hover {
    color: #ffffff;
  }
  .footer-disclaimer {
    flex: 1 1 100%;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #2a2a3e;
    font-size: 0.8rem;
    color: #888;
    text-align: center;
  }
  .footer-disclaimer p {
    margin: 0;
  }
  .footer-bottom {
    flex: 1 1 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.5rem;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand, .footer-links, .footer-contact {
      flex: 1 1 auto;
      width: 100%;
    }
    .footer-nav {
      align-items: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact address {
      text-align: center;
    }
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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