:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 16.3px;
  --line-height-base: 1.88;

  --max-w: 920px;
  --space-x: 1.17rem;
  --space-y: 1.5rem;
  --gap: 1.06rem;

  --radius-xl: 0.69rem;
  --radius-lg: 0.55rem;
  --radius-md: 0.35rem;
  --radius-sm: 0.23rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 5px 10px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 18px rgba(0,0,0,0.08);

  --overlay: rgba(0,0,0,0.55);
  --anim-duration: 460ms;
  --anim-ease: cubic-bezier(0.16,1,0.3,1);
  --random-number: 1;

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

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

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

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

  --surface-1: #ffffff;
  --surface-2: #f3f4f6;
  --fg-on-surface: #1f2937;
  --border-on-surface: #d1d5db;

  --surface-light: #ffffff;
  --fg-on-surface-light: #4b5563;
  --border-on-surface-light: #e5e7eb;

  --bg-primary: #1e3a5f;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #152a45;
  --ring: #1e3a5f;

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

  --link: #1e3a5f;
  --link-hover: #d97706;

  --gradient-hero: linear-gradient(135deg, #1a2a3a 0%, #2c3e50 100%);
  --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);

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

.site-header {
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--anim-duration) var(--anim-ease);
  flex-shrink: 0;
}

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

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 0.75);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-y) var(--space-x);
  z-index: 100;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.5);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: calc(var(--font-size-base) * 1.1);
  border-radius: var(--radius-md);
}

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.3);
  }
}

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

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, 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;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .footer-row:last-child {
      margin-bottom: 0;
    }
    .top-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .middle-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .bottom-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 100%;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
      }
    }
    .footer-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-nav {
      flex: 1 1 100%;
    }
    @media (min-width: 768px) {
      .footer-nav {
        flex: 0 0 auto;
      }
    }
    .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-menu li a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-menu li a:hover {
      color: #f0a500;
    }
    .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contact ul li {
      margin-bottom: 0.5rem;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-legal {
      margin-bottom: 1rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #999;
      margin: 0;
      max-width: 800px;
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.nfintro-v8 {
        padding: clamp(3.6rem, 8vw, 6.8rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .nfintro-v8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.05fr .95fr;
        gap: 1rem;
    }

    .nfintro-v8__main {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
    }

    .nfintro-v8__main p {
        margin: 0;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

    .nfintro-v8__main h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.3rem, 5vw, 4rem);
        line-height: 1.03;
    }

    .nfintro-v8__main strong {
        display: block;
        margin-top: .9rem;
        color: var(--brand);
    }

    .nfintro-v8__side {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        display: grid;
        align-content: center;
        gap: .85rem;
    }

    .nfintro-v8__side p {margin: 0; color: var(--neutral-600);}

    .nfintro-v8__actions {
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

    .nfintro-v8__actions a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        text-decoration: none;
        border: 1px solid var(--border-on-surface-light);
        color: var(--fg-on-page);
        background: var(--surface-1);
    }

    .nfintro-v8__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 860px) {
        .nfintro-v8__wrap {grid-template-columns: 1fr;}
    }

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

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

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

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

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

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

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

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v5 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

.nftouch-v12 {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nftouch-v12__wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .nftouch-v12__header {
        margin-bottom: 14px;
    }

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

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

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

    .nftouch-v12 li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 8px;
        align-items: center;
    }

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

    .nftouch-v12 li a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .nftouch-v12__cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

    @media (max-width: 680px) {
        .nftouch-v12 li {
            grid-template-columns: 1fr;
        }
    }

.bloglist-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .bloglist-fresh-v5 .shell {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .bloglist-fresh-v5 .rows {
        display: grid;
        gap: .75rem;
    }

    .bloglist-fresh-v5 article {
        display: grid;
        grid-template-columns:160px 1fr;
        gap: var(--gap);
        padding: .8rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

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

    .bloglist-fresh-v5 h3 {
        margin: 0 0 .35rem;
    }

    .bloglist-fresh-v5 h3 a {
        text-decoration: none;
        color: var(--neutral-0);
    }

    .bloglist-fresh-v5 p {
        margin: 0;
        opacity: .88;
    }

    .bloglist-fresh-v5 .more {
        margin-top: .55rem;
        display: inline-block;
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
    }

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

.nfsocial-v10 {
        padding: clamp(48px, 8vw, 80px) 0;
        background: var(--surface-1);
    }

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

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

    .nfsocial-v10__text {
        border-left: 2px solid var(--border-on-surface);
        padding-left: var(--space-x);
    }

    .nfsocial-v10__text:first-child {
        border-left: 0;
        padding-left: 0;
    }

    .nfsocial-v10__text h2 {
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .nfsocial-v10__text p {
        margin-bottom: var(--space-y);
        color: var(--neutral-600);
    }

    @media (max-width: 840px) {
        .nfsocial-v10__grid {
            grid-template-columns: 1fr;
        }

        .nfsocial-v10__text {
            border-left: 0;
            padding-left: 0;
        }
    }

.site-header {
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--anim-duration) var(--anim-ease);
  flex-shrink: 0;
}

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

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 0.75);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-y) var(--space-x);
  z-index: 100;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.5);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: calc(var(--font-size-base) * 1.1);
  border-radius: var(--radius-md);
}

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.3);
  }
}

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

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, 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;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .footer-row:last-child {
      margin-bottom: 0;
    }
    .top-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .middle-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .bottom-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 100%;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
      }
    }
    .footer-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-nav {
      flex: 1 1 100%;
    }
    @media (min-width: 768px) {
      .footer-nav {
        flex: 0 0 auto;
      }
    }
    .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-menu li a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-menu li a:hover {
      color: #f0a500;
    }
    .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contact ul li {
      margin-bottom: 0.5rem;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-legal {
      margin-bottom: 1rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #999;
      margin: 0;
      max-width: 800px;
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.bloglist-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .bloglist-fresh-v5 .shell {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .bloglist-fresh-v5 .rows {
        display: grid;
        gap: .75rem;
    }

    .bloglist-fresh-v5 article {
        display: grid;
        grid-template-columns:160px 1fr;
        gap: var(--gap);
        padding: .8rem;
        border-radius: var(--radius-md);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

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

    .bloglist-fresh-v5 h3 {
        margin: 0 0 .35rem;
    }

    .bloglist-fresh-v5 h3 a {
        text-decoration: none;
        color: var(--neutral-0);
    }

    .bloglist-fresh-v5 p {
        margin: 0;
        opacity: .88;
    }

    .bloglist-fresh-v5 .more {
        margin-top: .55rem;
        display: inline-block;
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
    }

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

.education-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nftouch-v12 {
        padding: clamp(56px, 8vw, 96px) 16px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .nftouch-v12__wrap {
        max-width: 860px;
        margin: 0 auto;
    }

    .nftouch-v12__header {
        margin-bottom: 14px;
    }

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

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

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

    .nftouch-v12 li {
        border: 1px solid var(--border-on-surface);
        border-radius: 12px;
        background: var(--neutral-0);
        padding: 10px 12px;
        display: grid;
        grid-template-columns: 1fr auto auto;
        gap: 8px;
        align-items: center;
    }

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

    .nftouch-v12 li a {
        color: var(--bg-primary);
        text-decoration: none;
    }

    .nftouch-v12__cta {
        display: inline-block;
        margin-top: 12px;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--neutral-0);
        border-radius: 10px;
        padding: 10px 14px;
    }

    @media (max-width: 680px) {
        .nftouch-v12 li {
            grid-template-columns: 1fr;
        }
    }

.site-header {
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--anim-duration) var(--anim-ease);
  flex-shrink: 0;
}

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

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 0.75);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-y) var(--space-x);
  z-index: 100;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.5);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: calc(var(--font-size-base) * 1.1);
  border-radius: var(--radius-md);
}

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.3);
  }
}

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

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, 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;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .footer-row:last-child {
      margin-bottom: 0;
    }
    .top-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .middle-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .bottom-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 100%;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
      }
    }
    .footer-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-nav {
      flex: 1 1 100%;
    }
    @media (min-width: 768px) {
      .footer-nav {
        flex: 0 0 auto;
      }
    }
    .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-menu li a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-menu li a:hover {
      color: #f0a500;
    }
    .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contact ul li {
      margin-bottom: 0.5rem;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-legal {
      margin-bottom: 1rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #999;
      margin: 0;
      max-width: 800px;
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.blogitem-fresh-v2 {
        padding: calc(var(--space-y) * 2.5) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .blogitem-fresh-v2 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .blogitem-fresh-v2 .hero {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap);
    }

    .blogitem-fresh-v2 img {
        width: 100%;
        height: 100%;
        min-height: 260px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .blogitem-fresh-v2 .title {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        display: grid;
        align-content: center;
        gap: .5rem;
    }

    .blogitem-fresh-v2 .meta {
        margin: 0;
        font-size: .85rem;
        color: var(--fg-on-surface-light);
    }

    .blogitem-fresh-v2 h1 {
        margin: 0;
        font-size: clamp(1.9rem, 3.8vw, 2.8rem);
    }

    .blogitem-fresh-v2 .title p {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .blogitem-fresh-v2 .body {
        max-width: 70ch;
        display: grid;
        gap: .8rem;
    }

    .blogitem-fresh-v2 .body p {
        margin: 0;
    }

    @media (max-width: 840px) {
        .blogitem-fresh-v2 .hero {
            grid-template-columns:1fr;
        }
    }

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

.site-header {
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--anim-duration) var(--anim-ease);
  flex-shrink: 0;
}

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

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 0.75);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-y) var(--space-x);
  z-index: 100;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.5);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: calc(var(--font-size-base) * 1.1);
  border-radius: var(--radius-md);
}

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.3);
  }
}

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

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, 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;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .footer-row:last-child {
      margin-bottom: 0;
    }
    .top-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .middle-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .bottom-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 100%;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
      }
    }
    .footer-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-nav {
      flex: 1 1 100%;
    }
    @media (min-width: 768px) {
      .footer-nav {
        flex: 0 0 auto;
      }
    }
    .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-menu li a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-menu li a:hover {
      color: #f0a500;
    }
    .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contact ul li {
      margin-bottom: 0.5rem;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-legal {
      margin-bottom: 1rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #999;
      margin: 0;
      max-width: 800px;
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.blogitem-fresh-v5 {
        padding: calc(var(--space-y) * 2.4) var(--space-x);
        background: var(--neutral-900);
        color: var(--neutral-0);
    }

    .blogitem-fresh-v5 .shell {
        max-width: 980px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .blogitem-fresh-v5 .meta {
        margin: 0;
        opacity: .78;
    }

    .blogitem-fresh-v5 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3rem);
    }

    .blogitem-fresh-v5 .lead {
        margin: 0;
        opacity: .88;
        max-width: 66ch;
    }

    .blogitem-fresh-v5 .frame {
        display: grid;
        grid-template-columns:.95fr 1.05fr;
        gap: var(--gap);
        align-items: start;
    }

    .blogitem-fresh-v5 img {
        width: 100%;
        aspect-ratio: 4/5;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .blogitem-fresh-v5 .content {
        display: grid;
        gap: .75rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--chip-bg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

    .blogitem-fresh-v5 .content p {
        margin: 0;
        opacity: .92;
    }

    @media (max-width: 860px) {
        .blogitem-fresh-v5 .frame {
            grid-template-columns:1fr;
        }

        .blogitem-fresh-v5 img {
            aspect-ratio: 16/9;
        }
    }

.site-header {
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--anim-duration) var(--anim-ease);
  flex-shrink: 0;
}

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

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 0.75);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-y) var(--space-x);
  z-index: 100;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.5);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: calc(var(--font-size-base) * 1.1);
  border-radius: var(--radius-md);
}

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.3);
  }
}

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

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, 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;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .footer-row:last-child {
      margin-bottom: 0;
    }
    .top-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .middle-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .bottom-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 100%;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
      }
    }
    .footer-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-nav {
      flex: 1 1 100%;
    }
    @media (min-width: 768px) {
      .footer-nav {
        flex: 0 0 auto;
      }
    }
    .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-menu li a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-menu li a:hover {
      color: #f0a500;
    }
    .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contact ul li {
      margin-bottom: 0.5rem;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-legal {
      margin-bottom: 1rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #999;
      margin: 0;
      max-width: 800px;
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

    .support-lv1__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

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

    .support-lv1__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-lv1__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-lv1__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-lv1__grid {
            grid-template-columns: 1fr;
        }
    }

.education-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.site-header {
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--anim-duration) var(--anim-ease);
  flex-shrink: 0;
}

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

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 0.75);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-y) var(--space-x);
  z-index: 100;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.5);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: calc(var(--font-size-base) * 1.1);
  border-radius: var(--radius-md);
}

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.3);
  }
}

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

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, 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;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .footer-row:last-child {
      margin-bottom: 0;
    }
    .top-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .middle-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .bottom-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 100%;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
      }
    }
    .footer-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-nav {
      flex: 1 1 100%;
    }
    @media (min-width: 768px) {
      .footer-nav {
        flex: 0 0 auto;
      }
    }
    .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-menu li a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-menu li a:hover {
      color: #f0a500;
    }
    .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contact ul li {
      margin-bottom: 0.5rem;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-legal {
      margin-bottom: 1rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #999;
      margin: 0;
      max-width: 800px;
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.contact-layout-d {
        padding: clamp(56px, 8vw, 94px) clamp(16px, 4vw, 34px);
        background: var(--accent);
        color: var(--neutral-0);
    }

    .contact-layout-d .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-d .box {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 18px;
        background: rgba(255, 255, 255, .05);
    }

    .contact-layout-d ul {
        margin: 0;
        padding: 0;
        list-style: none;
        display: grid;
        gap: 10px;
    }

    .contact-layout-d li {
        display: grid;
        gap: 4px;
        padding: 10px 12px;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .06);
    }

    .contact-layout-d .social {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-d .social a {
        text-decoration: none;
        color: var(--neutral-0);
        border: 1px solid rgba(255, 255, 255, .28);
        padding: 6px 10px;
        border-radius: 999px;
    }

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

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

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

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

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

    .support-lv1__grid {
        display: grid;
        gap: 10px;
        grid-template-columns: repeat(var(--cols, 3), minmax(0, 1fr));
    }

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

    .support-lv1__grid h3 {
        margin: 0 0 6px;
    }

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

    .support-lv1__grid a {
        color: var(--link);
        text-decoration: none;
        font-weight: 600;
    }

    @media (max-width: 900px) {
        .support-lv1__grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 640px) {
        .support-lv1__grid {
            grid-template-columns: 1fr;
        }
    }

.nfform-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(145deg, var(--accent), var(--bg-primary));
        color: var(--fg-on-primary);
    }

    .nfform-v9__form {
        max-width: 860px;
        margin: 0 auto;
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .25);
        background: rgba(255, 255, 255, .08);
        padding: 16px;
        display: grid;
        gap: 10px;
    }

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

    .nfform-v9__grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

    .nfform-v9 input,
    .nfform-v9 textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .15);
        color: var(--fg-on-primary);
        padding: 9px;
        font: inherit;
    }

    .nfform-v9 button {
        justify-self: start;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        font-weight: 700;
    }

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

