:root {
  --font-family: "Open Sans", sans-serif;
  --font-size-base: 16.2px;
  --line-height-base: 1.4;

  --max-w: 1040px;
  --space-x: 1.67rem;
  --space-y: 1.5rem;
  --gap: 2.22rem;

  --radius-xl: 1.17rem;
  --radius-lg: 1rem;
  --radius-md: 0.52rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 3px 4px rgba(0,0,0,0.14);
  --shadow-md: 0 14px 18px rgba(0,0,0,0.18);
  --shadow-lg: 0 18px 40px rgba(0,0,0,0.22);

  --overlay: rgba(0,0,0,0.5);
  --anim-duration: 200ms;
  --anim-ease: ease-in-out;
  --random-number: 2;

  --brand: #0A3D62;
  --brand-contrast: #FFFFFF;
  --accent: #1E88E5;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #CBD5E1;
  --neutral-600: #64748B;
  --neutral-800: #1E293B;
  --neutral-900: #0F172A;

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

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

  --surface-1: #FFFFFF;
  --surface-2: #F8FAFC;
  --fg-on-surface: #1E293B;
  --border-on-surface: #E2E8F0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #475569;
  --border-on-surface-light: #E2E8F0;

  --bg-primary: #0D47A1;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #0B3D91;
  --ring: #1E88E5;

  --bg-accent: #1E88E5;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #1565C0;

  --link: #1E88E5;
  --link-hover: #1565C0;

  --gradient-hero: linear-gradient(135deg, #0A3D62 0%, #1E88E5 100%);
  --gradient-accent: linear-gradient(135deg, #1E88E5 0%, #0D47A1 100%);

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

header {
    position: relative;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.35);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast, #0b5bbf);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: var(--btn-ghost-bg, transparent);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface, #1f1f1f);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.25s) var(--anim-ease, ease);
    transform-origin: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    padding: 0 var(--space-x, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--link, #1a73e8);
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--link-hover, #0b5bbf);
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
  }
  @media (min-width: 768px) {
    .header-inner {
      justify-content: space-between;
    }
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x, 1.5rem);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
  }
  .copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

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

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

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

    .intro-slab-l2__main {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        background: var(--bg-alt);
    }

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

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

    .intro-slab-l2__main strong {
        display: block;
        margin-top: .8rem;
        color: var(--brand);
    }

    .intro-slab-l2__fact {
        margin-top: 1rem;
        padding: .85rem .95rem;
        border-left: 3px solid var(--bg-primary);
        background: var(--surface-1);
    }

    .intro-slab-l2__side {
        padding: 1.2rem;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
        display: grid;
        align-content: center;
    }

    .intro-slab-l2__side span {
        color: var(--brand);
        font-weight: 700;
    }

    .intro-slab-l2__side p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .intro-slab-l2__actions {
        margin-top: 1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

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

    .intro-slab-l2__actions a:first-child {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
    }

    @media (max-width: 860px) {
        .intro-slab-l2__wrap {
            grid-template-columns: 1fr;
        }
    }

.cta-struct-v4 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--bg-primary);
        color: var(--fg-on-primary)
    }

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

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

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

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

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

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

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

    .cta-struct-v4 .actions a, .cta-struct-v4 .center a, .cta-struct-v4 .banner > a, .cta-struct-v4 .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-v4 .banner {
        display: grid;
        gap: .6rem
    }

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

    .cta-struct-v4 .numbers div {
        padding: .6rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

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

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

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

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

    .cta-struct-v4 .chips span {
        padding: .28rem .5rem;
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light)
    }

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

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

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

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

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

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

    .faq-fresh-v2 .head p {
        margin: .35rem 0 0;
        color: var(--fg-on-surface-light);
    }

    .faq-fresh-v2 .grid {
        display: grid;
        grid-template-columns:repeat(2, minmax(0, 1fr));
        gap: var(--gap);
    }

    .faq-fresh-v2 article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .faq-fresh-v2 h3 {
        margin: 0 0 .5rem;
        font-size: 1.05rem;
    }

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

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

.values-spine-c1 {
        padding: clamp(3.5rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--gradient-accent);
    }

    .values-spine-c1__wrap {
        max-width: 58rem;
        margin: 0 auto;
    }

    .values-spine-c1__head {
        text-align: center;
        margin-bottom: 1.2rem;
    }

    .values-spine-c1__head p {
        margin: 0;
        color: rgba(255, 255, 255, .76);
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
    }

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

    .values-spine-c1__head span {
        display: block;
        margin-top: .8rem;
    }

    .values-spine-c1__list {
        display: grid;
        gap: .8rem;
    }

    .values-spine-c1__list article {
        display: grid;
        grid-template-columns: 3rem 1fr;
        gap: .9rem;
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .18);
    }

    .values-spine-c1__list strong {
        display: grid;
        place-items: center;
        width: 3rem;
        height: 3rem;
        border-radius: var(--radius-md);
        background: var(--bg-accent);
    }

    .values-spine-c1__list h3 {
        margin: 0;
    }

    .values-spine-c1__list p {
        margin: .35rem 0 0;
    }

    .values-spine-c1__list small {
        display: block;
        margin-top: .55rem;
    }

