:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 13.5px;
  --line-height-base: 1.34;

  --max-w: 1040px;
  --space-x: 0.94rem;
  --space-y: 1.05rem;
  --gap: 0.56rem;

  --radius-xl: 0.95rem;
  --radius-lg: 0.47rem;
  --radius-md: 0.34rem;
  --radius-sm: 0.18rem;

  --shadow-sm: 0 0px 4px rgba(0,0,0,0.1);
  --shadow-md: 0 5px 10px rgba(0,0,0,0.13);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.15);

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

  --brand: #1a7f5c;
  --brand-contrast: #ffffff;
  --accent: #f39c12;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #ffffff;
  --fg-on-page: #212529;

  --bg-alt: #f8f9fa;
  --fg-on-alt: #495057;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: rgba(255, 255, 255, 0.95);
  --fg-on-surface-light: #212529;
  --border-on-surface-light: rgba(222, 226, 230, 0.7);

  --bg-primary: #1a7f5c;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #14704f;
  --ring: rgba(26, 127, 92, 0.4);

  --bg-accent: #fef5e7;
  --fg-on-accent: #7d6608;
  --bg-accent-hover: #e67e22;

  --link: #1a7f5c;
  --link-hover: #14704f;

  --gradient-hero: linear-gradient(135deg, #1a7f5c 0%, #2ecc71 100%);
  --gradient-accent: linear-gradient(90deg, #f39c12, #e67e22);

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      border-top: 1px solid var(--border-on-surface);
      z-index: 10;
      box-shadow: var(--shadow-md);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.65rem) rotate(-45deg);
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .footer-links {
        margin-bottom: 0.75rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .footer-disclaimer {
        margin: 0.75rem auto 1rem;
        max-width: 700px;
        font-style: italic;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: left;
        }
        .footer-nav,
        .footer-contacts,
        .footer-legal {
            flex: 1;
            min-width: 250px;
        }
        .footer-brand {
            text-align: left;
        }
        .footer-legal {
            flex-basis: 100%;
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

    }

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

.next-grid-l8 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .next-grid-l8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .next-grid-l8__copy {
        margin-bottom: 1rem;
        text-align: center;
    }

    .next-grid-l8__copy p {
        margin: 0;
        color: var(--neutral-600);
    }

    .next-grid-l8__copy h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .next-grid-l8__copy span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-600);
    }

    .next-grid-l8__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
        gap: var(--gap);
    }

    .next-grid-l8__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-sm);
    }

    .next-grid-l8__grid div {
        display: inline-flex;
        width: 2.4rem;
        height: 2.4rem;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--surface-2);
    }

    .next-grid-l8__grid h3 {
        margin: .75rem 0 .35rem;
    }

    .next-grid-l8__grid a {
        color: var(--link);
        text-decoration: none;
    }

    .next-grid-l8__foot {
        margin-top: 1rem;
        text-align: center;
    }

    .next-grid-l8__foot a {
        display: inline-flex;
        min-height: 2.8rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }

.faq-layout-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .faq-layout-a .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

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

    .faq-layout-a .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

    .faq-layout-a .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
    }

    .faq-layout-a .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
    }

    .faq-layout-a .item.open .a {
        max-height: 240px;
    }

