:root {
  --font-family: "IBM Plex Sans", sans-serif;
  --font-size-base: 15.1px;
  --line-height-base: 1.65;

  --max-w: 960px;
  --space-x: 1.05rem;
  --space-y: 1.5rem;
  --gap: 1.02rem;

  --radius-xl: 0.87rem;
  --radius-lg: 0.52rem;
  --radius-md: 0.44rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 10px rgba(0,0,0,0.1);
  --shadow-lg: 0 6px 22px rgba(0,0,0,0.12);

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

  --brand: #1A3C5E;
  --brand-contrast: #FFFFFF;
  --accent: #E67E22;
  --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: #1A3C5E;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #15304D;
  --ring: #1A3C5E;

  --bg-accent: #E67E22;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #D35400;

  --link: #1A3C5E;
  --link-hover: #E67E22;

  --gradient-hero: linear-gradient(135deg, #1A3C5E 0%, #2C5F7C 100%);
  --gradient-accent: linear-gradient(135deg, #E67E22 0%, #D35400 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;}

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 2px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

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

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

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

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 2px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .cta-button {
    display: none;
  }
}

/* Tablet and up: show CTA and horizontal nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item {
  margin: 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-item a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

    .nfcookie-v8__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-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

    .nfintro-v10__shell {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

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

    .nfintro-v10__subtitle {
        margin: 0;
        max-width: 58ch;
        color: var(--fg-on-surface-light);
    }

    .nfintro-v10__split {
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        gap: calc(var(--gap) * 1.4);
        align-items: start;
    }

    .nfintro-v10__desc {margin: 0; max-width: 60ch;}

    .nfintro-v10__actions {
        display: grid;
        gap: .7rem;
        justify-items: start;
    }

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

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

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

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

    .nfintro-v10__rail div {
        padding: 1rem var(--space-x);
        background: var(--surface-1);
        display: grid;
        gap: .3rem;
    }

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

    .nfintro-v10__rail strong {font-size: 1.05rem;}

    @media (max-width: 900px) {
        .nfintro-v10__split {grid-template-columns: 1fr;}
        .nfintro-v10__rail {grid-template-columns: repeat(2, minmax(0, 1fr));}
    }

.cta-struct-v5 {
        padding: calc(var(--space-y) * 1.9) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .faq-fresh-v3 .shell {
        max-width: 920px;
        margin: 0 auto;
        display: grid;
        gap: 1rem;
    }

    .faq-fresh-v3 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.3vw, 2.5rem);
    }

    .faq-fresh-v3 .list {
        display: grid;
        gap: var(--gap);
        padding: 0;
        margin: 0;
        counter-reset: faqnum;
    }

    .faq-fresh-v3 li {
        list-style: none;
        padding: 1rem 1rem 1rem 3rem;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        position: relative;
        background: var(--surface-2);
    }

    .faq-fresh-v3 li::before {
        counter-increment: faqnum;
        content: counter(faqnum);
        position: absolute;
        left: 1rem;
        top: 1rem;
        width: 1.4rem;
        height: 1.4rem;
        border-radius: 50%;
        display: grid;
        place-items: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-size: .78rem;
        font-weight: 700;
    }

    .faq-fresh-v3 h3 {
        margin: 0 0 .45rem;
    }

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

.about-struct-v5 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast)
    }

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

    .about-struct-v5 h2, .about-struct-v5 h3, .about-struct-v5 p {
        margin: 0
    }

    .about-struct-v5 .split, .about-struct-v5 .duo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .about-struct-v5 .split img, .about-struct-v5 .gallery img {
        display: block;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .about-struct-v5 .split img {
        aspect-ratio: 4/3
    }

    .about-struct-v5 .split div {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .cards {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v5 article, .about-struct-v5 .values div, .about-struct-v5 .facts div, .about-struct-v5 .quote, .about-struct-v5 .statement {
        background: var(--chip-bg);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

    .about-struct-v5 .timeline {
        display: grid;
        gap: .65rem
    }

    .about-struct-v5 .timeline article {
        position: relative;
        padding-left: 1.25rem
    }

    .about-struct-v5 .timeline article::before {
        content: "";
        position: absolute;
        left: 0;
        top: .55rem;
        width: .5rem;
        height: .5rem;
        background: var(--bg-accent);
        border-radius: 50%
    }

    .about-struct-v5 .values, .about-struct-v5 .facts {
        display: grid;
        gap: .6rem
    }

    .about-struct-v5 .gallery {
        display: grid;
        grid-template-columns:repeat(3, minmax(0, 1fr));
        gap: var(--gap)
    }

    .about-struct-v5 .gallery img {
        aspect-ratio: 1/1
    }

    .about-struct-v5 .statement {
        display: grid;
        gap: .5rem
    }

    .about-struct-v5 .actions {
        display: flex;
        flex-wrap: wrap;
        gap: .45rem
    }

    .about-struct-v5 .actions a {
        display: inline-flex;
        min-height: 2.4rem;
        padding: 0 .85rem;
        border-radius: var(--radius-sm);
        align-items: center;
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    @media (max-width: 900px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .about-struct-v5 .split, .about-struct-v5 .duo, .about-struct-v5 .cards, .about-struct-v5 .gallery {
            grid-template-columns:1fr
        }
    }

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

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

    .plans-lv2__head {
        margin-bottom: 14px;
    }

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

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

    .plans-lv2__range {
        margin-bottom: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 12px;
        display: grid;
        gap: 8px;
    }

    .plans-lv2__range label {
        font-weight: 700;
    }

    .plans-lv2__range input {
        width: 100%;
        accent-color: var(--bg-primary);
    }

    .plans-lv2__range span {
        color: var(--neutral-600);
    }

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

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

    .plans-lv2__grid h3 {
        margin: 0;
    }

    .plans-lv2__tier {
        margin: 5px 0 7px;
        color: var(--brand);
        font-weight: 700;
    }

    .plans-lv2__price {
        margin: 0 0 6px;
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--fg-on-page);
    }

    .plans-lv2__desc {
        margin: 0;
        color: var(--neutral-600);
    }

    .plans-lv2__grid ul {
        margin: 10px 0 0;
        padding-left: 18px;
        display: grid;
        gap: 5px;
        color: var(--neutral-800);
    }

    .plans-lv2__grid button {
        width: 100%;
        margin-top: 10px;
        border: 1px solid var(--bg-primary);
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: 9px 12px;
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 2px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

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

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

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

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 2px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .cta-button {
    display: none;
  }
}

/* Tablet and up: show CTA and horizontal nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item {
  margin: 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-item a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

    .nfcookie-v8__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-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.product-list {

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

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

    .product-list .product-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 4vw, 40px);
    }

    .product-list h1 {
        font-size: clamp(28px, 5vw, 48px);
        margin: 0 0 0.5rem;
        color: var(--fg-on-page);
        font-weight: 700;
    }

    .product-list .product-list__h p {
        font-size: clamp(16px, 2.2vw, 18px);
        color: var(--neutral-600);
        margin: 0;
    }

    .product-list .product-list__toolbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: clamp(24px, 4vw, 40px);
        gap: 1.5rem;
        flex-wrap: wrap;
    }

    .product-list .product-list__filters {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        flex: 1;
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__filters > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__filter {
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        border: 1px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 0.875rem;
    }

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

    .product-list .product-list__view-toggle {
        display: flex;
        gap: 0.5rem;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        padding: 0.25rem;
        background: var(--bg-page);
    }

    .product-list .product-list__view-btn {
        padding: 0.5rem 0.75rem;
        border: none;
        background: transparent;
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        border-radius: var(--radius-sm);
        font-size: 1.125rem;
    }

    .product-list .product-list__view-btn.active {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    .product-list .product-list__container {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: clamp(16px, 2.5vw, 24px);
    }

    /* Если randomNumber четное (2) - первый ребенок получает order: 2 */
    .product-list .product-list__container > *:first-child {
        order: calc((var(--random-number) % 2) * 2);
    }

    .product-list .product-list__card {
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: var(--shadow-sm);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

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

    .product-list .product-list__image-container {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        background: var(--bg-alt);
    }

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

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

    .product-list .product-list__overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.6);
        display: flex;
        align-items: center;
        justify-content: center;

        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__overlay {
        opacity: 1;
    }

    .product-list .product-list__quick-view {
        padding: 0.75rem 1.5rem;
        background: var(--bg-page);
        color: var(--fg-on-page);
        text-decoration: none;
        border-radius: var(--radius-md);
        font-weight: 600;
        transform: translateY(10px);
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .product-list .product-list__card:hover .product-list__quick-view {
        transform: translateY(0);
    }

    .product-list .product-list__content {
        padding: clamp(16px, 2vw, 20px);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        flex: 1;
    }

    .product-list .product-list__header {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .product-list h3 {
        margin: 0;
        font-size: clamp(16px, 2vw, 18px);
        color: var(--fg-on-page);
        font-weight: 600;
        flex: 1;
        line-height: 1.4;
    }

    .product-list .product-list__wishlist {
        width: 32px;
        height: 32px;
        border: 1px solid var(--ring);
        border-radius: 50%;
        background: var(--bg-page);
        color: var(--neutral-600);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .product-list .product-list__wishlist:hover {
        border-color: var(--bg-primary);
        color: var(--bg-primary);
        transform: scale(1.1);
    }

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

    .product-list .product-list__footer {
        display: flex;
        gap: 0.5rem;
        margin-top: auto;
    }

    .product-list .product-list__btn {
        flex: 1;
        padding: 0.625rem 1rem;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 600;
        font-size: 0.875rem;
        text-align: center;
    }

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

    .product-list .product-list__cart-btn {
        width: 40px;
        height: 40px;
        border: 1px solid var(--ring);
        border-radius: var(--radius-md);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-size: 1.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .product-list .product-list__cart-btn:hover {
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-color: var(--bg-primary);
        transform: scale(1.1);
    }

    @media (max-width: 767px) {
        .product-list .product-list__container {
            grid-template-columns: repeat(2, 1fr);
            gap: clamp(12px, 2vw, 16px);
        }

        .product-list .product-list__image-container {
            height: 160px;
        }
    }

.nftouch-v9 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: linear-gradient(160deg, var(--bg-primary), var(--bg-primary-hover));
        color: var(--fg-on-primary);
    }

    .nftouch-v9__wrap {
        max-width: 980px;
        margin: 0 auto;
    }

    .nftouch-v9__head {
        margin-bottom: 12px;
    }

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

    .nftouch-v9__head p {
        margin: 10px 0 0;
        opacity: .9;
    }

    .nftouch-v9__stream {
        display: grid;
        gap: 8px;
    }

    .nftouch-v9__stream a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: 999px;
        background: rgba(255, 255, 255, .1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .nftouch-v9__stream span {
        opacity: .86;
        white-space: nowrap;
    }

    .nftouch-v9__foot {
        margin-top: 12px;
    }

    .nftouch-v9__foot a {
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-md);
        padding: 10px 14px;
        display: inline-block;
    }

    @media (max-width: 700px) {
        .nftouch-v9__stream a {
            flex-direction: column;
            align-items: flex-start;
            border-radius: var(--radius-md);
        }

        .nftouch-v9__stream span {
            white-space: normal;
        }
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 2px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

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

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

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

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 2px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .cta-button {
    display: none;
  }
}

/* Tablet and up: show CTA and horizontal nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item {
  margin: 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-item a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

    .nfcookie-v8__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-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

    .product-item__inner h1 {
        margin: 0 0 4px;
        font-size: clamp(22px,3.5vw,28px);
    }

    .product-item__price {
        margin: 0 0 8px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--bg-primary);
    }

    .product-item__desc {
        margin: 0;
        font-size: 0.95rem;
        color: var(--neutral-700);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 2px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

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

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

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

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 2px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .cta-button {
    display: none;
  }
}

/* Tablet and up: show CTA and horizontal nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item {
  margin: 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-item a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

    .nfcookie-v8__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-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

    .product-item__inner h1 {
        margin: 0 0 4px;
        font-size: clamp(22px,3.5vw,28px);
    }

    .product-item__price {
        margin: 0 0 8px;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--bg-primary);
    }

    .product-item__desc {
        margin: 0;
        font-size: 0.95rem;
        color: var(--neutral-700);
    }

.clarifications-c2 {

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

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

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

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

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

    .clarifications-c2__rail {
        position: relative;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    /* Световой “луч” двигается постоянно */
    .clarifications-c2__beam {
        position: absolute;
        top: 0;
        left: 0;
        width: 48%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
        transform: translateX(-120%);
        animation: c2Beam 6.2s linear infinite;
        pointer-events: none;
    }

    @keyframes c2Beam {
        0% {
            transform: translateX(-120%)
        }
        55% {
            transform: translateX(160%)
        }
        100% {
            transform: translateX(160%)
        }
    }

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

    .clarifications-c2__row {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 12px;
        padding: 12px 14px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.14);
        border: 1px solid rgba(255, 255, 255, 0.12);
        transition: transform var(--anim-duration) var(--anim-ease), background var(--anim-duration) var(--anim-ease);
    }

    .clarifications-c2__row.is-hot {
        transform: translateY(-2px);
        background: rgba(255, 255, 255, 0.12);
    }

    .clarifications-c2__tag {
        align-self: start;
        padding: 8px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.16);
        font-weight: 800;
        white-space: nowrap;
        color: rgba(255, 255, 255, .92);
    }

    .clarifications-c2__q {
        font-weight: 900;
        letter-spacing: -.01em;
        margin-bottom: 6px;
    }

    .clarifications-c2__a {
        color: rgba(255, 255, 255, .82);
        line-height: var(--line-height-base);
    }

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

        .clarifications-c2__tag {
            justify-self: start
        }
    }

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

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 2px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

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

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

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

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 2px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .cta-button {
    display: none;
  }
}

/* Tablet and up: show CTA and horizontal nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item {
  margin: 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-item a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

    .nfcookie-v8__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-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.product-item--light-v6 {

    padding: 40px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

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

.product-item__inner h1 {
    margin: 0 0 4px;
    font-size: clamp(22px,3.5vw,28px);
}

.product-item__price {
    margin: 0 0 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-primary);
}

.product-item__desc {
    margin: 0;
    font-size: 0.95rem;
    color: var(--neutral-700);
}

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 2px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

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

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

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

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 2px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .cta-button {
    display: none;
  }
}

/* Tablet and up: show CTA and horizontal nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item {
  margin: 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-item a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

    .nfcookie-v8__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-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.checkout--light-v6 {

    padding: 48px 20px;
    background: var(--bg-page);
    color: var(--fg-on-page);
}

.checkout__inner {
    max-width: 480px;
    margin: 0 auto;
}

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

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

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 2px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

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

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

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

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 2px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .cta-button {
    display: none;
  }
}

/* Tablet and up: show CTA and horizontal nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item {
  margin: 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-item a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

    .nfcookie-v8__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-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

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

    .contacts-fresh-v5 .head p {
        margin: .35rem 0 0;
        opacity: .85;
    }

    .contacts-fresh-v5 .stack {
        display: grid;
        gap: .7rem;
    }

    .contacts-fresh-v5 details {
        background: var(--chip-bg);
        border-radius: var(--radius-md);
        padding: .8rem 1rem;
    }

    .contacts-fresh-v5 summary {
        cursor: pointer;
        font-weight: 700;
    }

    .contacts-fresh-v5 .inside {
        display: grid;
        gap: .4rem;
        padding-top: .6rem;
    }

    .contacts-fresh-v5 .inside p {
        margin: 0;
    }

    .contacts-fresh-v5 a {
        color: var(--accent);
        font-weight: 700;
        text-decoration: none;
    }

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

    .form-layout-b .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-b .split {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 16px;
    }

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

    .form-layout-b aside h3 {
        margin: 0;
    }

    .form-layout-b aside p {
        margin: 10px 0 0;
        opacity: .92;
    }

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

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

    .form-layout-b input, .form-layout-b textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

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

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

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 2px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

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

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

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

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 2px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .cta-button {
    display: none;
  }
}

/* Tablet and up: show CTA and horizontal nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item {
  margin: 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-item a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

    .nfcookie-v8__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-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

    .terms-layout-a .wrap {
        max-width: 920px;
        margin: 0 auto;
    }

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

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

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

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

    .terms-layout-a h3, .terms-layout-a h4 {
        margin: 0 0 8px;
    }

    .terms-layout-a p, .terms-layout-a li {
        color: var(--neutral-600);
    }

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 2px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

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

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

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

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 2px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .cta-button {
    display: none;
  }
}

/* Tablet and up: show CTA and horizontal nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item {
  margin: 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-item a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

    .nfcookie-v8__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-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 2px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

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

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

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

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 2px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .cta-button {
    display: none;
  }
}

/* Tablet and up: show CTA and horizontal nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item {
  margin: 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-item a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

    .nfcookie-v8__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-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

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

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

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

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

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

.site-header {
  background-color: var(--neutral-0);
  border-bottom: 2px solid var(--border-on-surface);
  padding: var(--space-y) var(--space-x);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

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

.nav-list a {
  text-decoration: none;
  color: var(--neutral-800);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
}

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

.cta-button {
  display: inline-block;
  background-color: var(--accent);
  color: var(--accent-contrast);
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  text-decoration: none;
  font-weight: 600;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  transition: background-color var(--anim-duration) var(--anim-ease), box-shadow var(--anim-duration) var(--anim-ease);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--bg-accent-hover);
  box-shadow: var(--shadow-md);
}

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

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

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

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

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--neutral-0);
    border-bottom: 2px solid var(--border-on-surface);
    box-shadow: var(--shadow-lg);
    padding: var(--space-y) var(--space-x);
    display: none;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
  }

  .cta-button {
    display: none;
  }
}

/* Tablet and up: show CTA and horizontal nav */
@media (min-width: 768px) {
  .nav-menu {
    display: flex !important;
    position: static;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
  }

  .nav-list {
    flex-direction: row;
  }
}

.site-footer {
  background-color: #1a1a2e;
  color: #e0e0e0;
  padding: 2rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}
.footer-left {
  flex: 1 1 250px;
}
.footer-right {
  flex: 2 1 400px;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.footer-brand {
  margin-bottom: 0.5rem;
}
.footer-logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0a500;
  text-decoration: none;
  letter-spacing: 1px;
}
.footer-logo:hover {
  color: #ffc107;
}
.footer-copyright {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #b0b0b0;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-nav a {
  color: #e0e0e0;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #f0a500;
}
.footer-policy {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.footer-policy a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-policy a:hover {
  color: #f0a500;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.contact-item {
  margin: 0;
}
.contact-item a {
  color: #e0e0e0;
  text-decoration: none;
}
.contact-item a:hover {
  color: #f0a500;
  text-decoration: underline;
}
.footer-disclaimer {
  font-size: 0.8rem;
  color: #999;
  border-top: 1px solid #333;
  padding-top: 0.8rem;
  margin-top: 0.5rem;
  font-style: italic;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .footer-left, .footer-right {
    flex: 1 1 auto;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-policy {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

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

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

    .nfcookie-v8 p {margin: 0; grid-column: 1 / 2; color: var(--fg-on-surface-light);}

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

    .nfcookie-v8__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-v8__actions button[data-choice='accept'] {
        background: var(--accent);
        color: var(--accent-contrast);
        border-color: transparent;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v8__wrap {grid-template-columns: 1fr;}
        .nfcookie-v8 p, .nfcookie-v8__actions {grid-column: auto; grid-row: auto;}
        .nfcookie-v8__actions {justify-content: flex-start;}
    }

.err-slab-e {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 14px, var(--neutral-0) 14px, var(--neutral-0) 28px);
        color: var(--fg-on-page);
    }

    .err-slab-e .inner {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(26px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .err-slab-e a {
        display: inline-block;
        margin-top: 16px;
        color: var(--link);
        text-decoration: none;
        border-bottom: 2px solid var(--link);
        padding-bottom: 2px;
    }