:root {
  --font-family: "Roboto", sans-serif;
  --font-size-base: 16.8px;
  --line-height-base: 1.8;

  --max-w: 1540px;
  --space-x: 2.27rem;
  --space-y: 1.5rem;
  --gap: 1.56rem;

  --radius-xl: 1.17rem;
  --radius-lg: 1rem;
  --radius-md: 0.55rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.16);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.21);
  --shadow-lg: 0 18px 52px rgba(0,0,0,0.25);

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

  --brand: #0f766e;
  --brand-contrast: #ffffff;
  --accent: #059669;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f3f4f6;
  --neutral-300: #d1d5db;
  --neutral-600: #6b7280;
  --neutral-800: #1f2937;
  --neutral-900: #111827;

  --bg-page: #f9fafb;
  --fg-on-page: #111827;

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

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

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

  --bg-primary: #0d9488;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0f766e;
  --ring: #0d9488;

  --bg-accent: #d1fae5;
  --fg-on-accent: #022c22;
  --bg-accent-hover: #047857;

  --link: #0d9488;
  --link-hover: #0f766e;

  --gradient-hero: linear-gradient(135deg, #0d9488 0%, #064e3b 100%);
  --gradient-accent: linear-gradient(135deg, #059669 0%, #047857 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;
  width: 100%;
}

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

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

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.nav-list a {
  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);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}

.nav-list a:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  z-index: 101;
}

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

.burger-line {
  display: block;
  width: 1.5rem;
  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-line + .burger-line {
  margin-top: 5px;
}

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

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

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--overlay);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    color: var(--fg-on-surface);
    display: inline-block;
    min-width: 200px;
  }

  .nav-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #333;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #ffc107;
    }
    .footer-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .contact-item {
      display: block;
    }
    .contact-item a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-legal {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-disclaimer {
      flex: 1 1 300px;
      font-size: 0.85rem;
      color: #b0b0b0;
      border-left: 2px solid #f0a500;
      padding-left: 1rem;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex: 1 1 100%;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.85rem;
      color: #888;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-disclaimer {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 0.5rem;
      }
      .footer-copyright {
        text-align: left;
      }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.hero-arc-v2 {
        padding: calc(var(--space-y) * 2.6) var(--space-x) 0;
        background: var(--bg-page);
        color: var(--fg-on-page);
    }

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

    .hero-arc-v2 h1 {
        margin: 0;
        font-size: clamp(2rem, 4.2vw, 3.4rem);
        line-height: 1.08;
        max-width: 18ch;
    }

    .hero-arc-v2 .subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .hero-arc-v2 .split {
        display: grid;
        grid-template-columns:1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .hero-arc-v2 .desc {
        margin: 0;
        max-width: 60ch;
    }

    .hero-arc-v2 .actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

    .hero-arc-v2 .actions a {
        display: inline-flex;
        padding: .66rem 1.1rem;
        border-radius: var(--radius-lg);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
    }

    .hero-arc-v2 .actions a:nth-child(even) {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

    .hero-arc-v2 .media img {
        width: 100%;
        display: block;
        border-radius: var(--radius-lg);
        aspect-ratio: 16/9;
        object-fit: cover;
    }

    .hero-arc-v2 .rail {
        margin-top: calc(var(--space-y) * 1.4);
        background: var(--surface-2);
        border-top: 1px solid var(--border-on-surface);
        display: grid;
        grid-template-columns:repeat(4, minmax(0, 1fr));
        gap: 1px;
    }

    .hero-arc-v2 .rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

    .hero-arc-v2 em {
        font-style: normal;
        color: var(--fg-on-surface-light);
        font-size: .88rem;
    }

    .hero-arc-v2 strong {
        font-size: 1.05rem;
    }

    @media (max-width: 900px) {
        .hero-arc-v2 .split {
            grid-template-columns:1fr;
        }

        .hero-arc-v2 .rail {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

.next-ux16 {
        padding: clamp(3.6rem, 8vw, 6.1rem) var(--space-x);
        background: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .16), transparent 28%), var(--gradient-hero);
        color: var(--fg-on-primary);
        text-align: center;
    }

    .next-ux16__wrap {
        max-width: 54rem;
        margin: 0 auto;
    }

    .next-ux16__wrap p:first-child {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

    .next-ux16__wrap h2 {
        margin: .55rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

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

    .next-ux16__row a {
        display: inline-flex;
        padding: .8rem 1rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, .12);
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .18);
        text-decoration: none;
        animation: next_pulse_c3 2.4s ease-in-out infinite;
    }

    .next-ux16__row a:nth-child(2n) {
        animation-delay: .35s;
    }

    @keyframes next_pulse_c3 {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-3px);
        }
    }

    .next-ux16__copy {
        margin-top: 1rem;

    }

    .next-ux16__cta {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.9rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        text-decoration: none;
    }

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

    .faq-layout-b .wrap {
        max-width: 940px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-b .grid {
        display: grid;
        gap: var(--gap);
    }

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

    .faq-layout-b summary {
        cursor: pointer;
        font-weight: 600;
        color: var(--brand);
    }

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

.clar-ux7{padding:clamp(20px,3vw,44px);background:var(--gradient-hero);color:var(--fg-on-primary)}.clar-ux7__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux7__head p{margin:0;color:rgba(255,255,255,.86)}.clar-ux7__head h2{margin:8px 0 12px}.clar-ux7__rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(240px,1fr);gap:10px;overflow:auto;padding-bottom:4px}.clar-ux7__rail article{border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.12);padding:12px}.clar-ux7__rail h3{margin:0 0 6px}.clar-ux7__rail p{margin:0}.clar-ux7__rail span{display:inline-flex;margin-top:8px;font-size:.84rem;opacity:.9}