.clarifications-l1 {

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

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

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

    .clarifications-l1__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        letter-spacing: -.02em;
        line-height: 1.1;
        color: var(--fg-on-page);
    }

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

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

    .clarifications-l1__note {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-md);
        padding: 16px;
        position: relative;
        overflow: hidden;
        animation: l1Float 6s var(--anim-ease) infinite;
    }

    .clarifications-l1__note:nth-child(2n) {
        animation-duration: 7.2s
    }

    .clarifications-l1__note:nth-child(3n) {
        animation-duration: 8.2s
    }

    @keyframes l1Float {
        0%, 100% {
            transform: translateY(0px)
        }
        50% {
            transform: translateY(-6px)
        }
    }

    .clarifications-l1__note::before {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(240px 120px at 20% 10%, rgba(0, 86, 179, 0.12), transparent 60%),
        radial-gradient(220px 140px at 85% 30%, rgba(255, 107, 53, 0.12), transparent 62%);
        pointer-events: none;
    }

    .clarifications-l1__cap {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
        position: relative;
        z-index: 1;
    }

    .clarifications-l1__badge {
        display: inline-flex;
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 800;
        font-size: 0.9rem;
    }

    .clarifications-l1__spark {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--bg-primary);
        box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0);
        animation: l1Pulse 2.4s ease-in-out infinite;
    }

    @keyframes l1Pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(0, 86, 179, 0.0)
        }
        50% {
            transform: scale(1.15);
            box-shadow: 0 0 0 10px rgba(0, 86, 179, 0.12)
        }
    }

    .clarifications-l1__q {
        margin: 0 0 8px;
        position: relative;
        z-index: 1;
        font-size: 1.05rem;
        letter-spacing: -.01em;
    }

    .clarifications-l1__a {
        margin: 0;
        position: relative;
        z-index: 1;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    .clarifications-l1__note:hover {
        transform: translateY(-10px) rotate(-0.2deg);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

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

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

    @media (prefers-reduced-motion: reduce) {
        .clarifications-l1__note, .clarifications-l1__spark {
            animation: none;
        }
    }

.values-cloud-c5 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
    }

    .values-cloud-c5__wrap {
        max-width: 62rem;
        margin: 0 auto;
    }

    .values-cloud-c5__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .values-cloud-c5__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
    }

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

    .values-cloud-c5__cloud {
        display: flex;
        gap: .8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .values-cloud-c5__cloud article {
        width: min(16rem, 100%);
        padding: 1rem;
        border-radius: 1.5rem;
        background: rgba(255, 255, 255, .14);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-cloud-c5__cloud p {
        margin: .45rem 0 0;

    }

    .values-cloud-c5__cloud span {
        display: block;
        margin-top: .55rem;
        color: rgba(255, 255, 255, .76);
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      border-top: 1px solid var(--border-on-surface);
      z-index: 10;
      box-shadow: var(--shadow-md);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.65rem) rotate(-45deg);
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .footer-links {
        margin-bottom: 0.75rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .footer-disclaimer {
        margin: 0.75rem auto 1rem;
        max-width: 700px;
        font-style: italic;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: left;
        }
        .footer-nav,
        .footer-contacts,
        .footer-legal {
            flex: 1;
            min-width: 250px;
        }
        .footer-brand {
            text-align: left;
        }
        .footer-legal {
            flex-basis: 100%;
            margin-top: 1rem;
        }
    }

.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-cv5 {
        padding: clamp(54px, 7vw, 94px) clamp(16px, 4vw, 36px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

    .support-cv5__head p {
        margin: 0;
        font-weight: 700;
        opacity: .9;
    }

    .support-cv5__head h2 {
        margin: 7px 0 0;
        font-size: clamp(30px, 5vw, 46px);
    }

    .support-cv5__grid {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    }

    .support-cv5__grid article {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.32);
        color: var(--fg-on-page);
        padding: 13px;
        box-shadow: var(--shadow-sm);
    }

    .support-cv5__grid span {
        font-size: .82rem;
        color: var(--brand);
    }

    .support-cv5__grid h3 {
        margin: var(--space-x) 0;
    }

    .support-cv5__grid p {
        margin: 0;
        color: var(--neutral-700, var(--neutral-600));
    }
    .support-cv5__grid a {
        color: var(--link);
        text-decoration: underline;
    }
    .support-cv5__grid a:hover {
        color: var(--link-hover);
    }

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

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

.gallery__title {
    margin: 0 0 12px;
    font-size: clamp(22px,3.5vw,28px);
}

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      border-top: 1px solid var(--border-on-surface);
      z-index: 10;
      box-shadow: var(--shadow-md);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.65rem) rotate(-45deg);
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .footer-links {
        margin-bottom: 0.75rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .footer-disclaimer {
        margin: 0.75rem auto 1rem;
        max-width: 700px;
        font-style: italic;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: left;
        }
        .footer-nav,
        .footer-contacts,
        .footer-legal {
            flex: 1;
            min-width: 250px;
        }
        .footer-brand {
            text-align: left;
        }
        .footer-legal {
            flex-basis: 100%;
            margin-top: 1rem;
        }
    }

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

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

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

    .settings .settings__h {
        text-align: center;
        margin-bottom: clamp(40px, 6vw, 64px);
    }

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

    .settings .settings__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        opacity: 0.9;
        margin: 0;
    }

    .settings .settings__layout {
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: clamp(32px, 5vw, 48px);
        align-items: start;
    }

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

    @media (max-width: 1023px) {
        .settings .settings__layout {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__sidebar {
        position: sticky;
        top: 20px;
    }

    .settings .settings__nav {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-lg);
        padding: clamp(16px, 2.5vw, 24px);
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .settings .settings__nav-link {
        padding: 0.875rem 1rem;
        border-radius: var(--radius-md);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        gap: 0.75rem;
        font-weight: 500;
    }

    .settings .settings__nav-link:hover {
        background: rgba(255, 255, 255, 0.2);
    }

    .settings .settings__nav-link.active {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

    .settings .settings__nav-icon {
        font-size: 1.25rem;
        width: 24px;
        text-align: center;
    }

    .settings .settings__main {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: var(--radius-xl);
        padding: clamp(32px, 4vw, 48px);
    }

    .settings .settings__panel {
        display: none;
    }

    .settings .settings__panel.active {
        display: block;
    }

    .settings .settings__panel

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

.timeline__inner {
    max-width: 640px;
    margin: 0 auto;
}

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

.timeline__list--light {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.timeline__row {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 10px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.timeline__row:first-child {
    border-top: none;
}

.timeline__row-time {
    font-size: 0.8rem;
    color: var(--neutral-600);
}

.timeline__row-label {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      border-top: 1px solid var(--border-on-surface);
      z-index: 10;
      box-shadow: var(--shadow-md);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.65rem) rotate(-45deg);
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .footer-links {
        margin-bottom: 0.75rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .footer-disclaimer {
        margin: 0.75rem auto 1rem;
        max-width: 700px;
        font-style: italic;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: left;
        }
        .footer-nav,
        .footer-contacts,
        .footer-legal {
            flex: 1;
            min-width: 250px;
        }
        .footer-brand {
            text-align: left;
        }
        .footer-legal {
            flex-basis: 100%;
            margin-top: 1rem;
        }
    }

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

.statistics {
    padding: clamp(48px, 8vw, 80px) 0;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
}

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

.statistics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--gap);
    text-align: center;
}

.statistics__card {
    padding: clamp(16px, 3vw, 32px);
}

.statistics__number {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.statistics__label {
    font-size: 1.1rem;
    font-weight: 400;
}

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

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

    .identity-lv6__img img {
        width: 100%;
        height: auto;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
    }

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

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

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

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

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

.messages--colored-v5 {

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

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

.messages__title {
    margin: 0 0 16px;
    font-size: clamp(24px,4vw,30px);
    color: var(--brand-contrast);
}

.messages__list {
    display: grid;
    gap: 10px;
}

.messages__item {
    display: grid;
    grid-template-columns: auto minmax(0,1fr);
    gap: 12px;
    border-radius: var(--radius-lg);
    padding: 10px 14px;
    border: 1px solid rgba(148,163,184,0.6);
    background: rgba(15,23,42,0.96);
}

.messages__item--positive {
    border-color: var(--accent);
}

.messages__item--accent {
    border-color: var(--accent);
}

.messages__avatar {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
}

.messages__meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--neutral-100);
    margin-bottom: 2px;
}

.messages__text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(226,232,240,0.9);
}

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      border-top: 1px solid var(--border-on-surface);
      z-index: 10;
      box-shadow: var(--shadow-md);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.65rem) rotate(-45deg);
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .footer-links {
        margin-bottom: 0.75rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .footer-disclaimer {
        margin: 0.75rem auto 1rem;
        max-width: 700px;
        font-style: italic;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: left;
        }
        .footer-nav,
        .footer-contacts,
        .footer-legal {
            flex: 1;
            min-width: 250px;
        }
        .footer-brand {
            text-align: left;
        }
        .footer-legal {
            flex-basis: 100%;
            margin-top: 1rem;
        }
    }

.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);
        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(--surface-1);
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
    }

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

    .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(--surface-1);
        color: var(--fg-on-surface);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      border-top: 1px solid var(--border-on-surface);
      z-index: 10;
      box-shadow: var(--shadow-md);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.65rem) rotate(-45deg);
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .footer-links {
        margin-bottom: 0.75rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .footer-disclaimer {
        margin: 0.75rem auto 1rem;
        max-width: 700px;
        font-style: italic;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: left;
        }
        .footer-nav,
        .footer-contacts,
        .footer-legal {
            flex: 1;
            min-width: 250px;
        }
        .footer-brand {
            text-align: left;
        }
        .footer-legal {
            flex-basis: 100%;
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .form-layout-c .steps {
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface-light);
        padding: 16px;
    }

    .form-layout-c .row {
        display: grid;
        gap: 10px;
    }

    .form-layout-c .row.two {
        grid-template-columns: 1fr 1fr;
    }

    .form-layout-c label {
        display: grid;
        gap: 6px;
        margin-bottom: 10px;
    }

    .form-layout-c input:not([type="checkbox"]), .form-layout-c textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

    .form-layout-c .agree {
        display: flex;
        gap: 8px;
        align-items: center;
        margin-top: 2px;
    }

    .form-layout-c button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 10px 14px;
    }

    @media (max-width: 760px) {
        .form-layout-c .row.two {
            grid-template-columns: 1fr;
        }
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      border-top: 1px solid var(--border-on-surface);
      z-index: 10;
      box-shadow: var(--shadow-md);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.65rem) rotate(-45deg);
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .footer-links {
        margin-bottom: 0.75rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .footer-disclaimer {
        margin: 0.75rem auto 1rem;
        max-width: 700px;
        font-style: italic;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: left;
        }
        .footer-nav,
        .footer-contacts,
        .footer-legal {
            flex: 1;
            min-width: 250px;
        }
        .footer-brand {
            text-align: left;
        }
        .footer-legal {
            flex-basis: 100%;
            margin-top: 1rem;
        }
    }