.site-header {
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--anim-duration) var(--anim-ease);
  flex-shrink: 0;
}

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

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 0.75);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-y) var(--space-x);
  z-index: 100;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.5);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: calc(var(--font-size-base) * 1.1);
  border-radius: var(--radius-md);
}

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.3);
  }
}

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

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, 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;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .footer-row:last-child {
      margin-bottom: 0;
    }
    .top-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .middle-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .bottom-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 100%;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
      }
    }
    .footer-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-nav {
      flex: 1 1 100%;
    }
    @media (min-width: 768px) {
      .footer-nav {
        flex: 0 0 auto;
      }
    }
    .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-menu li a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-menu li a:hover {
      color: #f0a500;
    }
    .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contact ul li {
      margin-bottom: 0.5rem;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-legal {
      margin-bottom: 1rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #999;
      margin: 0;
      max-width: 800px;
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--anim-duration) var(--anim-ease);
  flex-shrink: 0;
}

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

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 0.75);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-y) var(--space-x);
  z-index: 100;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.5);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: calc(var(--font-size-base) * 1.1);
  border-radius: var(--radius-md);
}

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.3);
  }
}

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

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, 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;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .footer-row:last-child {
      margin-bottom: 0;
    }
    .top-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .middle-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .bottom-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 100%;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
      }
    }
    .footer-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-nav {
      flex: 1 1 100%;
    }
    @media (min-width: 768px) {
      .footer-nav {
        flex: 0 0 auto;
      }
    }
    .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-menu li a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-menu li a:hover {
      color: #f0a500;
    }
    .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contact ul li {
      margin-bottom: 0.5rem;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-legal {
      margin-bottom: 1rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #999;
      margin: 0;
      max-width: 800px;
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

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

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

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

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

    .policy-layout-b ol {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 10px;
    }

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

    .policy-layout-b h3 {
        margin: 0;
        color: var(--brand);
        font-size: 1rem;
    }

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

.site-header {
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--anim-duration) var(--anim-ease);
  flex-shrink: 0;
}

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

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 0.75);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-y) var(--space-x);
  z-index: 100;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.5);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: calc(var(--font-size-base) * 1.1);
  border-radius: var(--radius-md);
}

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.3);
  }
}

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

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, 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;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .footer-row:last-child {
      margin-bottom: 0;
    }
    .top-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .middle-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .bottom-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 100%;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
      }
    }
    .footer-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-nav {
      flex: 1 1 100%;
    }
    @media (min-width: 768px) {
      .footer-nav {
        flex: 0 0 auto;
      }
    }
    .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-menu li a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-menu li a:hover {
      color: #f0a500;
    }
    .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contact ul li {
      margin-bottom: 0.5rem;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-legal {
      margin-bottom: 1rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #999;
      margin: 0;
      max-width: 800px;
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

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

    .thank-mode-d .core {
        max-width: 740px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 46px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .thank-mode-d p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .thank-mode-d a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: 999px;
        text-decoration: none;
        background: var(--accent);
        color: var(--accent-contrast);
    }

.site-header {
  position: relative;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap);
  position: relative;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color var(--anim-duration) var(--anim-ease);
  flex-shrink: 0;
}

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

.nav-left,
.nav-right {
  display: flex;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: calc(var(--gap) * 0.75);
}

.nav-link {
  text-decoration: none;
  font-size: var(--font-size-base);
  color: var(--fg-on-surface);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  white-space: nowrap;
}

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

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

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

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--fg-on-surface);
  border-radius: 2px;
  transition: all var(--anim-duration) var(--anim-ease);
}

