:root {
  --font-family: "Inter", sans-serif;
  --font-size-base: 19.7px;
  --line-height-base: 1.72;

  --max-w: 1680px;
  --space-x: 1.35rem;
  --space-y: 1.5rem;
  --gap: 1.94rem;

  --radius-xl: 1.12rem;
  --radius-lg: 0.99rem;
  --radius-md: 0.54rem;
  --radius-sm: 0.32rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.15);
  --shadow-md: 0 8px 14px rgba(0,0,0,0.2);
  --shadow-lg: 0 16px 38px rgba(0,0,0,0.24);

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

  --brand: #0A1F44;
  --brand-contrast: #FFFFFF;
  --accent: #0F9D58;
  --accent-contrast: #FFFFFF;

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

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

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

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

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

  --bg-primary: #1A73E8;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1557B0;
  --ring: #1A73E8;

  --bg-accent: #E8F5E9;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #0B8043;

  --link: #1A73E8;
  --link-hover: #1557B0;

  --gradient-hero: linear-gradient(135deg, #0A1F44 0%, #1A73E8 100%);
  --gradient-accent: linear-gradient(135deg, #0F9D58 0%, #0B8043 100%);

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

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-y) var(--space-x);
  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;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

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

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

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

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

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--space-x) var(--space-y);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

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

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

  .burger {
    display: flex;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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;
    }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #b0b0ff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #ffffff;
    }
    .footer-contacts ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contacts li {
      margin-bottom: 0.3rem;
    }
    .footer-contacts a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      width: 100%;
      margin-top: 1rem;
    }
    .footer-copyright p {
      margin: 0.3rem 0;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #a0a0a0;
      max-width: 800px;
      margin: 0.5rem auto 0;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        justify-content: center;
      }
    }

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

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

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

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

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

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

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

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

.hero-arc-v3 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt);
    }

    .hero-arc-v3 .shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns:minmax(0, .82fr) minmax(0, 1.18fr);
        gap: calc(var(--gap) * 2);
        align-items: stretch;
    }

    .hero-arc-v3 .media {
        padding: var(--gap);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
    }

    .hero-arc-v3 img {
        width: 100%;
        height: 100%;
        min-height: 320px;
        object-fit: cover;
        border-radius: var(--radius-lg);
    }

    .hero-arc-v3 .copy {
        display: grid;
        gap: var(--gap);
        align-content: start;
    }

    .hero-arc-v3 h1 {
        margin: .2rem 0;
        font-size: clamp(2rem, 4vw, 3.2rem);
        line-height: 1.1;
    }

    .hero-arc-v3 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v3 .stats {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .hero-arc-v3 .stats article {
        padding: 1rem;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
    }

    .hero-arc-v3 .stats p {
        margin: .3rem 0 0;
        color: var(--fg-on-surface-light);
        font-size: .92rem;
    }

    .hero-arc-v3 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: var(--gap);
    }

    .hero-arc-v3 .actions a {
        text-decoration: none;
        padding: .7rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-surface);
        background: var(--surface-1);
    }

    .hero-arc-v3 .actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 940px) {
        .hero-arc-v3 .shell {
            grid-template-columns:1fr;
        }

        .hero-arc-v3 .stats {
            grid-template-columns:1fr;
        }
    }

.gallery--colored-v9 {
    padding: 52px 20px;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--brand) 100%);
    color: #ffffff;
}

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

.gallery-v9__title {
    margin: 0 0 14px;
    font-size: clamp(24px, 4vw, 32px);
    color: #ffffff;
}

.gallery-v9__rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 1fr);
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.gallery-v9__tile {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.1);
    min-width: 180px;
}

.gallery-v9__tile img {
    display: block;
    width: 100%;
    height: 130px;
    object-fit: cover;
}

.gallery-v9__tile figcaption {
    padding: 8px 10px;
    font-size: 0.88rem;
    color: var(--neutral-100);
}