.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-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      border-top: 1px solid var(--border-on-surface);
      z-index: 10;
      box-shadow: var(--shadow-md);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.65rem) rotate(-45deg);
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .footer-links {
        margin-bottom: 0.75rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .footer-disclaimer {
        margin: 0.75rem auto 1rem;
        max-width: 700px;
        font-style: italic;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: left;
        }
        .footer-nav,
        .footer-contacts,
        .footer-legal {
            flex: 1;
            min-width: 250px;
        }
        .footer-brand {
            text-align: left;
        }
        .footer-legal {
            flex-basis: 100%;
            margin-top: 1rem;
        }
    }

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

.policy-layout-c {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

    .policy-layout-c .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

    .policy-layout-c .section-head p {
        margin: 10px 0 0;
        opacity: .92;
    }

    .policy-layout-c .stack {
        display: grid;
        gap: 10px;
    }

    .policy-layout-c article {
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-md);
        padding: 12px;
        background: rgba(255, 255, 255, .1);
    }

    .policy-layout-c h3 {
        margin: 0;
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .policy-layout-c h3 span {
        display: inline-grid;
        place-items: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .18);
    }

    .policy-layout-c article p {
        margin: 8px 0 0;
        opacity: .95;
    }

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      border-top: 1px solid var(--border-on-surface);
      z-index: 10;
      box-shadow: var(--shadow-md);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.65rem) rotate(-45deg);
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .footer-links {
        margin-bottom: 0.75rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .footer-disclaimer {
        margin: 0.75rem auto 1rem;
        max-width: 700px;
        font-style: italic;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: left;
        }
        .footer-nav,
        .footer-contacts,
        .footer-legal {
            flex: 1;
            min-width: 250px;
        }
        .footer-brand {
            text-align: left;
        }
        .footer-legal {
            flex-basis: 100%;
            margin-top: 1rem;
        }
    }

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

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

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

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

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

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

