:root {
  --font-family: "Cormorant Garamond", sans-serif;
  --font-size-base: 16px;
  --line-height-base: 1.47;

  --max-w: 1260px;
  --space-x: 1.51rem;
  --space-y: 1.5rem;
  --gap: 1.88rem;

  --radius-xl: 1.27rem;
  --radius-lg: 1rem;
  --radius-md: 0.66rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 3px 7px rgba(0,0,0,0.17);
  --shadow-md: 0 14px 32px rgba(0,0,0,0.22);
  --shadow-lg: 0 20px 48px rgba(0,0,0,0.26);

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

  --brand: #5C4033;
  --brand-contrast: #F5F0E8;
  --accent: #C0392B;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F0E8;
  --neutral-300: #C4B8A8;
  --neutral-600: #7A6B5D;
  --neutral-800: #3E342E;
  --neutral-900: #1E1814;

  --bg-page: #F5F0E8;
  --fg-on-page: #1E1814;

  --bg-alt: #E8E0D6;
  --fg-on-alt: #3E342E;

  --surface-1: #FFFFFF;
  --surface-2: #F5F0E8;
  --fg-on-surface: #1E1814;
  --border-on-surface: #C4B8A8;

  --surface-light: #FAF7F2;
  --fg-on-surface-light: #3E342E;
  --border-on-surface-light: #D6CEC2;

  --bg-primary: #C0392B;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #A93226;
  --ring: #C0392B;

  --bg-accent: #C0392B;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #A93226;

  --link: #C0392B;
  --link-hover: #A93226;

  --gradient-hero: linear-gradient(135deg, #5C4033 0%, #3E342E 100%);
  --gradient-accent: linear-gradient(135deg, #C0392B 0%, #A93226 100%);

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

/* Design tokens utilizate: --brand, --brand-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --surface-2, --fg-on-surface, --border-on-surface, --shadow-md, --shadow-lg, --radius-md, --radius-lg, --gap, --space-x, --space-y, --anim-duration, --anim-ease, --overlay, --max-w */
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    position: relative;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: 80px var(--space-x) var(--space-y);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 105;
  }

  .nav-menu.active {
    right: 0;
  }

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

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    background: var(--brand);
    color: var(--brand-contrast);
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 104;
  }

  .overlay.active {
    display: block;
  }

  @media (min-width: 768px) {
    .burger-btn {
      display: none;
    }

    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      right: auto;
      transition: none;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border-radius: var(--radius-lg);
    }

    .overlay {
      display: none !important;
    }
  }

  @media (max-width: 767px) {
    .header-container {
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .top-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-copy p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      margin: 0;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.hero {
        position: relative;
        min-height: 80vh;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        color: var(--fg-on-primary);
        overflow: hidden;
    }

    .hero__bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: -2;
    }

    .hero__overlay {
        position: absolute;
        inset: 0;
        background: var(--gradient-hero);
        opacity: 0.7;
        z-index: -1;
    }

    .hero__content {
        max-width: 900px;
        padding: clamp(16px, 3vw, 32px);
        z-index: 1;
    }

    .hero h1 {
        font-size: clamp(28px, 5vw, 48px);
        font-weight: 700;
        margin-bottom: var(--space-y);
        text-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto calc(var(--space-y) * 1.5);
        max-width: 700px;
    }

    .hero__actions {
        display: flex;
        gap: var(--gap);
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero__btn {
        display: inline-block;
        padding: 12px 30px;
        border-radius: var(--radius-md);
        font-weight: 500;
        text-align: center;
        transition: all var(--anim-duration) var(--anim-ease);
        cursor: pointer;
        border: 1px solid transparent;
        font-size: 1rem;
    }

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

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

    .hero__btn--outline {
        background-color: transparent;
        color: var(--fg-on-primary);
        border-color: var(--fg-on-primary);
    }

    .hero__btn--outline:hover {
        background-color: var(--btn-ghost-bg-hover);
    }

.cta-struct-v1 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--neutral-100);
        color: var(--neutral-900)
    }

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

    .cta-struct-v1 h2, .cta-struct-v1 h3, .cta-struct-v1 p {
        margin: 0
    }

    .cta-struct-v1 a {
        text-decoration: none
    }

    .cta-struct-v1 .center, .cta-struct-v1 .banner, .cta-struct-v1 .stack, .cta-struct-v1 .bar, .cta-struct-v1 .split, .cta-struct-v1 .duo article {
        padding: .9rem;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--border-on-surface)
    }

    .cta-struct-v1 .center {
        display: grid;
        gap: .5rem;
        justify-items: center;
        text-align: center
    }

    .cta-struct-v1 .split {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    .cta-struct-v1 .actions {
        display: flex;
        gap: .45rem;
        flex-wrap: wrap
    }

    .cta-struct-v1 .actions a, .cta-struct-v1 .center a, .cta-struct-v1 .banner > a, .cta-struct-v1 .duo a {
        display: inline-flex;
        min-height: 2.35rem;
        padding: 0 .85rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .cta-struct-v1 .banner {
        display: grid;
        gap: .6rem
    }

    .cta-struct-v1 .numbers {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: .5rem
    }

    .cta-struct-v1 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

    .cta-struct-v1 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .cta-struct-v1 .duo article {
        display: grid;
        gap: .45rem
    }

    .cta-struct-v1 .stack {
        display: grid;
        gap: .6rem;
        justify-items: start
    }

    .cta-struct-v1 .chips {
        display: flex;
        gap: .35rem;
        flex-wrap: wrap
    }

    .cta-struct-v1 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300)
    }

    .cta-struct-v1 .bar {
        display: grid;
        grid-template-columns:1fr auto;
        gap: var(--gap);
        align-items: center
    }

    @media (max-width: 820px) {
        .cta-struct-v1 .split, .cta-struct-v1 .bar, .cta-struct-v1 .duo {
            grid-template-columns:1fr
        }

        .cta-struct-v1 .numbers {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 620px) {
        .cta-struct-v1 .numbers {
            grid-template-columns:1fr
        }
    }

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

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        overflow: hidden;
        position: relative;
    }

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

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

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

    .clarifications-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        line-height: 1.1;
        letter-spacing: -.02em;
    }

    .clarifications-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