.plans-lv4 {
        padding: clamp(50px, 7vw, 90px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .plans-lv4__wrap {
        max-width: 920px;
        margin: 0 auto;
    }

    .plans-lv4__head {
        text-align: center;
        margin-bottom: 14px;
    }

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

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

    .plans-lv4__stack {
        display: grid;
        gap: 10px;
    }

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

    .plans-lv4__line {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        gap: 8px;
    }

    .plans-lv4__line h3 {
        margin: 0;
    }

    .plans-lv4__line p {
        margin: 0;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv4__chips {
        margin-top: 8px;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
    }

    .plans-lv4__chips span {
        border: 1px solid var(--border-on-surface-light);
        border-radius: 999px;
        background: var(--surface-1);
        padding: 5px 9px;
        font-size: .88rem;
    }

    .plans-lv4__stack button {
        margin-top: 10px;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 8px 11px;
    }

header {
    position: relative;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.35);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast, #0b5bbf);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: var(--btn-ghost-bg, transparent);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface, #1f1f1f);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.25s) var(--anim-ease, ease);
    transform-origin: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    padding: 0 var(--space-x, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--link, #1a73e8);
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--link-hover, #0b5bbf);
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
  }
  @media (min-width: 768px) {
    .header-inner {
      justify-content: space-between;
    }
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x, 1.5rem);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
  }
  .copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

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

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

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.product-list {

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

    .product-list .product-list__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .product-list .product-list__header-wrapper {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: clamp(24px, 4vw, 48px);
        align-items: start;
        margin-bottom: clamp(32px, 5vw, 56px);
    }

    /* Si randomNumber es par (2) - primer hijo obtiene order: 2 */
    .product-list .product-list__header-wrapper > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 1023px) {
        .product-list .product-list__header-wrapper {
            grid-template-columns: 1fr;
        }
    }

    .product-list .product-list__h {
        text-align: left;
    }

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

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.4vw, 20px);
        color: var(--neutral-600);
        margin: 0;
        line-height: 1.6;
    }

    .product-list .product-list__filters {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        min-width: 200px;
    }

    /* Si randomNumber es par (2) - primer hijo obtiene order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    @media (max-width: 1023px) {
        .product-list .product-list__filters {
            flex-direction: row;
            flex-wrap: wrap;
            min-width: auto;
        }
    }

    .product-list .product-list__filter {
        padding: 0.75rem 1.5rem;
        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: 500;
        text-align: left;
    }

    @media (max-width: 1023px) {
        .product-list .product-list__filter {
            text-align: center;
        }
    }

    .product-list .product-list__filter:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: translateX(4px);
    }

    .product-list .product-list__list {
        display: flex;
        flex-direction: column;
        gap: clamp(16px, 2.5vw, 24px);
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 2px solid var(--border-on-surface-light);
        border-radius: var(--radius-xl);
        padding: clamp(20px, 3vw, 32px);
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: grid;
        grid-template-columns: 50% 1fr auto;
        gap: clamp(20px, 3vw, 32px);
        align-items: center;
    }

    .product-list .product-list__card:hover {
        border-color: var(--bg-primary);
        box-shadow: var(--shadow-lg);
        transform: translateX(8px);
    }

    .product-list .product-list__image {
        width: 100%;
        height: 180px;
        border-radius: var(--radius-lg);
        overflow: hidden;
    }

    .product-list .product-list__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__image img {
        transform: scale(1.05);
    }

    .product-list .product-list__info {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        flex: 1;
    }

    .product-list .product-list__main {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(20px, 2.8vw, 24px);
        color: var(--fg-on-page);
        font-weight: 600;
    }

    .product-list .product-list__description {
        color: var(--neutral-600);
        line-height: 1.6;
        margin: 0;
        font-size: 0.95rem;
    }

    .product-list .product-list__meta {
        display: flex;
        gap: 0.5rem;
        align-items: center;
        font-size: 0.875rem;
        color: var(--neutral-600);
    }

    .product-list .product-list__rating {
        font-weight: 600;
        color: var(--accent);
    }

    .product-list .product-list__actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: flex-end;
        min-width: 180px;
    }

    .product-list .product-list__price {
        font-size: 1.75rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0;
        text-align: right;
    }

    .product-list .product-list__btn {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        width: 100%;
        text-align: center;
    }

    .product-list .product-list__btn:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .product-list__image img {
        width: 100%;
    }
    @media (max-width: 1023px) {
        .product-list .product-list__card {
            grid-template-columns: 1fr;
        }

        .product-list .product-list__image {
            height: 240px;
        }

        .product-list .product-list__actions {
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            min-width: auto;
        }

        .product-list .product-list__price {
            text-align: left;
        }

        .product-list .product-list__btn {
            width: auto;
        }
    }

header {
    position: relative;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.35);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast, #0b5bbf);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: var(--btn-ghost-bg, transparent);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface, #1f1f1f);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.25s) var(--anim-ease, ease);
    transform-origin: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    padding: 0 var(--space-x, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--link, #1a73e8);
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--link-hover, #0b5bbf);
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
  }
  @media (min-width: 768px) {
    .header-inner {
      justify-content: space-between;
    }
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x, 1.5rem);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
  }
  .copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

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

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

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

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

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

header {
    position: relative;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.35);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast, #0b5bbf);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: var(--btn-ghost-bg, transparent);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface, #1f1f1f);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.25s) var(--anim-ease, ease);
    transform-origin: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    padding: 0 var(--space-x, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--link, #1a73e8);
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--link-hover, #0b5bbf);
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
  }
  @media (min-width: 768px) {
    .header-inner {
      justify-content: space-between;
    }
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x, 1.5rem);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
  }
  .copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

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

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

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

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

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__description ul {
        list-style: none;
        padding: 0;
        margin: 1rem 0 0;
    }

    .product-item .product-item__description li {
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

.clarifications-l2 {

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

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

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

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

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

    .clarifications-l2__panel {
        position: relative;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* постоянный скан */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

    @keyframes l2Scan {
        0% {
            transform: translateY(0%)
        }
        100% {
            transform: translateY(240%)
        }
    }

    .clarifications-l2__list {
        display: grid;
        gap: 10px;
        padding: 12px;
    }

    .clarifications-l2__row {
        display: grid;
        grid-template-columns: 110px 1fr;
        gap: 12px;
        padding: 12px 14px;
        text-align: left;
        border-radius: var(--radius-lg);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        cursor: pointer;
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .clarifications-l2__row:hover {
        transform: translateY(-2px);
        border-color: rgba(0, 86, 179, 0.35);
    }

    .clarifications-l2__k {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 34px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
    }

    .clarifications-l2__q {
        display: block;
        font-weight: 900;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-l2__a {
        display: block;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    /* JS добавит “плавающее” выделение активного ряда */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

    @media (max-width: 720px) {
        .clarifications-l2__row {
            grid-template-columns:1fr
        }

        .clarifications-l2__k {
            justify-self: start;
            padding: 0 12px
        }
    }

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

header {
    position: relative;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.35);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast, #0b5bbf);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: var(--btn-ghost-bg, transparent);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface, #1f1f1f);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.25s) var(--anim-ease, ease);
    transform-origin: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    padding: 0 var(--space-x, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--link, #1a73e8);
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--link-hover, #0b5bbf);
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
  }
  @media (min-width: 768px) {
    .header-inner {
      justify-content: space-between;
    }
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x, 1.5rem);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
  }
  .copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

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

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

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.product-item {

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

    .product-item .product-item__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .product-item .product-item__c {
            grid-template-columns: 1fr 1fr;
        }

        /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
        .product-item .product-item__c > *:first-child {
            order: calc((var(--random-number) % 2) * 2);
        }
    }

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

    .product-item .product-item__thumbnails {
        display: flex;
        gap: 0.5rem;
        margin-top: 1rem;
    }

    .product-item .product-item__thumb {
        width: 80px;
        height: 80px;
        object-fit: cover;
        border-radius: var(--radius-md);
        cursor: pointer;
        border: 2px solid transparent;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__thumb:hover {
        border-color: var(--bg-primary);
    }

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

    .product-item .product-item__price {
        font-size: clamp(28px, 4vw, 42px);
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0 0 1.5rem;
    }

    .product-item .product-item__description {
        color: var(--neutral-300);
        line-height: 1.8;
        margin-bottom: var(--space-y);
    }

    .product-item .product-item__actions {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    /* Si randomNumber es par (2) - el primer hijo obtiene order: 2 */
    .product-item .product-item__actions > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-item .product-item__add-cart,
    .product-item .product-item__wishlist {
        padding: 0.875rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-page) fff;
        box-shadow: var(--shadow-md);
    }

    .product-item .product-item__add-cart:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow-lg);
    }

    .product-item .product-item__wishlist {
        background: var(--bg-page);
        color: var(--fg-on-page);
        border: 1px solid var(--ring);
    }

    .product-item .product-item__wishlist:hover {
        background: var(--surface-1);
    }

header {
    position: relative;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.35);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast, #0b5bbf);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: var(--btn-ghost-bg, transparent);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface, #1f1f1f);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.25s) var(--anim-ease, ease);
    transform-origin: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    padding: 0 var(--space-x, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--link, #1a73e8);
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--link-hover, #0b5bbf);
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
  }
  @media (min-width: 768px) {
    .header-inner {
      justify-content: space-between;
    }
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x, 1.5rem);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
  }
  .copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

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

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

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