@media (max-width: 640px) {
    .gallery--colored-v9 {
        padding: 42px 14px;
    }
}

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

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

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

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

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

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

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

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

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

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

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

    .next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
        font-size: 1.1rem;
        opacity: 0.9;
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
        color: var(--accent-contrast);
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--accent-contrast);
        text-decoration: none;
        transition: background var(--anim-duration) var(--anim-ease);
    }

    .next-fan-c5__fan a:hover {
        background: rgba(255,255,255,0.2);
    }

    .next-fan-c5__fan strong {
        display: block;
        font-weight: 600;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
        font-size: 0.9rem;
        opacity: 0.85;
    }

    .next-fan-c5__tail {
        margin-top: 1rem;
        font-size: 1.1rem;
        line-height: 1.6;
        opacity: 0.9;
    }

    .next-fan-c5__wrap > a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1.5rem;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
        font-weight: 600;
        transition: transform var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
    }

    .next-fan-c5__wrap > a:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

.social-l2 {

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

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

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

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

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

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

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

    .social-l2__quote {
        display: none;
    }

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

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

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

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

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

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

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

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

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-y) var(--space-x);
  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;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

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

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

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

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

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--space-x) var(--space-y);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

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

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

  .burger {
    display: flex;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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;
    }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #b0b0ff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #ffffff;
    }
    .footer-contacts ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contacts li {
      margin-bottom: 0.3rem;
    }
    .footer-contacts a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      width: 100%;
      margin-top: 1rem;
    }
    .footer-copyright p {
      margin: 0.3rem 0;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #a0a0a0;
      max-width: 800px;
      margin: 0.5rem auto 0;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        justify-content: center;
      }
    }

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

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

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

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

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

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

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

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

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

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

.blog-grid-section__title {
    text-align: center;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
    color: var(--fg-on-page);
}

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

.blog-card {
    background-color: var(--surface-1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: all var(--anim-duration) var(--anim-ease);
    border: 1px solid var(--border-on-surface);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-card__image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-card__content {
    padding: clamp(16px, 3vw, 28px);
}

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

.blog-card__content p {
    color: var(--fg-on-surface-light);
    margin-bottom: var(--space-y);
}

.blog-card__meta {
    color: var(--neutral-600);
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.blog-card__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

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

.partners {

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

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

    .partners .partners__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
        color: var(--fg-on-page);
    }

    .partners .partners__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: clamp(32px, 5vw, 48px);
    }

    .partners .partners__item {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 28px);
        align-items: center;
        padding: clamp(24px, 4vw, 32px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
    }

    .partners .partners__logo {
        flex-shrink: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .partners .partners__logo img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .partners .partners__info h3 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

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

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

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-y) var(--space-x);
  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;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

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

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

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

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

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--space-x) var(--space-y);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

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

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

  .burger {
    display: flex;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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;
    }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #b0b0ff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #ffffff;
    }
    .footer-contacts ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contacts li {
      margin-bottom: 0.3rem;
    }
    .footer-contacts a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      width: 100%;
      margin-top: 1rem;
    }
    .footer-copyright p {
      margin: 0.3rem 0;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #a0a0a0;
      max-width: 800px;
      margin: 0.5rem auto 0;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        justify-content: center;
      }
    }

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

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

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

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

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

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

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

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

