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

  --max-w: 1200px;
  --space-x: 0.82rem;
  --space-y: 1.41rem;
  --gap: 1.05rem;

  --radius-xl: 1.02rem;
  --radius-lg: 0.82rem;
  --radius-md: 0.46rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.11);
  --shadow-md: 0 6px 12px rgba(0,0,0,0.14);
  --shadow-lg: 0 10px 32px rgba(0,0,0,0.17);

  --overlay: rgba(0,0,0,0.55);
  --anim-duration: 260ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #005f73;
  --brand-contrast: #ffffff;
  --accent: #ee6c4d;
  --accent-contrast: #ffffff;

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

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

  --bg-alt: #f4f6f8;
  --fg-on-alt: #1e293b;

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

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

  --bg-primary: #005f73;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004a5c;
  --ring: #005f73;

  --bg-accent: #ee6c4d;
  --fg-on-accent: #ffffff;
  --bg-accent-hover: #d45b3e;

  --link: #005f73;
  --link-hover: #004a5c;

  --gradient-hero: linear-gradient(135deg, #005f73 0%, #0a9396 100%);
  --gradient-accent: linear-gradient(135deg, #ee6c4d 0%, #f4a261 100%);

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    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-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x) var(--space-y);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding-bottom: var(--space-y);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #81d4fa;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .footer-contact {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #2a2a4a;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  .footer-disclaimer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__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-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.intro-spokes-c3 {
        padding: clamp(4rem, 9vw, 7rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

    .intro-spokes-c3__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: flex;
        gap: 1.5rem;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .intro-spokes-c3__hero {
        flex: 1 1 22rem;
    }

    .intro-spokes-c3__hero p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        letter-spacing: .12em;
        text-transform: uppercase;
        font-size: .82rem;
    }

    .intro-spokes-c3__hero h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.5rem, 5vw, 4.6rem);
        line-height: 1.02;
    }

    .intro-spokes-c3__hero span {
        display: block;
        margin-top: 1rem;
        color: rgba(255, 255, 255, .88);
        max-width: 38rem;
    }

    .intro-spokes-c3__wheel {
        flex: 0 0 18rem;
        min-height: 18rem;
        position: relative;
    }

    .intro-spokes-c3__note {
        position: absolute;
        padding: .6rem .8rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .intro-spokes-c3__note--a {
        top: 0;
        left: 18%;
    }

    .intro-spokes-c3__note--b {
        right: 0;
        top: 42%;
    }

    .intro-spokes-c3__note--c {
        left: 0;
        bottom: 12%;
    }

.values-papers-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .values-papers-l6__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .values-papers-l6__head {
        margin-bottom: 1.1rem;
    }

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

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

    .values-papers-l6__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-papers-l6__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px dashed var(--border-on-surface-light);
    }

    .values-papers-l6__grid div {
        font-size: 1.25rem;
    }

    .values-papers-l6__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

    .values-papers-l6__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.touch-panorama {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--gradient-accent);
        color: var(--fg-on-primary);
    }

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

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

    .touch-panorama .lead {
        margin: 10px 0 14px;
    }

    .touch-panorama .lane {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
    }

    .touch-panorama article {
        min-width: 250px;
        border: 1px solid var(--chip-bg);
        border-radius: 14px;
        background: var(--chip-bg);
        padding: 12px;
        scroll-snap-align: start;
    }

    .touch-panorama article h3 {
        margin: 0 0 8px;
    }

    .touch-panorama article p {
        margin: 0 0 8px;
    }

    .touch-panorama article a {
        color: var(--fg-on-primary);
        text-decoration: underline;
    }

    .touch-panorama .main {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 10px;
        background: var(--fg-on-primary);
        color: var(--fg-on-accent);
    }

