:root {
  --font-family: "DM Sans", sans-serif;
  --font-size-base: 15.7px;
  --line-height-base: 1.76;

  --max-w: 960px;
  --space-x: 1.47rem;
  --space-y: 1.5rem;
  --gap: 0.78rem;

  --radius-xl: 0.83rem;
  --radius-lg: 0.64rem;
  --radius-md: 0.34rem;
  --radius-sm: 0.28rem;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 2px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 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: #0077B6;
  --brand-contrast: #FFFFFF;
  --accent: #00B4D8;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F0F4F8;
  --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: #1E293B;

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

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

  --bg-primary: #0077B6;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #005F8A;
  --ring: #00B4D8;

  --bg-accent: #00B4D8;
  --fg-on-accent: #FFFFFF;
  --bg-accent-hover: #0096C7;

  --link: #0077B6;
  --link-hover: #005F8A;

  --gradient-hero: linear-gradient(135deg, #0077B6 0%, #00B4D8 100%);
  --gradient-accent: linear-gradient(135deg, #00B4D8 0%, #0096C7 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 {
  position: relative;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y) var(--space-x);
  }

  .burger-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
  }
}

footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #4fc3f7;
    text-decoration: none;
  }
  .logo:hover {
    color: #81d4fa;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #b0bec5;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .contact-info {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #90a4ae;
    font-style: italic;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .contact-info {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.intro-window-l9 {
        padding: clamp(3.7rem, 8vw, 6.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

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

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

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

    .intro-window-l9__copy h1 {
        margin: .6rem 0 0;
        font-size: clamp(2.4rem, 5vw, 4.2rem);
        line-height: 1.03;
    }

    .intro-window-l9__copy span {
        display: block;
        margin-top: .9rem;
        color: var(--neutral-600);
    }

    .intro-window-l9__links {
        margin-top: 1.1rem;
        display: flex;
        gap: .75rem;
        flex-wrap: wrap;
    }

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

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

    .intro-window-l9__media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        border: 1px solid var(--border-on-surface-light);
    }

    .intro-window-l9__mark {
        margin-top: .85rem;
        padding: .8rem .9rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .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: var(--neutral-900);
        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-v6 {
        padding: calc(var(--space-y) * 2.8) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

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

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

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

    .faq-fresh-v6 article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .faq-fresh-v6 h3 {
        margin: 0 0 .45rem;
        font-size: 1rem;
    }

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

    @media (max-width: 980px) {
        .faq-fresh-v6 .bands {
            grid-template-columns:repeat(2, minmax(0, 1fr));
        }
    }

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

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}.plans-ux6{padding:clamp(50px,7vw,92px) clamp(16px,4vw,36px);background:var(--gradient-hero);color:var(--fg-on-primary)}.plans-ux6__wrap{max-width:var(--max-w);margin:0 auto}.plans-ux6__top p{margin:8px 0 12px;color:rgba(255,255,255,.88)}.plans-ux6__matrix{display:grid;grid-template-columns:repeat(12,1fr);gap:10px}.plans-ux6__matrix article{grid-column:span 4;border:1px solid rgba(255,255,255,.28);border-radius:var(--radius-md);background:rgba(255,255,255,.1);padding:12px}.plans-ux6__matrix article:nth-child(1){grid-column:span 6}.plans-ux6__matrix article:nth-child(2){grid-column:span 6}.plans-ux6 h3{margin:0}.plans-ux6 p{margin:7px 0}.plans-ux6 span{display:inline-flex;margin:0 6px 6px 0;padding:4px 8px;border-radius:999px;border:1px solid rgba(255,255,255,.3)}.plans-ux6 button{width:100%;margin-top:8px;border:0;border-radius:var(--radius-sm);padding:8px 10px;background:var(--bg-accent);color:var(--fg-on-accent)}@media(max-width:900px){.plans-ux6__matrix article{grid-column:span 6}}@media(max-width:640px){.plans-ux6__matrix article{grid-column:span 12}}

.why-choose {

        padding: clamp(16px, 3vw, 44px);
    }

    .why-choose--light.why-choose--v2 {
        background: var(--fg-on-primary);
        color: var(--bg-primary);
    }

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

    .why-choose__wrap {
        border-radius: var(--radius-xl);
        padding: clamp(16px, 2.6vw, 26px);
        background: var(--bg-alt);
        border: 1px solid var(--neutral-300);
        box-shadow: var(--shadow-md);
    }

    .why-choose__h {
        margin-bottom: clamp(14px, 2vw, 22px);
    }

    .why-choose__pill {
        display: inline-flex;
        padding: 7px 12px;
        border-radius: 999px;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-sm);
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(24px, 4.2vw, 40px);
        line-height: 1.1;
        color: var(--bg-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: var(--neutral-600);
        max-width: 70ch;
    }

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

    .why-choose__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transform: perspective(900px) rotateX(0) rotateY(0) translateY(0);
        transition: transform 180ms var(--anim-ease),
        box-shadow 180ms var(--anim-ease),
        border-color 180ms var(--anim-ease);
        will-change: transform;
        position: relative;
    }

    .why-choose__cardHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: rgba(0, 0, 0, 0.03);
        border-bottom: 1px solid var(--border-on-surface);
    }

    .why-choose__num {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        display: grid;
        place-items: center;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        font-weight: 700;
    }

    .why-choose__mini {
        color: var(--neutral-600);
        font-size: 0.9rem;
    }

    .why-choose__cardBody {
        padding: 14px 16px;
    }

    .why-choose__cardTitle {
        margin: 0 0 8px;
        color: var(--bg-primary);
        font-size: clamp(18px, 2.2vw, 20px);
    }

    .why-choose__cardText {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

    @media (max-width: 860px) {
        .why-choose__card {
            grid-column: span 12;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .why-choose__card {
            transition: none;
            transform: none;
        }
    }

.site-header {
  position: relative;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y) var(--space-x);
  }

  .burger-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
  }
}

footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #4fc3f7;
    text-decoration: none;
  }
  .logo:hover {
    color: #81d4fa;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #b0bec5;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .contact-info {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #90a4ae;
    font-style: italic;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .contact-info {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.product-list--colored-v5 {

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

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

.product-list__header {
    text-align: center;
    margin-bottom: 24px;
}

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

.product-list__header p {
    margin: 0;
    color: var(--neutral-300);
}

.product-list__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px,1fr));
    gap: 14px;
}