header {
    background-color: var(--surface-1);
    color: var(--fg-on-surface);
    border-bottom: 1px solid var(--border-on-surface);
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
  }

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

  .logo {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--brand);
    letter-spacing: -0.5px;
  }

  .cta-button {
    background-color: var(--bg-accent);
    color: var(--fg-on-accent);
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--anim-duration) var(--anim-ease);
  }

  .cta-button:hover {
    background-color: var(--bg-accent-hover);
  }

  .main-nav {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface);
    position: relative;
  }

  .nav-list {
    display: flex;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: var(--space-y) var(--space-x);
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .nav-list a {
    color: var(--link);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    transition: color var(--anim-duration) var(--anim-ease), background-color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 2rem;
    height: 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: absolute;
    right: var(--space-x);
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
  }

  .burger-menu span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: 1px;
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
  }

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

    .nav-list {
      display: none;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      padding: var(--space-y) var(--space-x);
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background-color: var(--surface-2);
      border-top: 1px solid var(--border-on-surface);
      z-index: 10;
      box-shadow: var(--shadow-md);
    }

    .nav-list.active {
      display: flex;
    }

    .nav-list a {
      width: 100%;
      text-align: center;
      padding: 0.75rem;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(0.65rem) rotate(45deg);
    }

    .burger-menu[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-0.65rem) rotate(-45deg);
    }
  }