.checkout {

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

    .checkout .checkout__c {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--space-x);
    }

    @media (min-width: 1024px) {
        .checkout .checkout__c {
            grid-template-columns: 2fr 1fr;
        }
    }

    .checkout h2 {
        font-size: clamp(24px, 4vw, 32px);
        margin: 0 0 var(--space-y);
        color: var(--fg-on-page);
    }

    .checkout .checkout__items {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .checkout .checkout__item {
        display: flex;
        gap: 1rem;
        background: var(--surface-light);
        padding: 1rem;
        border-radius: var(--radius-lg);
        border: 1px solid var(--ring);
    }

    .checkout .checkout__item-image {
        width: 100px;
        height: 100px;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

    .checkout .checkout__item-info {
        flex: 1;
    }

    .checkout h4 {
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
    }

    .checkout .checkout__item-price {
        font-weight: 700;
        color: var(--bg-primary);
        margin: 0.5rem 0;
    }

    .checkout .checkout__item-quantity {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .checkout .checkout__item-quantity button {
        width: 32px;
        height: 32px;
        border-radius: var(--radius-sm);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        cursor: pointer;
    }

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

    .checkout .checkout__total {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--bg-primary);
        margin-bottom: var(--space-y);
        padding-bottom: var(--space-y);
        border-bottom: 1px solid var(--ring);
    }

    .checkout .checkout__form {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .checkout .checkout__form input,
    .checkout .checkout__form textarea {
        padding: 0.875rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);

        outline: none;
    }

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

    .checkout .checkout__form button {
        padding: 1rem 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);
    }

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

header {
    position: relative;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.35);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast, #0b5bbf);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: var(--btn-ghost-bg, transparent);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface, #1f1f1f);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.25s) var(--anim-ease, ease);
    transform-origin: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    padding: 0 var(--space-x, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--link, #1a73e8);
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--link-hover, #0b5bbf);
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
  }
  @media (min-width: 768px) {
    .header-inner {
      justify-content: space-between;
    }
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x, 1.5rem);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
  }
  .copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

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

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

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

    .contact-layout-e .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .contact-layout-e .rail {
        display: grid;
        grid-template-columns: 260px 1fr;
        gap: 16px;
    }

    .contact-layout-e aside {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-lg);
        padding: 16px;
    }

    .contact-layout-e aside h3 {
        margin: 0 0 10px;
    }

    .contact-layout-e aside p {
        margin: 0 0 10px;
        opacity: .9;
    }

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

    .contact-layout-e .social a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: rgba(255, 255, 255, .16);
        padding: 6px 10px;
        border-radius: var(--radius-sm);
    }

    .contact-layout-e .content {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: var(--space-y) var(--space-x);
        display: grid;
        gap: 10px;
    }

    .contact-layout-e .row {
        display: grid;
        gap: 3px;
        padding-bottom: 10px;
        border-bottom: 1px dashed var(--neutral-300);
    }

    .contact-layout-e .row:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    @media (max-width: 760px) {
        .contact-layout-e .rail {
            grid-template-columns: 1fr;
        }
    }

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

    .form-layout-e .wrap {
        max-width: 820px;
        margin: 0 auto;
        background: white;
        color: black;
        border-radius: var(--radius-xl);
        padding: var(--space-x);
        box-shadow: var(--shadow-md);
    }

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

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

    .form-layout-e .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
    }

    .form-layout-e .dark-card {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: rgba(255, 255, 255, .04);
    }

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

    .form-layout-e input:not([type="checkbox"]), .form-layout-e textarea {
        width: 100%;
        border: 1px solid var(--neutral-600);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .07);
        color: var(--neutral-0);
        padding: 9px;
        font: inherit;
    }

    .form-layout-e .end {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 8px;
    }

    .form-layout-e .agree {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .form-layout-e button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

.support-lv4 {
        padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .support-lv4__wrap article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        padding: var(--space-y) var(--space-x);
        box-shadow: var(--shadow-sm);
    }

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

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

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

header {
    position: relative;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.35);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast, #0b5bbf);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: var(--btn-ghost-bg, transparent);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface, #1f1f1f);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.25s) var(--anim-ease, ease);
    transform-origin: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    padding: 0 var(--space-x, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--link, #1a73e8);
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--link-hover, #0b5bbf);
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
  }
  @media (min-width: 768px) {
    .header-inner {
      justify-content: space-between;
    }
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x, 1.5rem);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
  }
  .copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

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

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

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

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

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

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

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

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

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

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

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