.profile {

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

    .profile .profile__c {
        max-width: 800px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__content {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        border: 2px solid var(--bg-primary);
    }

    .profile .profile__upload-btn input {
        display: none;
    }

    .profile .profile__upload-btn:hover {
        background: var(--bg-primary-hover);
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 24px);
    }

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

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__form-group input[type="checkbox"] {
        margin-right: 0.5rem;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .profile .profile__submit {
        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);
        }
    }

    .profile .profile__submit:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

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;
  width: 100%;
}

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

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

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.nav-list a {
  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);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}

.nav-list a:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  z-index: 101;
}

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

.burger-line {
  display: block;
  width: 1.5rem;
  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-line + .burger-line {
  margin-top: 5px;
}

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

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

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--overlay);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    color: var(--fg-on-surface);
    display: inline-block;
    min-width: 200px;
  }

  .nav-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #333;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #ffc107;
    }
    .footer-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .contact-item {
      display: block;
    }
    .contact-item a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-legal {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-disclaimer {
      flex: 1 1 300px;
      font-size: 0.85rem;
      color: #b0b0b0;
      border-left: 2px solid #f0a500;
      padding-left: 1rem;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex: 1 1 100%;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.85rem;
      color: #888;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-disclaimer {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 0.5rem;
      }
      .footer-copyright {
        text-align: left;
      }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.profile {

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

    .profile .profile__c {
        max-width: 800px;
        margin: 0 auto;
    }

    .profile .profile__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 48px);
    }

    .profile h1 {
        font-size: clamp(32px, 6vw, 56px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .profile .profile__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
    }

    .profile .profile__content {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__avatar-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .profile .profile__avatar {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2.5rem;
        font-weight: 700;
        border: 4px solid var(--ring);
        box-shadow: var(--shadow-md);
    }

    .profile .profile__upload-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        border: 2px solid var(--bg-primary);
    }

    .profile .profile__upload-btn input {
        display: none;
    }

    .profile .profile__upload-btn:hover {
        background: var(--bg-primary-hover);
    }

    .profile .profile__form {
        display: flex;
        flex-direction: column;
        gap: clamp(20px, 3vw, 24px);
    }

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

    .profile .profile__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .profile .profile__form-group label {
        font-weight: 600;
        color: var(--fg-on-page);
        font-size: 0.875rem;
    }

    .profile .profile__form-group input,
    .profile .profile__form-group textarea {
        padding: 0.875rem 1.25rem;
        border-radius: var(--radius-md);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);

        font-size: 1rem;
        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .profile .profile__form-group input::placeholder,
    .profile .profile__form-group textarea::placeholder {
        color: var(--neutral-600);
    }

    .profile .profile__form-group input:focus,
    .profile .profile__form-group textarea:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .profile .profile__form-group input[type="checkbox"] {
        margin-right: 0.5rem;
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .profile .profile__submit {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
        box-shadow: var(--shadow-md);
    }

    .profile .profile__submit {
        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);
        }
    }

    .profile .profile__submit:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.support-ux7 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .support-ux7__wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

    .support-ux7__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

    .support-ux7__list {
        display: grid;
        gap: 10px;
    }

    .support-ux7__item {
        border: 1px solid rgba(255, 255, 255, 0.32);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, 0.12);
        overflow: hidden;
    }

    .support-ux7__item button {
        width: 100%;
        border: 0;
        background: transparent;
        color: inherit;
        text-align: left;
        font: inherit;
        font-weight: 700;
        padding: 11px 12px;
        cursor: pointer;
    }

    .support-ux7__item p {
        margin: 0;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        transition: max-height var(--anim-duration) var(--anim-ease), padding var(--anim-duration) var(--anim-ease);
        opacity: .95;
    }

    .support-ux7__item.is-open p {
        max-height: 220px;
        padding: 0 12px 12px;
    }

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;
  width: 100%;
}

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

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

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.nav-list a {
  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);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}