.product-list__card {
    border-radius: var(--radius-xl);
    padding: var(--space-y);
    background: rgba(15,23,42,0.96);
    border: 1px solid rgba(148,163,184,0.7);
}

.product-list__card--bestseller {
    border-color: var(--accent);
}
.product-list__card--limited {
    border-color: var(--accent);
}
.product-list__card--new {
    border-color: var(--bg-primary);
}

.product-list__name {
    margin: 0 0 4px;
    font-size: 0.95rem;
}

.product-list__note {
    margin: 0;
    font-size: 0.9rem;
    color: var(--neutral-100);
}

.nftouch-v10 {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 3vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

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

    .nftouch-v10__head {
        margin-bottom: 14px;
    }

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

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

    .nftouch-v10__cols {
        display: grid;
        grid-template-columns: 1.2fr .8fr;
        gap: 12px;
    }

    .nftouch-v10__left,
    .nftouch-v10__right {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        padding: 12px;
    }

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

    .nftouch-v10__left article {
        padding: 8px 0;
        border-bottom: 1px solid var(--border-on-surface-light);
        display: grid;
        gap: 6px;
    }

    .nftouch-v10__left article:last-child {
        border-bottom: 0;
    }

    .nftouch-v10__left h3 {
        margin: 0;
    }

    .nftouch-v10__left span {
        color: var(--neutral-600);
    }

    .nftouch-v10__left a {
        color: var(--link);
        text-decoration: none;
    }

    .nftouch-v10__right img {
        width: 100%;
        border-radius: var(--radius-md);
        border: 1px solid var(--border-on-surface-light);
    }

    .nftouch-v10__right a {
        display: inline-block;
        margin-top: 10px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: var(--radius-md);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

    @media (max-width: 860px) {
        .nftouch-v10__cols {
            grid-template-columns: 1fr;
        }
    }

.site-header {
  position: relative;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y) var(--space-x);
  }

  .burger-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
  }
}

footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #4fc3f7;
    text-decoration: none;
  }
  .logo:hover {
    color: #81d4fa;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #b0bec5;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .contact-info {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #90a4ae;
    font-style: italic;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .contact-info {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.product-item--colored-v5 {

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

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

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

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

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

.site-header {
  position: relative;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y) var(--space-x);
  }

  .burger-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
  }
}

footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #4fc3f7;
    text-decoration: none;
  }
  .logo:hover {
    color: #81d4fa;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #b0bec5;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .contact-info {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #90a4ae;
    font-style: italic;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .contact-info {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.product-item--colored-v5 {

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

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

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

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

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

body{margin:0;padding:0;font-family:var(--font-family);box-sizing: border-box;}
    *{box-sizing:border-box;}

    .clarifications-l2 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--neutral-100);
        color: var(--neutral-900);
    }

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

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

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

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

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

    /* permanent scan */
    .clarifications-l2__scan {
        position: absolute;
        left: 0;
        top: -40%;
        width: 100%;
        height: 42%;
        background: linear-gradient(180deg, transparent, rgba(0, 86, 179, 0.08), transparent);
        animation: l2Scan 4.8s linear infinite;
        pointer-events: none;
    }

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

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

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

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

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

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

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

    /* JS adds floating highlight for active row */
    .clarifications-l2__row.is-focus {
        border-color: rgba(255, 107, 53, 0.45);
        box-shadow: 0 0 0 6px rgba(255, 107, 53, 0.08);
    }

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

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

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

.site-header {
  position: relative;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y) var(--space-x);
  }

  .burger-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
  }
}

footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #4fc3f7;
    text-decoration: none;
  }
  .logo:hover {
    color: #81d4fa;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #b0bec5;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .contact-info {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #90a4ae;
    font-style: italic;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .contact-info {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.product-item--colored-v5 {

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

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

.product-item__card {
    background: rgba(15,23,42,0.98);
    border-radius: var(--radius-xl);
    padding: 20px 22px;
    border: 1px solid rgba(148,163,184,0.75);
    box-shadow: var(--shadow-lg);
}

.product-item__header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: baseline;
    margin-bottom: 8px;
}

.product-item__header h1 {
    margin: 0;
    font-size: clamp(22px,3.5vw,28px);
    color: var(--brand-contrast);
}

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

.product-item__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--neutral-300);
}

.product-item__badge {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--accent);
    color: var(--fg-on-accent);
}

.product-item__sku {
    opacity: 0.9;
}

.values-grid-l2 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .values-grid-l2__head {
        margin-bottom: 1.1rem;
    }

    .values-grid-l2__head p {
        margin: 0;
        color: var(--brand);
        font-size: .82rem;
        text-transform: uppercase;
        letter-spacing: .1em;
    }

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

    .values-grid-l2__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
        gap: var(--gap);
    }

    .values-grid-l2__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--bg-alt);
        border: 1px solid var(--border-on-surface-light);
    }

    .values-grid-l2__grid i {
        font-style: normal;
    }

    .values-grid-l2__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

    .values-grid-l2__grid span {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

.site-header {
  position: relative;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y) var(--space-x);
  }

  .burger-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
  }
}

footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #4fc3f7;
    text-decoration: none;
  }
  .logo:hover {
    color: #81d4fa;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #b0bec5;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .contact-info {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #90a4ae;
    font-style: italic;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .contact-info {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.checkout {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        outline: none;
    }

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

    .checkout .checkout__form button {
        padding: 1rem 2rem;
        border-radius: var(--radius-lg);
        border: none;
        background: var(--bg-primary);
        color: var(--fg-on-page) fff;
        font-weight: 600;
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
    }

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

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

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

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

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

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

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-layout-c .social-bar a:hover {
        transform: translateY(-2px);
    }

.site-header {
  position: relative;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y) var(--space-x);
  }

  .burger-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
  }
}

footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #4fc3f7;
    text-decoration: none;
  }
  .logo:hover {
    color: #81d4fa;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #b0bec5;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .contact-info {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #90a4ae;
    font-style: italic;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .contact-info {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.form-fresh-v6 {
        padding: calc(var(--space-y) * 2.9) var(--space-x);
        background: var(--surface-2);
        color: var(--fg-on-surface);
    }

    .form-fresh-v6 .shell {
        max-width: 900px;
        margin: 0 auto;
        display: grid;
        gap: var(--gap);
    }

    .form-fresh-v6 h2 {
        margin: 0;
        font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    }

    .form-fresh-v6 form {
        display: grid;
        gap: .85rem;
    }

    .form-fresh-v6 .rows {
        display: grid;
        gap: .6rem;
    }

    .form-fresh-v6 label {
        display: grid;
        grid-template-columns:180px 1fr;
        gap: .8rem;
        align-items: center;
        padding: .6rem .8rem;
        border-radius: var(--radius-sm);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-1);
    }

    .form-fresh-v6 b {
        font-size: .9rem;
    }

    .form-fresh-v6 input {
        padding: .58rem .7rem;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-sm);
        font: inherit;
    }

    .form-fresh-v6 button {
        justify-self: start;
        padding: .68rem 1rem;
        border: 0;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        font-weight: 700;
        cursor: pointer;
    }

    @media (max-width: 720px) {
        .form-fresh-v6 label {
            grid-template-columns:1fr;
        }
    }

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

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

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

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

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

    .contact-layout-c .stack {
        border-left: 3px solid var(--brand);
        padding-left: 16px;
        display: grid;
        gap: 12px;
    }

    .contact-layout-c .line h3 {
        margin: 0;
        font-size: 1rem;
        color: var(--brand);
    }

    .contact-layout-c .line p {
        margin: 4px 0 0;
    }

    .contact-layout-c .social-bar {
        margin-top: 18px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }

    .contact-layout-c .social-bar a {
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-sm);
        padding: 7px 11px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .contact-layout-c .social-bar a:hover {
        transform: translateY(-2px);
    }

.site-header {
  position: relative;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y) var(--space-x);
  }

  .burger-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
  }
}

footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #4fc3f7;
    text-decoration: none;
  }
  .logo:hover {
    color: #81d4fa;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #b0bec5;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .contact-info {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #90a4ae;
    font-style: italic;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .contact-info {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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

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

    .terms-layout-c summary {
        cursor: pointer;
        color: var(--brand);
        font-weight: 700;
    }

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

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

.site-header {
  position: relative;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y) var(--space-x);
  }

  .burger-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
  }
}

footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #4fc3f7;
    text-decoration: none;
  }
  .logo:hover {
    color: #81d4fa;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #b0bec5;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .contact-info {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #90a4ae;
    font-style: italic;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .contact-info {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.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 {
  position: relative;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y) var(--space-x);
  }

  .burger-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
  }
}

footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #4fc3f7;
    text-decoration: none;
  }
  .logo:hover {
    color: #81d4fa;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #b0bec5;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .contact-info {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #90a4ae;
    font-style: italic;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .contact-info {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

.thank-mode-e {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: repeating-linear-gradient(135deg, var(--bg-alt), var(--bg-alt) 16px, var(--neutral-0) 16px, var(--neutral-0) 32px);
        color: var(--fg-on-page);
    }

    .thank-mode-e .wrap {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
        padding: clamp(28px, 4vw, 42px);
        background: var(--surface-1);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md);
    }

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

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

    .thank-mode-e a {
        display: inline-block;
        margin-top: 16px;
        padding: 9px 14px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        color: var(--fg-on-page);
    }

.site-header {
  position: relative;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-sm);
  padding: var(--space-y) var(--space-x);
  max-width: var(--max-w);
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: calc(var(--font-size-base) * 1.5);
  font-weight: 700;
  color: var(--brand);
  text-decoration: none;
  letter-spacing: 0.02em;
}

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

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

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

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

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