.burger-line + .burger-line {
  margin-top: 5px;
}

.burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface-1);
  border-bottom: 1px solid var(--border-on-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-y) var(--space-x);
  z-index: 100;
}

.mobile-nav.open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: calc(var(--gap) * 0.5);
}

.mobile-nav-list .nav-link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: calc(var(--font-size-base) * 1.1);
  border-radius: var(--radius-md);
}

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

@media (max-width: 767px) {
  .nav-left,
  .nav-right {
    display: none;
  }

  .burger {
    display: flex;
  }

  .header-inner {
    justify-content: center;
  }

  .logo {
    font-size: calc(var(--font-size-base) * 1.3);
  }
}

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

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, 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;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }
    .footer-row:last-child {
      margin-bottom: 0;
    }
    .top-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .middle-row {
      border-bottom: 1px solid #333;
      padding-bottom: 1.5rem;
    }
    .bottom-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-brand {
      flex: 1 1 100%;
      margin-bottom: 1rem;
    }
    @media (min-width: 768px) {
      .footer-brand {
        flex: 0 0 auto;
        margin-bottom: 0;
      }
    }
    .footer-logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .footer-nav {
      flex: 1 1 100%;
    }
    @media (min-width: 768px) {
      .footer-nav {
        flex: 0 0 auto;
      }
    }
    .footer-menu {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-menu li a {
      color: #e0e0e0;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-menu li a:hover {
      color: #f0a500;
    }
    .footer-contact ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contact ul li {
      margin-bottom: 0.5rem;
    }
    .footer-contact a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .footer-contact a:hover {
      color: #f0a500;
    }
    .footer-legal {
      margin-bottom: 1rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      margin: 0 0.5rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
    }
    .footer-disclaimer p {
      font-size: 0.85rem;
      color: #999;
      margin: 0;
      max-width: 800px;
    }

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

    .cookie-cv13__stack {
        max-width: 860px;
        margin: 0 auto;
        background: linear-gradient(145deg, #0f172a, #1e293b);
        color: #e2e8f0;
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv13__stack strong {
        display: block;
        margin-bottom: 6px;
        color: #f8fafc;
    }

    .cookie-cv13__stack p {
        margin: 0;
        color: #cbd5e1;
    }

    .cookie-cv13__actions {
        margin-top: 12px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .cookie-cv13__actions a {
        text-decoration: none;
        color: #e2e8f0;
        border: 1px solid rgba(148, 163, 184, 0.5);
        border-radius: 999px;
        padding: 7px 12px;
        transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }

    .cookie-cv13__actions a[data-choice='accept'] {
        background: #38bdf8;
        border-color: transparent;
        color: #0f172a;
        font-weight: 700;
    }

    .cookie-cv13__actions a:hover {
        background: rgba(148, 163, 184, 0.2);
    }

    .cookie-cv13__actions a[data-choice='accept']:hover {
        background: #67d3fb;
    }

.nf404-v11 {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: linear-gradient(150deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .nf404-v11__shell {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(28px, 4vw, 44px);
        background: rgba(15, 23, 42, .24);
        border: 1px solid rgba(255, 255, 255, .24);
    }

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

    .nf404-v11 p {
        margin: 12px 0 0;
        opacity: .9;
    }

    .nf404-v11 a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--neutral-0);
        color: var(--neutral-900);
        text-decoration: none;
    }