.nav-list a:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  z-index: 101;
}

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

.burger-line {
  display: block;
  width: 1.5rem;
  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-line + .burger-line {
  margin-top: 5px;
}

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

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

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--overlay);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    color: var(--fg-on-surface);
    display: inline-block;
    min-width: 200px;
  }

  .nav-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #333;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #ffc107;
    }
    .footer-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .contact-item {
      display: block;
    }
    .contact-item a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-legal {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-disclaimer {
      flex: 1 1 300px;
      font-size: 0.85rem;
      color: #b0b0b0;
      border-left: 2px solid #f0a500;
      padding-left: 1rem;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex: 1 1 100%;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.85rem;
      color: #888;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-disclaimer {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 0.5rem;
      }
      .footer-copyright {
        text-align: left;
      }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.settings--colored-v5 {

    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

.settings__header h2 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

.settings__header p {
    margin: 0 0 16px;
    color: var(--neutral-300);
    font-size: 0.95rem;
}

.settings__panel {
    border-radius: var(--radius-xl);
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
    padding: 10px 12px;
    display: grid;
    gap: 8px;
}

.settings__row {
    display: grid;
    grid-template-columns: minmax(0,1.6fr) auto;
    gap: 12px;
    align-items: center;
    padding: 6px 4px;
    border-bottom: 1px solid rgba(55,65,81,0.8);
}

.settings__row:last-child {
    border-bottom: none;
}

.settings__info h3 {
    margin: 0 0 2px;
    font-size: 0.95rem;
}

.settings__info p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.settings__toggle {
    min-width: 110px;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: 0.8rem;
    text-align: center;
    background: rgba(17,24,39,0.96);
    color: var(--neutral-200);
    border: 1px solid rgba(75,85,99,0.8);
}

.settings__toggle--on {
    background: var(--accent);
    color: var(--fg-on-accent);
    border-color: transparent;
}

.settings__toggle--off {
    background: var(--accent);
    color: var(--fg-on-accent);
    border-color: transparent;
}

.clar-ux7{padding:clamp(20px,3vw,44px);background:var(--gradient-hero);color:var(--fg-on-primary)}.clar-ux7__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux7__head p{margin:0;color:rgba(255,255,255,.86)}.clar-ux7__head h2{margin:8px 0 12px}.clar-ux7__rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(240px,1fr);gap:10px;overflow:auto;padding-bottom:4px}.clar-ux7__rail article{border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.12);padding:12px}.clar-ux7__rail h3{margin:0 0 6px}.clar-ux7__rail p{margin:0}.clar-ux7__rail span{display:inline-flex;margin-top:8px;font-size:.84rem;opacity:.9}

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

    .security h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

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;
  width: 100%;
}

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

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

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.nav-list a {
  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);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}

.nav-list a:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  z-index: 101;
}

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