header {
    position: relative;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.35);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast, #0b5bbf);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: var(--btn-ghost-bg, transparent);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface, #1f1f1f);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.25s) var(--anim-ease, ease);
    transform-origin: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    padding: 0 var(--space-x, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--link, #1a73e8);
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--link-hover, #0b5bbf);
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
  }
  @media (min-width: 768px) {
    .header-inner {
      justify-content: space-between;
    }
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x, 1.5rem);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
  }
  .copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

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

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

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

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

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

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

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

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

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

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

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

header {
    position: relative;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.35);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast, #0b5bbf);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: var(--btn-ghost-bg, transparent);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface, #1f1f1f);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.25s) var(--anim-ease, ease);
    transform-origin: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    padding: 0 var(--space-x, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--link, #1a73e8);
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--link-hover, #0b5bbf);
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
  }
  @media (min-width: 768px) {
    .header-inner {
      justify-content: space-between;
    }
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x, 1.5rem);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
  }
  .copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

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

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

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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

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

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

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

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

header {
    position: relative;
    z-index: 100;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,0.08));
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .header-inner {
    max-width: var(--max-w, 1200px);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap, 1rem);
  }
  .logo {
    font-size: calc(var(--font-size-base, 1rem) * 1.35);
    font-weight: 700;
    color: var(--brand, #1a73e8);
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1.2;
    white-space: nowrap;
  }
  .logo:hover {
    color: var(--brand-contrast, #0b5bbf);
  }
  .burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 8px;
    border: none;
    background: var(--btn-ghost-bg, transparent);
    border-radius: var(--radius-md, 8px);
    cursor: pointer;
    transition: background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .burger:hover {
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.05));
  }
  .burger-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--fg-on-surface, #1f1f1f);
    border-radius: 2px;
    transition: all var(--anim-duration, 0.25s) var(--anim-ease, ease);
    transform-origin: center;
  }
  .burger.active .burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .burger.active .burger-line:nth-child(2) {
    opacity: 0;
  }
  .burger.active .burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-1, #ffffff);
    border-bottom: 1px solid var(--border-on-surface, #e0e0e0);
    box-shadow: var(--shadow-md, 0 4px 12px rgba(0,0,0,0.08));
    padding: 0 var(--space-x, 1.5rem);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--anim-duration, 0.3s) var(--anim-ease, ease), padding var(--anim-duration, 0.3s) var(--anim-ease, ease);
  }
  .nav-menu.open {
    max-height: 400px;
    padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
  }
  .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--gap, 0.75rem);
  }
  .nav-list a {
    display: block;
    padding: 0.5rem 0;
    font-size: var(--font-size-base, 1rem);
    line-height: var(--line-height-base, 1.5);
    color: var(--link, #1a73e8);
    text-decoration: none;
    border-radius: var(--radius-sm, 4px);
    transition: color var(--anim-duration, 0.2s) var(--anim-ease, ease), background var(--anim-duration, 0.2s) var(--anim-ease, ease);
  }
  .nav-list a:hover {
    color: var(--link-hover, #0b5bbf);
    background: var(--btn-ghost-bg-hover, rgba(0,0,0,0.03));
  }
  @media (min-width: 768px) {
    .header-inner {
      justify-content: space-between;
    }
    .burger {
      display: flex;
    }
    .nav-menu {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      max-height: 0;
      overflow: hidden;
      padding: 0 var(--space-x, 1.5rem);
    }
    .nav-menu.open {
      max-height: 400px;
      padding: var(--space-y, 0.75rem) var(--space-x, 1.5rem);
    }
    .nav-list {
      flex-direction: column;
    }
  }

footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 3rem 1.5rem 1.5rem;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  .footer-brand {
    flex: 1 1 250px;
  }
  .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5a623;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  .footer-right {
    flex: 2 1 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #f5a623;
  }
  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  .footer-legal a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  .footer-legal a:hover {
    color: #f5a623;
  }
  .footer-contact {
    width: 100%;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    margin-top: 1rem;
  }
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
  }
  .contact-item {
    color: #e0e0e0;
    font-size: 0.95rem;
  }
  .contact-item a {
    color: #e0e0e0;
    text-decoration: none;
  }
  .contact-item a:hover {
    color: #f5a623;
    text-decoration: underline;
  }
  .footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  .disclaimer {
    font-size: 0.8rem;
    color: #999;
    max-width: 800px;
    margin: 0 auto 0.5rem;
    line-height: 1.4;
  }
  .copyright {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-legal {
      justify-content: center;
    }
    .contact-info {
      flex-direction: column;
      gap: 0.8rem;
    }
  }

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

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

    .nfcookie-v12__meta {display: flex; align-items: center; gap: 8px;}

    .nfcookie-v12__shell p {margin: 8px 0 0; color: var(--fg-on-surface-light);}

    .nfcookie-v12__actions {margin-top: 14px; display: flex; gap: 8px; flex-wrap: wrap;}

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

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

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