.project-item {

        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: clamp(16px, 3vw, 40px);
    }

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-primary);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        /* Dacă randomNumber este par (2) - primul copil primește order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-primary);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-y) var(--space-x);
  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;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

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

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

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

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

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--space-x) var(--space-y);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

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

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

  .burger {
    display: flex;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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;
    }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #b0b0ff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #ffffff;
    }
    .footer-contacts ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contacts li {
      margin-bottom: 0.3rem;
    }
    .footer-contacts a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      width: 100%;
      margin-top: 1rem;
    }
    .footer-copyright p {
      margin: 0.3rem 0;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #a0a0a0;
      max-width: 800px;
      margin: 0.5rem auto 0;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        justify-content: center;
      }
    }

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

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

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

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

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

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

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

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

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        /* Dacă randomNumber este 1 (impar) - primul copil primește order: 2 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

.team-orbit {

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

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

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

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

    }

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

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

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

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

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

        transform: translateY(30px);
    }

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

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

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

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

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

    }

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

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-y) var(--space-x);
  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;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

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

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

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

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

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--space-x) var(--space-y);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

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

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

  .burger {
    display: flex;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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;
    }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #b0b0ff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #ffffff;
    }
    .footer-contacts ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contacts li {
      margin-bottom: 0.3rem;
    }
    .footer-contacts a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      width: 100%;
      margin-top: 1rem;
    }
    .footer-copyright p {
      margin: 0.3rem 0;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #a0a0a0;
      max-width: 800px;
      margin: 0.5rem auto 0;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        justify-content: center;
      }
    }

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

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

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

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

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

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

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

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

.project-item {

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

    .project-item .project-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .project-item .project-item__header {
        text-align: center;
        margin-bottom: var(--space-y);
        color: var(--fg-on-page);
    }

    .project-item h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 1rem;
    }

    .project-item .project-item__subtitle {
        font-size: clamp(16px, 2.4vw, 20px);

    }

    .project-item .project-item__gallery {
        display: grid;
        gap: 1rem;
        margin-bottom: var(--space-y);
    }

    @media (min-width: 768px) {
        .project-item .project-item__gallery {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        /* Dacă randomNumber este 1 (impar) - primul copil rămâne la order: 0 */
        .project-item .project-item__gallery > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

    .project-item .project-item__image img {
        width: 100%;
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: clamp(24px, 3vw, 40px);
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: var(--space-y);
    }

    .project-item h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .project-item .project-item__description,
    .project-item .project-item__results {
        line-height: 1.8;

    }

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-y) var(--space-x);
  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;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

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

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

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

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

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--space-x) var(--space-y);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

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

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

  .burger {
    display: flex;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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;
    }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #b0b0ff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #ffffff;
    }
    .footer-contacts ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contacts li {
      margin-bottom: 0.3rem;
    }
    .footer-contacts a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      width: 100%;
      margin-top: 1rem;
    }
    .footer-copyright p {
      margin: 0.3rem 0;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #a0a0a0;
      max-width: 800px;
      margin: 0.5rem auto 0;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        justify-content: center;
      }
    }

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

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

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

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

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

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

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

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