.burger-line {
  display: block;
  width: 1.5rem;
  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-line + .burger-line {
  margin-top: 5px;
}

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

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

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--overlay);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    color: var(--fg-on-surface);
    display: inline-block;
    min-width: 200px;
  }

  .nav-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #333;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #ffc107;
    }
    .footer-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .contact-item {
      display: block;
    }
    .contact-item a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-legal {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-disclaimer {
      flex: 1 1 300px;
      font-size: 0.85rem;
      color: #b0b0b0;
      border-left: 2px solid #f0a500;
      padding-left: 1rem;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex: 1 1 100%;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.85rem;
      color: #888;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-disclaimer {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 0.5rem;
      }
      .footer-copyright {
        text-align: left;
      }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.activity {

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

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

    .activity .activity__h {
        margin-bottom: var(--space-y);
    }

    .activity h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0;
        color: var(--fg-on-page);
    }

    .activity .activity__timeline {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__timeline::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--ring);
    }

    .activity .activity__item {
        position: relative;
        padding-left: 2rem;
    }

    .activity .activity__item::before {
        content: '';
        position: absolute;
        left: -1.625rem;
        top: 0.5rem;
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--bg-primary);
        border: 2px solid var(--bg-page);
    }

    .activity .activity__date {
        color: var(--neutral-600);
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }

    .activity .activity__content {
        background: var(--surface-light);
        padding: clamp(16px, 2vw, 24px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .activity h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.2vw, 20px);
        color: var(--fg-on-page);
    }

    .activity 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;}
.timeline-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .timeline-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .timeline-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .timeline-u1 .sub{margin:.35rem 0 0;opacity:.9;} .timeline-u1 article,.timeline-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .timeline-u1 p{margin:0} .timeline-u1 a{text-decoration:none;color:inherit;font-weight:700} .timeline-u1 .hero{padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} .timeline-u1 .stack{display:grid;gap:.45rem;margin-top:.7rem} .timeline-u1 .stack p{padding:.65rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover)} @media (max-width:860px){.timeline-u1 .split,.timeline-u1 .media,.timeline-u1 .grid,.timeline-u1 .cards,.timeline-u1 .bento,.timeline-u1 .foot{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;
  width: 100%;
}

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

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

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.nav-list a {
  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);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}

.nav-list a:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  z-index: 101;
}

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

.burger-line {
  display: block;
  width: 1.5rem;
  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-line + .burger-line {
  margin-top: 5px;
}

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

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

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--overlay);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    color: var(--fg-on-surface);
    display: inline-block;
    min-width: 200px;
  }

  .nav-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #333;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #ffc107;
    }
    .footer-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .contact-item {
      display: block;
    }
    .contact-item a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-legal {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-disclaimer {
      flex: 1 1 300px;
      font-size: 0.85rem;
      color: #b0b0b0;
      border-left: 2px solid #f0a500;
      padding-left: 1rem;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex: 1 1 100%;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.85rem;
      color: #888;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-disclaimer {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 0.5rem;
      }
      .footer-copyright {
        text-align: left;
      }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

.security {

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

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

    .security .security__h {
        margin-bottom: var(--space-y);
    }

    .security h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__sections {
        display: flex;
        flex-direction: column;
        gap: var(--space-y);
    }

    .security .security__section {
        background: var(--surface-light);
        padding: clamp(24px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
        box-shadow: var(--shadow-sm);
    }

    .security h2 {
        font-size: clamp(20px, 3vw, 24px);
        margin: 0 0 1.5rem;
        color: var(--fg-on-primary);
    }

    .security .security__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__form input {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__form input:focus {
        border-color: var(--bg-primary);
        box-shadow: 0 0 0 3px var(--ring);
    }

    .security .security__form button {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        align-self: flex-start;
    }

    .security .security__form button:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .security .security__sessions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .security .security__session {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem;
        background: var(--gradient-hero);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

    .security h4 {
        margin: 0 0 0.25rem;
        color: var(--fg-on-primary);
    }

    .security .security__session p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.875rem;
    }

    .security .security__logout {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .security .security__logout:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary) fff;
        border-color: var(--bg-primary);
    }

.clar-ux7{padding:clamp(20px,3vw,44px);background:var(--gradient-hero);color:var(--fg-on-primary)}.clar-ux7__wrap{max-width:var(--max-w);margin:0 auto}.clar-ux7__head p{margin:0;color:rgba(255,255,255,.86)}.clar-ux7__head h2{margin:8px 0 12px}.clar-ux7__rail{display:grid;grid-auto-flow:column;grid-auto-columns:minmax(240px,1fr);gap:10px;overflow:auto;padding-bottom:4px}.clar-ux7__rail article{border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.12);padding:12px}.clar-ux7__rail h3{margin:0 0 6px}.clar-ux7__rail p{margin:0}.clar-ux7__rail span{display:inline-flex;margin-top:8px;font-size:.84rem;opacity:.9}

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;
  width: 100%;
}

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

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

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.nav-list a {
  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);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}