/* Design tokens utilizate: --brand, --brand-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --surface-2, --fg-on-surface, --border-on-surface, --shadow-md, --shadow-lg, --radius-md, --radius-lg, --gap, --space-x, --space-y, --anim-duration, --anim-ease, --overlay, --max-w */
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    position: relative;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: 80px var(--space-x) var(--space-y);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 105;
  }

  .nav-menu.active {
    right: 0;
  }

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

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    background: var(--brand);
    color: var(--brand-contrast);
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 104;
  }

  .overlay.active {
    display: block;
  }

  @media (min-width: 768px) {
    .burger-btn {
      display: none;
    }

    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      right: auto;
      transition: none;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border-radius: var(--radius-lg);
    }

    .overlay {
      display: none !important;
    }
  }

  @media (max-width: 767px) {
    .header-container {
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .top-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-copy p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      margin: 0;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.profile {

        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-page) 100%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .profile .profile__c {
        max-width: 900px;
        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__tabs {
        display: flex;
        gap: 0.5rem;
        justify-content: center;
        margin-bottom: clamp(32px, 5vw, 48px);
        flex-wrap: wrap;
    }

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

    .profile .profile__tab {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__tab:hover {
        background: var(--bg-alt);
        border-color: var(--bg-primary);
    }

    .profile .profile__tab.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-sm);
    }

    .profile .profile__panels {
        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__panel {
        display: none;
    }

    .profile .profile__panel.active {
        display: block;
    }

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

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

    .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);
        flex-shrink: 0;
    }

    .profile .profile__avatar-actions {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .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;
        text-align: center;
        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__remove-btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-page);
        border: 2px solid var(--ring);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .profile .profile__remove-btn:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(239, 68, 68, 0.1);
    }

    .profile .profile__form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
        margin-bottom: clamp(20px, 3vw, 28px);
    }

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

    @media (max-width: 767px) {
        .profile .profile__form-row {
            grid-template-columns: 1fr;
        }

        .profile .profile__avatar-section {
            flex-direction: column;
            text-align: center;
        }
    }

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

    .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__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:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-3px);
        box-shadow: var(--shadow-lg);
    }