.bloglist-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .bloglist-fresh-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .bloglist-fresh-v6 .feed {
        display: grid;
        grid-template-columns:repeat(12, minmax(0, 1fr));
        gap: var(--gap);
    }

    .bloglist-fresh-v6 article {
        grid-column: span 6;
        display: grid;
        grid-template-columns:140px 1fr;
        gap: .8rem;
        padding: .8rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .bloglist-fresh-v6 .thumb img {
        width: 100%;
        height: 100%;
        min-height: 100px;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .bloglist-fresh-v6 .meta {
        margin: 0;
        font-size: .82rem;
        color: var(--fg-on-surface-light);
    }

    .bloglist-fresh-v6 h3 {
        margin: .3rem 0;
    }

    .bloglist-fresh-v6 h3 a {
        text-decoration: none;
        color: var(--fg-on-surface);
    }

    .bloglist-fresh-v6 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 960px) {
        .bloglist-fresh-v6 article {
            grid-column: 1/-1;
        }
    }

    @media (max-width: 620px) {
        .bloglist-fresh-v6 article {
            grid-template-columns:1fr;
        }
    }

.why-choose {

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

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

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

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

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

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

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

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

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

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

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

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

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

        pointer-events: none;
    }

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    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-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x) var(--space-y);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding-bottom: var(--space-y);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #81d4fa;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .footer-contact {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #2a2a4a;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  .footer-disclaimer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__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-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.bloglist-fresh-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .bloglist-fresh-v6 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .bloglist-fresh-v6 .feed {
        display: grid;
        grid-template-columns:repeat(12, minmax(0, 1fr));
        gap: var(--gap);
    }

    .bloglist-fresh-v6 article {
        grid-column: span 6;
        display: grid;
        grid-template-columns:140px 1fr;
        gap: .8rem;
        padding: .8rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .bloglist-fresh-v6 .thumb img {
        width: 100%;
        height: 100%;
        min-height: 100px;
        object-fit: cover;
        border-radius: var(--radius-sm);
    }

    .bloglist-fresh-v6 .meta {
        margin: 0;
        font-size: .82rem;
        color: var(--fg-on-surface-light);
    }

    .bloglist-fresh-v6 h3 {
        margin: .3rem 0;
    }

    .bloglist-fresh-v6 h3 a {
        text-decoration: none;
        color: var(--fg-on-surface);
    }

    .bloglist-fresh-v6 p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    @media (max-width: 960px) {
        .bloglist-fresh-v6 article {
            grid-column: 1/-1;
        }
    }

    @media (max-width: 620px) {
        .bloglist-fresh-v6 article {
            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
        }
    }

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    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-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x) var(--space-y);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding-bottom: var(--space-y);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #81d4fa;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .footer-contact {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #2a2a4a;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  .footer-disclaimer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__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-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.blog-item--light-v6 {
        padding: 48px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .blog-item__title {
        margin: 0 0 6px;
        font-size: clamp(24px,4vw,32px);
    }

    .blog-item__meta {
        margin: 0 0 12px;
        font-size: 0.9rem;
        color: var(--neutral-600);
    }

    .blog-item__text {
        margin: 0;
        font-size: 0.98rem;
        color: var(--neutral-700);
        line-height: 1.7;
    }