.footer-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 2.5rem 1.5rem;
        font-family: 'Segoe UI', system-ui, sans-serif;
        color: #333;
        border-top: 1px solid #eaeaea;
    }
    .footer-brand {
        margin-bottom: 2rem;
        text-align: center;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        letter-spacing: 1px;
        color: #2c3e50;
        margin-bottom: 0.5rem;
    }
    .footer-tagline {
        font-size: 0.95rem;
        color: #7f8c8d;
        margin: 0;
    }
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    .footer-nav a {
        text-decoration: none;
        color: #3498db;
        font-weight: 500;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-contacts {
        font-style: normal;
        line-height: 1.6;
        color: #555;
    }
    .footer-contacts strong {
        color: #2c3e50;
    }
    .footer-contacts a {
        color: #3498db;
        text-decoration: none;
    }
    .footer-contacts a:hover {
        text-decoration: underline;
    }
    .footer-legal {
        font-size: 0.85rem;
        color: #95a5a6;
        line-height: 1.5;
    }
    .footer-links {
        margin-bottom: 0.75rem;
    }
    .footer-links a {
        color: #7f8c8d;
        text-decoration: none;
        margin: 0 0.25rem;
    }
    .footer-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .footer-disclaimer {
        margin: 0.75rem auto 1rem;
        max-width: 700px;
        font-style: italic;
    }
    .footer-copyright {
        margin: 0;
    }
    @media (min-width: 768px) {
        .footer-content {
            flex-direction: row;
            flex-wrap: wrap;
            justify-content: space-between;
            text-align: left;
        }
        .footer-nav,
        .footer-contacts,
        .footer-legal {
            flex: 1;
            min-width: 250px;
        }
        .footer-brand {
            text-align: left;
        }
        .footer-legal {
            flex-basis: 100%;
            margin-top: 1rem;
        }
    }

.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-c {
        padding: clamp(56px, 10vw, 114px) 20px;
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

    .err-slab-c .tile {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 44px);
        background: var(--surface-1);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-lg);
        border-top: 8px solid var(--accent);
    }

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

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

    .err-slab-c a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid var(--neutral-300);
        color: var(--fg-on-page);
        text-decoration: none;
    }