.nav-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: var(--surface-1);
  box-shadow: var(--shadow-md);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  overflow: hidden;
  max-height: 0;
  transition: max-height var(--anim-duration) var(--anim-ease);
}

.nav-menu.open {
  max-height: 400px;
}

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

.nav-link {
  display: block;
  padding: 0.5rem 0;
  color: var(--neutral-800);
  text-decoration: none;
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  border-bottom: 2px solid transparent;
  transition: color var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
}

.nav-link:hover,
.nav-link:focus {
  color: var(--brand);
  border-bottom-color: var(--brand);
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-y) var(--space-x);
  }

  .burger-btn {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
  }

  .nav-menu.open {
    max-height: 400px;
  }

  .nav-list {
    flex-direction: column;
    gap: var(--gap);
  }
}

footer {
    background-color: #1a2a3a;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  .footer-left {
    flex: 1 1 300px;
  }
  .footer-right {
    flex: 1 1 400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .logo {
    font-size: 1.8em;
    font-weight: bold;
    color: #4fc3f7;
    text-decoration: none;
  }
  .logo:hover {
    color: #81d4fa;
  }
  .copyright {
    margin-top: 10px;
    font-size: 0.9em;
    color: #b0bec5;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s;
  }
  .footer-nav a:hover {
    color: #4fc3f7;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-links a {
    color: #b0bec5;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s;
  }
  .footer-links a:hover {
    color: #4fc3f7;
  }
  .contact-info {
    background-color: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 5px;
  }
  .contact-info p {
    margin: 5px 0;
    font-size: 0.95em;
  }
  .contact-info a {
    color: #4fc3f7;
    text-decoration: none;
  }
  .contact-info a:hover {
    text-decoration: underline;
  }
  .disclaimer {
    font-size: 0.8em;
    color: #90a4ae;
    font-style: italic;
    border-top: 1px solid #37474f;
    padding-top: 15px;
    margin-top: 10px;
  }
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .footer-nav ul {
      justify-content: center;
    }
    .footer-links {
      justify-content: center;
    }
    .contact-info {
      text-align: center;
    }
  }

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

    .nfcookie-v11__card {
        margin-left: auto;
        max-width: 440px;
        border-radius: var(--radius-xl);
        padding: var(--space-y) var(--space-x);
        background: radial-gradient(circle at top right, rgba(99, 102, 241, .45), rgba(17, 24, 39, .95));
        color: var(--neutral-100);
        box-shadow: var(--shadow-lg);
        border: 1px solid rgba(148, 163, 184, .35);
    }

    .nfcookie-v11__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .nfcookie-v11__top strong {font-size: 16px;}

    .nfcookie-v11__top button {
        border: 0;
        background: transparent;
        color: #c7d2fe;
        text-decoration: underline;
        text-underline-offset: 2px;
        font-size: 13px;
        cursor: pointer;
    }

    .nfcookie-v11 p {margin: 10px 0 0; color: #d1d5db;}

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

    .nfcookie-v11__actions button {
        flex: 1;
        border-radius: var(--radius-sm);
        border: 1px solid rgba(148, 163, 184, .45);
        padding: 9px 12px;
        color: #e5e7eb;
        background: rgba(51, 65, 85, .65);
        cursor: pointer;
    }

    .nfcookie-v11__actions button[data-choice='accept'] {
        background: #22c55e;
        border-color: transparent;
        color: #06290e;
        font-weight: 700;
    }

    @media (max-width: 760px) {
        .nfcookie-v11__card {max-width: none;}
    }

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

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

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

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

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