.articles {

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

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

    .articles .articles__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .articles .articles__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .articles .articles__header p {
        font-size: clamp(16px, 2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .articles .articles__list {
        display: flex;
        flex-direction: column;
        gap: clamp(24px, 4vw, 32px);
    }

    .articles .articles__item {
        display: grid;
        grid-template-columns: 200px 1fr;
        gap: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .articles .articles__image {
        width: 100%;
        height: 150px;
        border-radius: var(--radius-md);
        overflow: hidden;
    }

    .articles .articles__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .articles .articles__content h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
    }

    .articles .articles__content h3 a {
        color: var(--fg-on-surface);
        text-decoration: none;
    }

    .articles .articles__content h3 a:hover {
        color: var(--link-hover);
    }

    .articles .articles__content p {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.6;
        color: var(--neutral-600);
        margin: 0 0 0.75rem;
    }

    .articles .articles__meta {
        font-size: clamp(13px, 2vw, 15px);
        color: var(--neutral-600);
    }

    @media (max-width: 768px) {
        .articles .articles__item {
            grid-template-columns: 1fr;
        }
    }

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    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-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x) var(--space-y);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding-bottom: var(--space-y);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #81d4fa;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .footer-contact {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #2a2a4a;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  .footer-disclaimer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__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-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.blog-item--light-v6 {
        padding: 48px 20px;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .blog-item__title {
        margin: 0 0 6px;
        font-size: clamp(24px,4vw,32px);
    }

    .blog-item__meta {
        margin: 0 0 12px;
        font-size: 0.9rem;
        color: var(--neutral-600);
    }

    .blog-item__text {
        margin: 0;
        font-size: 0.98rem;
        color: var(--neutral-700);
        line-height: 1.7;
    }

.author {

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

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

    .author .author__content {
        display: flex;
        gap: clamp(24px, 4vw, 40px);
        align-items: flex-start;
    }

    .author .author__image {
        flex-shrink: 0;
        width: clamp(120px, 18vw, 180px);
        height: clamp(120px, 18vw, 180px);
        border-radius: 50%;
        overflow: hidden;
    }

    .author .author__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .author .author__info h3 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-alt);
    }

    .author .author__role {
        font-size: clamp(16px, 2.5vw, 18px);
        color: var(--bg-accent);
        margin: 0 0 1rem;
        font-weight: 600;
    }

    .author .author__bio {
        font-size: clamp(15px, 2.2vw, 17px);
        line-height: 1.7;
        color: var(--neutral-600);
        margin: 0 0 1.5rem;
    }

    .author .author__contacts a {
        color: var(--link);
        text-decoration: none;
        font-size: clamp(14px, 2vw, 16px);
    }

    .author .author__contacts a:hover {
        color: var(--link-hover);
    }

    @media (max-width: 768px) {
        .author .author__content {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
    }

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    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-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x) var(--space-y);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding-bottom: var(--space-y);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #81d4fa;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .footer-contact {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #2a2a4a;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  .footer-disclaimer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__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-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

.blog-item--light-v6 {

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

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

.blog-item__title {
    margin: 0 0 6px;
    font-size: clamp(24px,4vw,32px);
}

.blog-item__meta {
    margin: 0 0 12px;
    font-size: 0.9rem;
    color: var(--neutral-600);
}

.blog-item__text {
    margin: 0;
    font-size: 0.98rem;
    color: var(--neutral-700);
    line-height: 1.7;
}

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    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-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x) var(--space-y);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding-bottom: var(--space-y);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #81d4fa;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .footer-contact {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #2a2a4a;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  .footer-disclaimer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__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-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    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-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x) var(--space-y);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding-bottom: var(--space-y);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #81d4fa;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .footer-contact {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #2a2a4a;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  .footer-disclaimer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__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-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

    .form-layout-d .wrap {
        max-width: 760px;
        margin: 0 auto;
    }

    .form-layout-d .section-head {
        margin-bottom: 18px;
    }

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

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

    .form-layout-d .line-form {
        border-top: 2px solid var(--brand);
        padding-top: 12px;
    }

    .form-layout-d label {
        display: grid;
        gap: 8px;
        margin-bottom: 12px;
        font-weight: 600;
        color: var(--brand);
    }

    .form-layout-d input, .form-layout-d textarea {
        border: 0;
        border-bottom: 1px solid var(--neutral-300);
        padding: 8px 2px;
        font: inherit;
        background: transparent;
    }

    .form-layout-d input:focus, .form-layout-d textarea:focus {
        outline: none;
        border-color: var(--ring);
    }

    .form-layout-d button {
        border: 1px solid var(--brand);
        color: var(--brand);
        background: transparent;
        border-radius: 999px;
        padding: 9px 16px;
    }

.connect {
        color: var(--accent-contrast);
        background: var(--accent);
        padding: clamp(32px, 5vw, 64px) clamp(16px, 4vw, 40px);
    }

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

    .connect .connect__header {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 56px);
    }

    .connect .connect__header h2 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
    }

    .connect .connect__header p {
        font-size: clamp(16px, 2vw, 18px);
        margin: 0;
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: clamp(20px, 3vw, 28px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(12px, 2vw, 16px);
        padding: clamp(24px, 4vw, 32px);
        background: var(--bg-page);
        border-radius: var(--radius-lg);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, box-shadow 0.3s;
    }

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

    .connect .connect__icon {
        font-size: clamp(40px, 7vw, 64px);
        width: clamp(80px, 12vw, 120px);
        height: clamp(80px, 12vw, 120px);
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-accent);
        border-radius: 50%;
    }

    .connect .connect__name {
        font-size: clamp(16px, 2.5vw, 18px);
        font-weight: 600;
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    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-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x) var(--space-y);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding-bottom: var(--space-y);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #81d4fa;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .footer-contact {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #2a2a4a;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  .footer-disclaimer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__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-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

    .policy-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .policy-layout-f .rows {
        display: grid;
        gap: 10px;
    }

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

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

    .policy-layout-f .head span {
        min-width: 30px;
        height: 30px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .policy-layout-f .head h3 {
        margin: 0;
    }

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    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-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x) var(--space-y);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding-bottom: var(--space-y);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #81d4fa;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .footer-contact {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #2a2a4a;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  .footer-disclaimer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__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-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    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-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x) var(--space-y);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding-bottom: var(--space-y);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #81d4fa;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .footer-contact {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #2a2a4a;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  .footer-disclaimer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__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-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

    .thank-mode-f .shell {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        border: 1px solid var(--border-on-surface-light);
    }

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

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

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