.story-column-l4 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .story-column-l4__copy p:first-child {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

    .story-column-l4__copy h2 {
        margin: .55rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-column-l4__copy strong {
        display: block;
        margin-top: .8rem;
    }

    .story-column-l4__copy p {
        color: var(--neutral-600);
    }

    .story-column-l4__stats {
        display: grid;
        gap: .75rem;
    }

    .story-column-l4__stats div {
        padding: .9rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-column-l4__stats span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 820px) {
        .story-column-l4__wrap {
            grid-template-columns: 1fr;
        }
    }

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

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

    .faq-fresh-v5 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.1vw, 2.4rem);
    }

    .faq-fresh-v5 .stack {
        display: grid;
        gap: .75rem;
    }

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

    .faq-fresh-v5 h3 {
        margin: 0 0 .5rem;
        font-size: 1rem;
    }

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

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

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

    .identity-ux21__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .95fr 1.05fr;
        gap: var(--gap);
        align-items: start;
    }

    .identity-ux21__media img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        display: block;
        background: var(--neutral-100);
    }

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

    .identity-ux21__body h2 {
        margin: 7px 0;
        font-size: clamp(28px, 4vw, 42px);
        color: var(--neutral-900);
    }

    .identity-ux21__body h3 {
        margin: 0 0 10px;
        font-size: 1rem;
        color: var(--brand);
    }

    .identity-ux21__body span {
        display: block;
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .identity-ux21__body ul {
        margin: 0;
        padding-left: 18px;
        display: grid;
        gap: 6px;
        color: var(--neutral-800);
    }

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

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-y) var(--space-x);
  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;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

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

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

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

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

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--space-x) var(--space-y);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

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

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

  .burger {
    display: flex;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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;
    }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #b0b0ff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #ffffff;
    }
    .footer-contacts ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contacts li {
      margin-bottom: 0.3rem;
    }
    .footer-contacts a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      width: 100%;
      margin-top: 1rem;
    }
    .footer-copyright p {
      margin: 0.3rem 0;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #a0a0a0;
      max-width: 800px;
      margin: 0.5rem auto 0;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        justify-content: center;
      }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .map-shell-c4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .map-shell-c4__band {
        margin-bottom: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: end;
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .map-shell-c4__band p {
        margin: 0;
        color: rgba(255, 255, 255, .82);
    }

    .map-shell-c4__shell {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 1rem;
    }

    .map-shell-c4__shell iframe {
        display: block;
        width: 100%;
        min-height: 24rem;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards {
        display: grid;
        gap: .75rem;
    }

    .map-shell-c4__cards article {
        padding: .95rem;
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .map-shell-c4__cards p {
        margin: .35rem 0 0;
        color: rgba(255, 255, 255, .84);
    }

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

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

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

    .contacts-fresh-v2 h2 {
        margin: 0;
        font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    }

    .contacts-fresh-v2 .subtitle {
        margin: 0;
        color: var(--fg-on-surface-light);
    }

    .contacts-fresh-v2 .list {
        display: grid;
        gap: .75rem;
    }

    .contacts-fresh-v2 article {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: var(--gap);
        padding: 1rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
    }

    .contacts-fresh-v2 .label {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: .9rem;
    }

    .contacts-fresh-v2 .value {
        margin: .2rem 0 0;
        font-weight: 700;
    }

    .contacts-fresh-v2 a {
        padding: .5rem .8rem;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    @media (max-width: 700px) {
        .contacts-fresh-v2 article {
            flex-direction: column;
            align-items: flex-start;
        }
    }

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

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

    .connect .connect__title {
        font-size: clamp(28px, 5vw, 48px);
        text-align: center;
        margin: 0 0 clamp(48px, 7vw, 72px);
    }

    .connect .connect__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: clamp(24px, 4vw, 32px);
    }

    .connect .connect__item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--gap);
        padding: var(--space-x);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface);
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s, border-color 0.3s;
    }

    .connect .connect__item {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        animation: section-pulse-border 3s var(--anim-ease) infinite;
    }

    @keyframes section-pulse-border {
        0%, 100% {
            border-color: var(--border-on-surface);
            box-shadow: none;
        }
        50% {
            border-color: var(--brand);
            box-shadow: 0 0 0 3px var(--accent);
        }
    }

    .connect .connect__item:hover {
        transform: translateY(-6px);
        border-color: var(--bg-accent);
    }

    .connect .connect__item span {
        font-size: clamp(17px, 2.8vw, 20px);
        font-weight: 600;
    }

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-y) var(--space-x);
  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;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

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

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

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

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

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--space-x) var(--space-y);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

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

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

  .burger {
    display: flex;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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;
    }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #b0b0ff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #ffffff;
    }
    .footer-contacts ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contacts li {
      margin-bottom: 0.3rem;
    }
    .footer-contacts a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      width: 100%;
      margin-top: 1rem;
    }
    .footer-copyright p {
      margin: 0.3rem 0;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #a0a0a0;
      max-width: 800px;
      margin: 0.5rem auto 0;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        justify-content: center;
      }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-y) var(--space-x);
  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;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

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

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

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

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

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--space-x) var(--space-y);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

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

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

  .burger {
    display: flex;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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;
    }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #b0b0ff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #ffffff;
    }
    .footer-contacts ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contacts li {
      margin-bottom: 0.3rem;
    }
    .footer-contacts a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      width: 100%;
      margin-top: 1rem;
    }
    .footer-copyright p {
      margin: 0.3rem 0;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #a0a0a0;
      max-width: 800px;
      margin: 0.5rem auto 0;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        justify-content: center;
      }
    }

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

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

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

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

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

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

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

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