.nav-list a:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  z-index: 101;
}

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

.burger-line {
  display: block;
  width: 1.5rem;
  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-line + .burger-line {
  margin-top: 5px;
}

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

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

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--overlay);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    color: var(--fg-on-surface);
    display: inline-block;
    min-width: 200px;
  }

  .nav-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #333;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #ffc107;
    }
    .footer-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .contact-item {
      display: block;
    }
    .contact-item a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-legal {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-disclaimer {
      flex: 1 1 300px;
      font-size: 0.85rem;
      color: #b0b0b0;
      border-left: 2px solid #f0a500;
      padding-left: 1rem;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex: 1 1 100%;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.85rem;
      color: #888;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-disclaimer {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 0.5rem;
      }
      .footer-copyright {
        text-align: left;
      }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.contacts-u9{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-primary);color:var(--fg-on-primary)} .contacts-u9 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u9 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u9 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u9 article,.contacts-u9 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u9 p{margin:0} .contacts-u9 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u9 .media{display:grid;grid-template-columns:.95fr 1.05fr;gap:var(--gap)} .contacts-u9 .media img{width:100%;height:100%;min-height:280px;object-fit:cover;border-radius:var(--radius-xl)} .contacts-u9 .grid{display:grid;gap:.5rem;margin-top:.55rem} .contacts-u9 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .contacts-u9 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.contacts-u9 .split,.contacts-u9 .media,.contacts-u9 .grid,.contacts-u9 .cards,.contacts-u9 .bento,.contacts-u9 .foot{grid-template-columns:1fr}}

body{margin:0;padding:0;font-family:var(--font-family);font-size:var(--font-size-base);line-height:var(--line-height-base);box-sizing:border-box;background:var(--bg-page);color:var(--fg-on-page)}
*{box-sizing:border-box;}
.frm-lx8{padding:calc(var(--space-y)*3) var(--space-x);background:var(--bg-alt)}
.frm-lx8 .frm-shell{max-width:var(--max-w);margin:0 auto}
.frm-lx8 h2{margin:0 0 .9rem;font-size:clamp(1.8rem,3.4vw,2.6rem)}
.frm-lx8 .frm-sheet{padding:1rem;border:1px solid var(--border-on-surface);border-radius:var(--radius-xl);background:var(--surface-1);display:grid;gap:.75rem}
.frm-lx8 .frm-inline{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.6rem}
.frm-lx8 label{display:grid;gap:.24rem}
.frm-lx8 span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx8 input,.frm-lx8 textarea{width:100%;padding:.74rem;border:1px solid var(--border-on-surface-light);border-radius:var(--radius-md);font:inherit;background:var(--surface-1);color:var(--fg-on-surface)}
.frm-lx8 input:focus,.frm-lx8 textarea:focus{outline:2px solid color-mix(in srgb,var(--ring) 32%, transparent);outline-offset:1px}
.frm-lx8 textarea{min-height:120px;resize:vertical}
.frm-lx8 .frm-actions{display:flex;justify-content:space-between;gap:.8rem;align-items:center}
.frm-lx8 .frm-actions p{margin:0;color:var(--fg-on-surface-light)}
.frm-lx8 button{padding:.78rem 1.2rem;border:0;border-radius:999px;background:var(--bg-primary);color:var(--fg-on-primary);font-weight:700;cursor:pointer}
.frm-lx8 button:hover{background:var(--bg-primary-hover)}
@media (max-width:900px){.frm-lx8 .frm-inline{grid-template-columns:1fr 1fr}}@media (max-width:620px){.frm-lx8 .frm-inline,.frm-lx8 .frm-actions{grid-template-columns:1fr;display:grid}}

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;
  width: 100%;
}

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

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

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.nav-list a {
  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);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}

.nav-list a:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  z-index: 101;
}

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