header {
    background-color: var(--surface-1);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 100;
  }
  .header-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap);
  }
  .logo {
    font-size: calc(var(--font-size-base) * 1.4);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: background-color var(--anim-duration) var(--anim-ease);
    z-index: 200;
  }
  .burger:hover {
    background-color: var(--btn-ghost-bg-hover);
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: var(--neutral-800);
    border-radius: 2px;
    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-color: var(--surface-1);
    box-shadow: var(--shadow-md);
    padding: 0 var(--space-x) var(--space-y);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding-bottom: var(--space-y);
  }
  .nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .nav-menu a {
    display: block;
    padding: 0.6rem 0.8rem;
    color: var(--neutral-800);
    text-decoration: none;
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    border-radius: var(--radius-md);
    transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }
  .nav-menu a:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--brand);
  }
  @media (min-width: 768px) {
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-md);
      padding: 0 var(--space-x) var(--space-y);
      max-height: 0;
      overflow: hidden;
      transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
    }
    .nav-menu.open {
      max-height: 400px;
      padding-bottom: var(--space-y);
    }
    .nav-menu ul {
      flex-direction: column;
      gap: 0.5rem;
    }
  }

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;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1.5rem;
  }
  .footer-brand {
    flex: 1 1 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #4fc3f7;
    text-decoration: none;
    letter-spacing: 1px;
  }
  .footer-logo:hover {
    color: #81d4fa;
  }
  .footer-nav {
    flex: 2 1 300px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    flex: 1 1 200px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .footer-contact {
    flex: 1 1 250px;
    background: transparent;
    padding: 0;
    margin: 0;
  }
  .footer-contact p {
    margin: 0.3rem 0;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-contact a:hover {
    text-decoration: underline;
  }
  .footer-disclaimer {
    border-top: 1px solid #2a2a4a;
    padding-top: 1.2rem;
    text-align: center;
    font-size: 0.85rem;
    color: #9e9e9e;
  }
  .footer-disclaimer a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .footer-disclaimer a:hover {
    text-decoration: underline;
  }
  @media (max-width: 768px) {
    .footer-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      align-items: center;
    }
    .footer-contact {
      text-align: center;
    }
  }

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

    .cookie-lv16__shell {
        max-width: 720px;
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-lg);
        padding: var(--space-y) var(--space-x);
    }

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

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

    .cookie-lv16__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-lv16__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

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

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

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

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

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