.policy-layout-e {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

    .policy-layout-e .columns {
        columns: 2 260px;
        column-gap: 14px;
    }

    .policy-layout-e article {
        break-inside: avoid;
        margin-bottom: 12px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, .22);
        padding: 12px;
        background: rgba(255, 255, 255, .05);
    }

    .policy-layout-e h3 {
        margin: 0;
    }

    .policy-layout-e .meta {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

    .policy-layout-e article p:last-child {
        margin: 7px 0 0;
        color: var(--neutral-100);
    }

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-y) var(--space-x);
  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;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

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

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

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

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

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--space-x) var(--space-y);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

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

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

  .burger {
    display: flex;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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;
    }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #b0b0ff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #ffffff;
    }
    .footer-contacts ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contacts li {
      margin-bottom: 0.3rem;
    }
    .footer-contacts a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      width: 100%;
      margin-top: 1rem;
    }
    .footer-copyright p {
      margin: 0.3rem 0;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #a0a0a0;
      max-width: 800px;
      margin: 0.5rem auto 0;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        justify-content: center;
      }
    }

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

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

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

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

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

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

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

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

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

    .nfthank-v9__panel {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border: 1px solid rgba(255, 255, 255, .24);
        border-radius: var(--radius-lg);
        padding: clamp(30px, 4vw, 44px);
        background: rgba(255, 255, 255, .06);
    }

    .nfthank-v9 h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
    }

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

    .nfthank-v9 a {
        display: inline-block;
        margin-top: 17px;
        color: var(--accent-contrast);
        text-decoration: none;
        border-bottom: 2px solid var(--accent-contrast);
        padding-bottom: 2px;
    }

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

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-y) var(--space-x);
  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;
  white-space: nowrap;
  transition: color var(--anim-duration) var(--anim-ease);
}

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

.nav-left,
.nav-right {
  display: flex;
  gap: var(--gap);
}

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

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

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

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

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

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

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

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

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 var(--space-x) var(--space-y);
  max-width: var(--max-w);
  margin: 0 auto;
}

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

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

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

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

  .burger {
    display: flex;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
  }

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

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

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;
    }
    .footer-brand .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
    }
    .footer-nav ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #b0b0ff;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #ffffff;
    }
    .footer-contacts ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-contacts li {
      margin-bottom: 0.3rem;
    }
    .footer-contacts a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-contacts a:hover {
      text-decoration: underline;
    }
    .footer-links {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: #b0b0ff;
      text-decoration: none;
    }
    .footer-links a:hover {
      text-decoration: underline;
    }
    .footer-copyright {
      text-align: center;
      width: 100%;
      margin-top: 1rem;
    }
    .footer-copyright p {
      margin: 0.3rem 0;
    }
    .disclaimer {
      font-size: 0.85rem;
      color: #a0a0a0;
      max-width: 800px;
      margin: 0.5rem auto 0;
    }
    @media (max-width: 768px) {
      .footer-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      .footer-nav ul {
        justify-content: center;
      }
      .footer-links {
        justify-content: center;
      }
    }

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

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

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

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

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

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

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

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

.err-slab-a {
    padding: clamp(56px, 10vw, 110px) 20px;
    background: var(--gradient-hero);
    color: var(--fg-on-primary);
}

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

.err-slab-a h1 {
    margin: 0;
    font-size: clamp(34px, 6vw, 58px);
}

.err-slab-a p {
    margin: 12px 0 0;
    opacity: .92;
}

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