.burger-line {
  display: block;
  width: 1.5rem;
  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-line + .burger-line {
  margin-top: 5px;
}

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

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

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--overlay);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    color: var(--fg-on-surface);
    display: inline-block;
    min-width: 200px;
  }

  .nav-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #333;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #ffc107;
    }
    .footer-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .contact-item {
      display: block;
    }
    .contact-item a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-legal {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-disclaimer {
      flex: 1 1 300px;
      font-size: 0.85rem;
      color: #b0b0b0;
      border-left: 2px solid #f0a500;
      padding-left: 1rem;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex: 1 1 100%;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.85rem;
      color: #888;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-disclaimer {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 0.5rem;
      }
      .footer-copyright {
        text-align: left;
      }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.policyitems-u7{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-accent);color:var(--brand-contrast)} .policyitems-u7 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .policyitems-u7 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .policyitems-u7 .sub{margin:.35rem 0 0;opacity:.9;} .policyitems-u7 article,.policyitems-u7 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .policyitems-u7 p{margin:0} .policyitems-u7 a{text-decoration:none;color:inherit;font-weight:700} .policyitems-u7 .bento{display:grid;grid-template-columns:repeat(12,minmax(0,1fr));gap:.55rem} .policyitems-u7 .bento article:nth-child(1){grid-column:span 6} .policyitems-u7 .bento article:nth-child(2){grid-column:span 3} .policyitems-u7 .bento article:nth-child(3){grid-column:span 3} .policyitems-u7 .bento article:nth-child(4){grid-column:span 4} .policyitems-u7 .bento article:nth-child(5){grid-column:span 4} .policyitems-u7 .bento article:nth-child(6){grid-column:span 4} .policyitems-u7 article{transition:transform var(--anim-duration) var(--anim-ease),box-shadow var(--anim-duration) var(--anim-ease)} .policyitems-u7 article:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)} @media (max-width:860px){.policyitems-u7 .split,.policyitems-u7 .media,.policyitems-u7 .grid,.policyitems-u7 .cards,.policyitems-u7 .bento,.policyitems-u7 .foot{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;
  width: 100%;
}

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

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

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.nav-list a {
  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);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}

.nav-list a:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  z-index: 101;
}

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

.burger-line {
  display: block;
  width: 1.5rem;
  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-line + .burger-line {
  margin-top: 5px;
}

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

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

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--overlay);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    color: var(--fg-on-surface);
    display: inline-block;
    min-width: 200px;
  }

  .nav-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #333;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #ffc107;
    }
    .footer-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .contact-item {
      display: block;
    }
    .contact-item a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-legal {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-disclaimer {
      flex: 1 1 300px;
      font-size: 0.85rem;
      color: #b0b0b0;
      border-left: 2px solid #f0a500;
      padding-left: 1rem;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex: 1 1 100%;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.85rem;
      color: #888;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-disclaimer {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 0.5rem;
      }
      .footer-copyright {
        text-align: left;
      }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.nav-list a {
  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);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}

.nav-list a:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  z-index: 101;
}

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

.burger-line {
  display: block;
  width: 1.5rem;
  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-line + .burger-line {
  margin-top: 5px;
}

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

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

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--overlay);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    color: var(--fg-on-surface);
    display: inline-block;
    min-width: 200px;
  }

  .nav-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #333;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #ffc107;
    }
    .footer-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .contact-item {
      display: block;
    }
    .contact-item a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-legal {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-disclaimer {
      flex: 1 1 300px;
      font-size: 0.85rem;
      color: #b0b0b0;
      border-left: 2px solid #f0a500;
      padding-left: 1rem;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex: 1 1 100%;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.85rem;
      color: #888;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-disclaimer {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 0.5rem;
      }
      .footer-copyright {
        text-align: left;
      }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing:border-box;}
*{box-sizing:border-box;}
.thank-u1{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--gradient-hero);color:var(--brand-contrast)} .thank-u1 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .thank-u1 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .thank-u1 .sub{margin:.35rem 0 0;opacity:.9;} .thank-u1 article,.thank-u1 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .thank-u1 p{margin:0} .thank-u1 a{text-decoration:none;color:inherit;font-weight:700} .thank-u1 .pulse{margin-top:.8rem;padding:1rem;border-radius:var(--radius-lg);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);animation:thank-u1Pulse 2.8s ease-in-out infinite} @keyframes thank-u1Pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.01)}} @media (max-width:860px){.thank-u1 .split,.thank-u1 .media,.thank-u1 .grid,.thank-u1 .cards,.thank-u1 .bento,.thank-u1 .foot{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;
  width: 100%;
}

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

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

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

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--gap);
  align-items: center;
}