.support-ux10 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

    .support-ux10__wrap {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: 12px;
        grid-template-columns: 1fr 1fr;
    }

    .support-ux10__wrap article {
        border: 1px solid var(--neutral-300);
        border-radius: var(--radius-lg);
        background: var(--neutral-100);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

    .support-ux10__wrap h3 {
        margin: 0 0 7px;
        color: var(--brand);
    }

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

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

.security {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Design tokens utilizate: --brand, --brand-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --surface-2, --fg-on-surface, --border-on-surface, --shadow-md, --shadow-lg, --radius-md, --radius-lg, --gap, --space-x, --space-y, --anim-duration, --anim-ease, --overlay, --max-w */
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    position: relative;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: 80px var(--space-x) var(--space-y);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 105;
  }

  .nav-menu.active {
    right: 0;
  }

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

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    background: var(--brand);
    color: var(--brand-contrast);
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 104;
  }

  .overlay.active {
    display: block;
  }

  @media (min-width: 768px) {
    .burger-btn {
      display: none;
    }

    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      right: auto;
      transition: none;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border-radius: var(--radius-lg);
    }

    .overlay {
      display: none !important;
    }
  }

  @media (max-width: 767px) {
    .header-container {
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .top-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-copy p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      margin: 0;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.settings {

        color: var(--fg-on-page);
        background: linear-gradient(135deg, var(--bg-accent) 0%, var(--bg-page) 100%);
        padding: clamp(24px, 4vw, 56px) clamp(16px, 4vw, 40px);
    }

    .settings .settings__c {
        max-width: 900px;
        margin: 0 auto;
    }

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

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

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

    .settings .settings__tabs-wrapper {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 0.5rem;
        margin-bottom: clamp(24px, 4vw, 32px);
        box-shadow: var(--shadow-sm);
    }

    .settings .settings__tabs {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

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

    .settings .settings__tab {
        flex: 1;
        padding: 0.875rem 1.5rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        font-weight: 600;
        cursor: pointer;
        border-radius: var(--radius-md);
        transition: all var(--anim-duration) var(--anim-ease);
        min-width: 120px;
    }

    .settings .settings__tab:hover {
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .settings .settings__tab.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
    }

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

    .settings .settings__panel {
        display: none;
    }

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

    .settings .settings__section {
        margin-bottom: clamp(32px, 4vw, 40px);
        padding-bottom: clamp(24px, 4vw, 32px);
        border-bottom: 1px solid var(--border-on-surface-light);
    }

    .settings .settings__section:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .settings .settings__section h3 {
        margin: 0 0 clamp(20px, 3vw, 24px);
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .settings .settings__form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: clamp(20px, 3vw, 28px);
    }

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

    @media (max-width: 767px) {
        .settings .settings__form-row {
            grid-template-columns: 1fr;
        }
    }

    .settings .settings__form-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .settings .settings__form-group input {
        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);
    }

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

    .settings .settings__avatar-upload {
        display: flex;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
    }

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

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

    .settings .settings__upload-controls {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .settings .settings__upload-label {
        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;
        text-align: center;
        border: 2px solid var(--bg-primary);
    }

    .settings .settings__upload-label input {
        display: none;
    }

    .settings .settings__upload-label:hover {
        background: var(--bg-primary-hover);
    }

    .settings .settings__remove {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-md);
        background: transparent;
        color: var(--fg-on-page);
        border: 2px solid var(--ring);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
    }

    .settings .settings__remove:hover {
        border-color: var(--accent);
        color: var(--accent);
        background: rgba(239, 68, 68, 0.1);
    }

    .settings .settings__checkboxes {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

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

    .settings .settings__checkbox-label {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        cursor: pointer;
        font-weight: 500;
        color: var(--fg-on-page);
    }

    .settings .settings__checkbox-label input {
        width: 20px;
        height: 20px;
        cursor: pointer;
    }

    .settings .settings__actions {
        display: flex;
        gap: 1rem;
        margin-top: clamp(32px, 4vw, 40px);
        padding-top: clamp(24px, 4vw, 32px);
        border-top: 1px solid var(--border-on-surface-light);
    }

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

    .settings .settings__save {
        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);
        box-shadow: var(--shadow-md);
    }

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

    .settings .settings__reset {
        padding: 1rem 2.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: transparent;
        color: var(--fg-on-page);
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .settings .settings__reset:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        background: rgba(37, 99, 235, 0.1);
    }

.security {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.clarifications-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        overflow: hidden;
        position: relative;
    }

    .clarifications-c1::before {
        content: '';
        position: absolute;
        inset: -40%;
        background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.16), transparent 55%),
        radial-gradient(circle at 70% 60%, rgba(255, 107, 53, 0.18), transparent 52%);
        filter: blur(18px);
        animation: c1Glow 6s var(--anim-ease) infinite;
        opacity: .8;
        pointer-events: none;
    }

    @keyframes c1Glow {
        0%, 100% {
            transform: translate3d(-1%, 0, 0) scale(1);
        }
        50% {
            transform: translate3d(1.5%, -1%, 0) scale(1.03);
        }
    }

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

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

    .clarifications-c1__title {
        margin: 0;
        font-size: clamp(24px, 4.6vw, 44px);
        line-height: 1.1;
        letter-spacing: -.02em;
    }

    .clarifications-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .82);
    }

    .clarifications-c1__grid {
        display: grid;
        gap: 12px;
    }

    .clarifications-c1__item {
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
        overflow: hidden;
        backdrop-filter: blur(8px);
    }

    .clarifications-c1__q {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 16px;
        background: transparent;
        border: 0;
        color: inherit;
        cursor: pointer;
        text-align: left;
    }

    .clarifications-c1__dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: var(--accent);
        box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.12);
        flex: 0 0 auto;
        animation: c1Dot 1.8s ease-in-out infinite;
    }

    @keyframes c1Dot {
        0%, 100% {
            transform: scale(1);
            opacity: .9
        }
        50% {
            transform: scale(1.15);
            opacity: 1
        }
    }

    .clarifications-c1__qText {
        font-weight: 800;
        letter-spacing: -.01em
    }

    .clarifications-c1__chev {
        margin-left: auto;
        opacity: .85;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c1__a {
        display: none;
        padding: 0 16px 16px 38px;
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

    .clarifications-c1__item.is-open .clarifications-c1__chev {
        transform: rotate(180deg);
    }

    .clarifications-c1__item.is-open .clarifications-c1__a {
        display: block;
    }

    @media (prefers-reduced-motion: reduce) {
        .clarifications-c1::before, .clarifications-c1__dot {
            animation: none;
        }
    }

/* Design tokens utilizate: --brand, --brand-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --surface-2, --fg-on-surface, --border-on-surface, --shadow-md, --shadow-lg, --radius-md, --radius-lg, --gap, --space-x, --space-y, --anim-duration, --anim-ease, --overlay, --max-w */
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    position: relative;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: 80px var(--space-x) var(--space-y);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 105;
  }

  .nav-menu.active {
    right: 0;
  }

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

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    background: var(--brand);
    color: var(--brand-contrast);
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 104;
  }

  .overlay.active {
    display: block;
  }

  @media (min-width: 768px) {
    .burger-btn {
      display: none;
    }

    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      right: auto;
      transition: none;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border-radius: var(--radius-lg);
    }

    .overlay {
      display: none !important;
    }
  }

  @media (max-width: 767px) {
    .header-container {
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .top-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-copy p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      margin: 0;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.activity {

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

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

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

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

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

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

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

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

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

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

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

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

.rec-lx8{padding:calc(var(--space-y)*2.85) var(--space-x);background:var(--bg-alt)}
.rec-lx8 .rec-shell{max-width:var(--max-w);margin:0 auto}
.rec-lx8 h2{margin:0 0 .85rem;font-size:clamp(1.76rem,3.2vw,2.48rem)}
.rec-lx8 .rec-lanes{display:grid;grid-template-columns:.86fr 1.14fr;gap:var(--gap)}
.rec-lx8 .rec-side{padding:1rem;border-radius:var(--radius-lg);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.rec-lx8 .rec-side p{margin:0 0 .45rem;color:var(--fg-on-surface-light)}
.rec-lx8 .rec-side p b{color:var(--fg-on-surface)}
.rec-lx8 .rec-list{display:grid;gap:.55rem}
.rec-lx8 .rec-list article{padding:.85rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
.rec-lx8 h3{margin:0 0 .22rem}
.rec-lx8 article p{margin:0 0 .5rem;color:var(--fg-on-surface-light)}
.rec-lx8 a{text-decoration:none;color:var(--link);font-weight:700}
@media (max-width:860px){.rec-lx8 .rec-lanes{grid-template-columns:1fr}}

/* Design tokens utilizate: --brand, --brand-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --surface-2, --fg-on-surface, --border-on-surface, --shadow-md, --shadow-lg, --radius-md, --radius-lg, --gap, --space-x, --space-y, --anim-duration, --anim-ease, --overlay, --max-w */
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    position: relative;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: 80px var(--space-x) var(--space-y);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 105;
  }

  .nav-menu.active {
    right: 0;
  }

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

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    background: var(--brand);
    color: var(--brand-contrast);
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 104;
  }

  .overlay.active {
    display: block;
  }

  @media (min-width: 768px) {
    .burger-btn {
      display: none;
    }

    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      right: auto;
      transition: none;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border-radius: var(--radius-lg);
    }

    .overlay {
      display: none !important;
    }
  }

  @media (max-width: 767px) {
    .header-container {
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .top-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-copy p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      margin: 0;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.security {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Design tokens utilizate: --brand, --brand-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --surface-2, --fg-on-surface, --border-on-surface, --shadow-md, --shadow-lg, --radius-md, --radius-lg, --gap, --space-x, --space-y, --anim-duration, --anim-ease, --overlay, --max-w */
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    position: relative;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: 80px var(--space-x) var(--space-y);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 105;
  }

  .nav-menu.active {
    right: 0;
  }

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

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    background: var(--brand);
    color: var(--brand-contrast);
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 104;
  }

  .overlay.active {
    display: block;
  }

  @media (min-width: 768px) {
    .burger-btn {
      display: none;
    }

    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      right: auto;
      transition: none;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border-radius: var(--radius-lg);
    }

    .overlay {
      display: none !important;
    }
  }

  @media (max-width: 767px) {
    .header-container {
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .top-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-copy p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      margin: 0;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.frm-lx6{padding:calc(var(--space-y)*2.85) var(--space-x)}
.frm-lx6 .frm-max{max-width:var(--max-w);margin:0 auto}
.frm-lx6 .frm-head{margin-bottom:.9rem}
.frm-lx6 h2{margin:0;font-size:clamp(1.78rem,3.3vw,2.5rem)}
.frm-lx6 .frm-head p{margin:.4rem 0 0;color:var(--fg-on-surface-light)}
.frm-lx6 .frm-columns{display:grid;grid-template-columns:1fr 1fr;gap:.7rem;padding:.7rem;background:var(--surface-2);border-radius:var(--radius-xl);border:1px solid var(--border-on-surface)}
.frm-lx6 .frm-col{padding:.8rem;border-radius:var(--radius-lg);background:var(--surface-1);display:grid;gap:.62rem}
.frm-lx6 label{display:grid;gap:.25rem}
.frm-lx6 span{font-size:.82rem;font-weight:700;color:var(--fg-on-surface-light)}
.frm-lx6 input,.frm-lx6 textarea{width:100%;padding:.76rem .8rem;border-radius:var(--radius-sm);border:1px solid var(--border-on-surface-light);font:inherit;color:var(--fg-on-surface);background:var(--surface-1)}
.frm-lx6 textarea{min-height:170px;resize:vertical}
.frm-lx6 button{padding:.82rem 1rem;border:0;border-radius:var(--radius-md);background:var(--gradient-hero);color:var(--brand-contrast);font-weight:700;cursor:pointer;transition:transform var(--anim-duration) var(--anim-ease)}
.frm-lx6 button:hover{transform:translateY(-2px)}
@media (max-width:860px){.frm-lx6 .frm-columns{grid-template-columns:1fr}}

.contacts-u5{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--neutral-900);color:var(--neutral-0)} .contacts-u5 .shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:var(--gap)} .contacts-u5 h2{margin:0;font-size:clamp(1.85rem,3.6vw,2.8rem);line-height:1.1} .contacts-u5 .sub{margin:.35rem 0 0;opacity:.9;} .contacts-u5 article,.contacts-u5 li{padding:.85rem;border-radius:var(--radius-sm);background:var(--chip-bg);border:1px solid var(--btn-ghost-bg-hover);list-style:none} .contacts-u5 p{margin:0} .contacts-u5 a{text-decoration:none;color:inherit;font-weight:700} .contacts-u5 .ranks{counter-reset:r;display:grid;gap:.5rem} .contacts-u5 .ranks article{position:relative;padding-left:2.2rem} .contacts-u5 .ranks article::before{counter-increment:r;content:counter(r);position:absolute;left:.7rem;top:.8rem;width:1.2rem;height:1.2rem;border-radius:50%;display:grid;place-items:center;background:var(--bg-primary);color:var(--fg-on-primary);font-size:.72rem} @media (max-width:860px){.contacts-u5 .split,.contacts-u5 .media,.contacts-u5 .grid,.contacts-u5 .cards,.contacts-u5 .bento,.contacts-u5 .foot{grid-template-columns:1fr}}

/* Design tokens utilizate: --brand, --brand-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --surface-2, --fg-on-surface, --border-on-surface, --shadow-md, --shadow-lg, --radius-md, --radius-lg, --gap, --space-x, --space-y, --anim-duration, --anim-ease, --overlay, --max-w */
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    position: relative;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: 80px var(--space-x) var(--space-y);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 105;
  }

  .nav-menu.active {
    right: 0;
  }

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

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    background: var(--brand);
    color: var(--brand-contrast);
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 104;
  }

  .overlay.active {
    display: block;
  }

  @media (min-width: 768px) {
    .burger-btn {
      display: none;
    }

    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      right: auto;
      transition: none;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border-radius: var(--radius-lg);
    }

    .overlay {
      display: none !important;
    }
  }

  @media (max-width: 767px) {
    .header-container {
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .top-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-copy p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      margin: 0;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.pol-lx2{padding:calc(var(--space-y)*2.8) var(--space-x)}
.pol-lx2 .pol-shell{max-width:var(--max-w);margin:0 auto;display:grid;gap:.75rem}
.pol-lx2 h2{margin:0;font-size:clamp(1.8rem,3.4vw,2.55rem)}
.pol-lx2 .pol-core{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.65rem}
.pol-lx2 .pol-core article{padding:.9rem;border-radius:var(--radius-lg);background:var(--surface-2);border:1px solid var(--border-on-surface)}
.pol-lx2 h3{margin:0 0 .28rem;font-size:1rem}
.pol-lx2 p{margin:0;color:var(--fg-on-surface-light)}
.pol-lx2 .pol-list{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.58rem}
.pol-lx2 .pol-list li{padding:.85rem;border-radius:var(--radius-md);background:var(--surface-1);border:1px solid var(--border-on-surface)}
@media (max-width:860px){.pol-lx2 .pol-core,.pol-lx2 .pol-list{grid-template-columns:1fr}}

/* Design tokens utilizate: --brand, --brand-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --surface-2, --fg-on-surface, --border-on-surface, --shadow-md, --shadow-lg, --radius-md, --radius-lg, --gap, --space-x, --space-y, --anim-duration, --anim-ease, --overlay, --max-w */
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    position: relative;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: 80px var(--space-x) var(--space-y);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 105;
  }

  .nav-menu.active {
    right: 0;
  }

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

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    background: var(--brand);
    color: var(--brand-contrast);
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 104;
  }

  .overlay.active {
    display: block;
  }

  @media (min-width: 768px) {
    .burger-btn {
      display: none;
    }

    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      right: auto;
      transition: none;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border-radius: var(--radius-lg);
    }

    .overlay {
      display: none !important;
    }
  }

  @media (max-width: 767px) {
    .header-container {
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .top-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-copy p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      margin: 0;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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

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

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

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

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

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

/* Design tokens utilizate: --brand, --brand-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --surface-2, --fg-on-surface, --border-on-surface, --shadow-md, --shadow-lg, --radius-md, --radius-lg, --gap, --space-x, --space-y, --anim-duration, --anim-ease, --overlay, --max-w */
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    position: relative;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: 80px var(--space-x) var(--space-y);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 105;
  }

  .nav-menu.active {
    right: 0;
  }

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

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    background: var(--brand);
    color: var(--brand-contrast);
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 104;
  }

  .overlay.active {
    display: block;
  }

  @media (min-width: 768px) {
    .burger-btn {
      display: none;
    }

    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      right: auto;
      transition: none;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border-radius: var(--radius-lg);
    }

    .overlay {
      display: none !important;
    }
  }

  @media (max-width: 767px) {
    .header-container {
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .top-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-copy p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      margin: 0;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

.thx-lx8{padding:calc(var(--space-y)*2.9) var(--space-x);background:var(--bg-alt)}
.thx-lx8 .thx-shell{max-width:900px;margin:0 auto;text-align:center}
.thx-lx8 h2{margin:0;font-size:clamp(1.76rem,3.2vw,2.46rem)}
.thx-lx8 .thx-sub{margin:.42rem 0 .92rem;color:var(--fg-on-surface-light)}
.thx-lx8 .thx-steps{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:.55rem}
.thx-lx8 .thx-steps div{padding:.82rem;border-radius:var(--radius-md);border:1px solid var(--border-on-surface);background:var(--surface-1);display:grid;gap:.22rem}
.thx-lx8 b{font-size:.94rem}
.thx-lx8 span{color:var(--fg-on-surface-light)}
@keyframes thankSoft{0%{opacity:.65;transform:translateY(5px)}100%{opacity:1;transform:none}}
.thx-lx8 .thx-steps div{animation:thankSoft .45s var(--anim-ease) both}
.thx-lx8 .thx-steps div:nth-child(2){animation-delay:.06s}.thx-lx8 .thx-steps div:nth-child(3){animation-delay:.12s}
@media (max-width:760px){.thx-lx8 .thx-steps{grid-template-columns:1fr}}

/* Design tokens utilizate: --brand, --brand-contrast, --neutral-0, --neutral-100, --neutral-300, --neutral-600, --neutral-800, --neutral-900, --bg-page, --fg-on-page, --surface-1, --surface-2, --fg-on-surface, --border-on-surface, --shadow-md, --shadow-lg, --radius-md, --radius-lg, --gap, --space-x, --space-y, --anim-duration, --anim-ease, --overlay, --max-w */
  
  .header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: var(--space-y) var(--space-x);
    background: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 100;
  }

  .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color var(--anim-duration) var(--anim-ease);
  }

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

  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
    position: relative;
  }

  .burger-line {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--neutral-800);
    border-radius: var(--radius-sm);
    transition: all var(--anim-duration) var(--anim-ease);
  }

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-2);
    box-shadow: var(--shadow-lg);
    padding: 80px var(--space-x) var(--space-y);
    transition: right var(--anim-duration) var(--anim-ease);
    z-index: 105;
  }

  .nav-menu.active {
    right: 0;
  }

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

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--fg-on-surface);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: background var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
  }

  .nav-list a:hover {
    background: var(--brand);
    color: var(--brand-contrast);
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    z-index: 104;
  }

  .overlay.active {
    display: block;
  }

  @media (min-width: 768px) {
    .burger-btn {
      display: none;
    }

    .nav-menu {
      position: static;
      width: auto;
      height: auto;
      background: transparent;
      box-shadow: none;
      padding: 0;
      right: auto;
      transition: none;
    }

    .nav-list {
      flex-direction: row;
      gap: calc(var(--gap) * 1.5);
    }

    .nav-list a {
      padding: 0.5rem 1rem;
      font-size: 1rem;
      border-radius: var(--radius-lg);
    }

    .overlay {
      display: none !important;
    }
  }

  @media (max-width: 767px) {
    .header-container {
      padding: var(--space-y) var(--space-x);
    }
  }

footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 2rem 1rem;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  .footer-row:last-child {
    margin-bottom: 0;
  }
  .top-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .middle-row {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 1.5rem;
  }
  .bottom-row {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand .logo {
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
  }
  .footer-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #3498db;
  }
  .contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  .contact-info li {
    font-size: 0.95rem;
  }
  .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
  }
  .contact-info a:hover {
    color: #3498db;
  }
  .footer-links {
    margin-bottom: 0.5rem;
  }
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #3498db;
  }
  .footer-copy p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
  }
  .footer-disclaimer p {
    font-size: 0.8rem;
    opacity: 0.8;
    max-width: 800px;
    margin: 0.5rem auto 0;
  }
  @media (max-width: 768px) {
    .top-row {
      flex-direction: column;
      text-align: center;
    }
    .footer-nav ul {
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1rem;
    }
    .contact-info ul {
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .footer-links a {
      margin: 0;
    }
  }

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

    .cookie-lv12__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-md);
        padding: calc(var(--space-y) * 0.9) var(--space-x);
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 12px var(--gap);
        align-items: center;
    }

    .cookie-lv12__title {
        font-weight: 700;
        color: var(--fg-on-surface);
    }

    .cookie-lv12 p {
        margin: 0;
        grid-column: 1 / 2;
        color: var(--fg-muted);
    }

    .cookie-lv12__actions {
        grid-row: 1 / 3;
        grid-column: 2 / 3;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

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

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

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

        .cookie-lv12 p,
        .cookie-lv12__actions {
            grid-column: auto;
            grid-row: auto;
        }

        .cookie-lv12__actions {
            justify-content: flex-start;
        }
    }

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

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

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

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

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