.nav-list a {
  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);
  font-weight: 500;
}

.nav-list a:hover,
.nav-list a:focus-visible {
  background: var(--btn-ghost-bg-hover);
  color: var(--link-hover);
  outline: none;
}

.nav-list a:focus-visible {
  box-shadow: 0 0 0 2px var(--ring);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--anim-duration) var(--anim-ease);
  z-index: 101;
}

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

.burger-line {
  display: block;
  width: 1.5rem;
  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-line + .burger-line {
  margin-top: 5px;
}

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

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

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

@media (max-width: 767px) {
  .burger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--overlay);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--anim-duration) var(--anim-ease), visibility var(--anim-duration) var(--anim-ease);
    z-index: 100;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    flex-direction: column;
    gap: calc(var(--gap) * 1.5);
    text-align: center;
  }

  .nav-list a {
    font-size: calc(var(--font-size-base) * 1.25);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    background: var(--surface-2);
    color: var(--fg-on-surface);
    display: inline-block;
    min-width: 200px;
  }

  .nav-list a:hover {
    background: var(--bg-primary-hover);
    color: var(--fg-on-primary);
  }
}

footer {
      background-color: #1a1a2e;
      color: #e0e0e0;
      padding: 2rem 1rem;
      font-family: Arial, Helvetica, sans-serif;
      line-height: 1.6;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 1.5rem;
      padding-bottom: 1rem;
      border-bottom: 1px solid #333;
    }
    .footer-logo a {
      font-size: 1.5rem;
      font-weight: bold;
      color: #f0a500;
      text-decoration: none;
    }
    .footer-logo a:hover {
      color: #ffc107;
    }
    .footer-nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .footer-nav a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.95rem;
      transition: color 0.3s;
    }
    .footer-nav a:hover {
      color: #f0a500;
    }
    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      gap: 1rem;
    }
    .footer-contacts {
      flex: 1 1 250px;
    }
    .footer-contacts address {
      font-style: normal;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .contact-item {
      display: block;
    }
    .contact-item a {
      color: #e0e0e0;
      text-decoration: none;
    }
    .contact-item a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-legal {
      flex: 1 1 200px;
      display: flex;
      flex-direction: column;
      gap: 0.3rem;
    }
    .footer-legal a {
      color: #e0e0e0;
      text-decoration: none;
      font-size: 0.9rem;
    }
    .footer-legal a:hover {
      color: #f0a500;
      text-decoration: underline;
    }
    .footer-disclaimer {
      flex: 1 1 300px;
      font-size: 0.85rem;
      color: #b0b0b0;
      border-left: 2px solid #f0a500;
      padding-left: 1rem;
    }
    .footer-disclaimer p {
      margin: 0;
    }
    .footer-copyright {
      flex: 1 1 100%;
      text-align: center;
      margin-top: 1rem;
      font-size: 0.85rem;
      color: #888;
    }
    @media (max-width: 768px) {
      .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
      .footer-disclaimer {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #333;
        padding-top: 0.5rem;
      }
      .footer-copyright {
        text-align: left;
      }
    }

.cookie-cv3 {
        position: fixed;
        right: var(--space-x);
        bottom: var(--space-y);
        width: min(420px, calc(100vw - (var(--space-x) * 2)));
        z-index: 1200;
    }

    .cookie-cv3__box {
        border-radius: var(--radius-xl);
        padding: 16px;
        background: var(--gradient-hero);
        color: var(--gradient-accent);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv3__box h3 {
        margin: 0 0 6px;
    }

    .cookie-cv3__box p {
        margin: 0;
        opacity: .92;
    }

    .cookie-cv3__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv3__actions a {
        text-decoration: none;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.16);
        color: inherit;
        border-radius: 999px;
        padding: 7px 11px;
    }

    .cookie-cv3__actions a[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border-color: var(--bg-accent-hover);
    }

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

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

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

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