:root {
  --font-family: "Fira Sans", sans-serif;
  --font-size-base: 16.6px;
  --line-height-base: 1.46;

  --max-w: 1060px;
  --space-x: 1.34rem;
  --space-y: 1.09rem;
  --gap: 1.88rem;

  --radius-xl: 1.2rem;
  --radius-lg: 1rem;
  --radius-md: 0.61rem;
  --radius-sm: 0.3rem;

  --shadow-sm: 0 3px 7px rgba(0,0,0,0.13);
  --shadow-md: 0 12px 18px rgba(0,0,0,0.16);
  --shadow-lg: 0 34px 40px rgba(0,0,0,0.2);

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

  --brand: #000000;
  --brand-contrast: #FFFFFF;
  --accent: #FF6B00;
  --accent-contrast: #000000;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F5F5;
  --neutral-300: #D4D4D4;
  --neutral-600: #666666;
  --neutral-800: #262626;
  --neutral-900: #0A0A0A;

  --bg-page: #0A0A0A;
  --fg-on-page: #F5F5F5;

  --bg-alt: #111111;
  --fg-on-alt: #D4D4D4;

  --surface-1: #111111;
  --surface-2: #1A1A1A;
  --fg-on-surface: #F5F5F5;
  --border-on-surface: #262626;

  --surface-light: #1A1A1A;
  --fg-on-surface-light: #D4D4D4;
  --border-on-surface-light: #333333;

  --bg-primary: #FF6B00;
  --fg-on-primary: #000000;
  --bg-primary-hover: #FF8A33;
  --ring: #FF6B00;

  --bg-accent: rgba(255, 107, 0, 0.1);
  --fg-on-accent: #FF6B00;
  --bg-accent-hover: #FF8A33;

  --link: #FF6B00;
  --link-hover: #FF8A33;

  --gradient-hero: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 50%, #111111 100%);
  --gradient-accent: linear-gradient(90deg, #FF6B00 0%, #FF8A33 100%);

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

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

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

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

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .contact-link {
    color: var(--link);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .contact-link:hover {
    color: var(--link-hover);
  }

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

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

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    margin-right: var(--space-x);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 1000;
      padding-top: 4rem;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .main-nav.is-open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0 var(--space-x);
    }

    .nav-list a {
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .burger-menu {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .burger-menu.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

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

    .overlay.is-visible {
      display: block;
    }
  }

.site-footer {
        background-color: #0f172a;
        color: #cbd5e1;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #1e293b;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #60a5fa;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
        color: #93c5fd;
    }
    .footer-nav h4,
    .contact-block h4 {
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #60a5fa;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .legal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #cbd5e1;
        text-decoration: underline;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-block a {
        color: #60a5fa;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #94a3b8;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer a {
        color: #94a3b8;
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
    }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

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

    .hero--compact {
        min-height: 400px;
    }

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

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

    .hero--tint .hero__overlay {
        opacity: 0.55;
    }

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

    .hero--tint .hero__content {
        background: var(--chip-bg);
        border-radius: var(--radius-lg);
        border: 1px solid var(--btn-ghost-bg-hover);
    }

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

    .hero p {
        font-size: clamp(16px, 2.5vw, 20px);
        font-weight: 400;
        margin: 0 auto 0;
        max-width: 700px;
        color: var(--fg-on-surface-light);
    }

.next-fan-c5 {
        padding: clamp(3.6rem, 8vw, 6.2rem) var(--space-x);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

    .next-fan-c5__wrap {
        max-width: 58rem;
        margin: 0 auto;
        text-align: center;
    }

    .next-fan-c5__banner p {
        margin: 0;
    }

    .next-fan-c5__banner h2 {
        margin: .5rem 0 0;
        font-size: clamp(2.1rem, 4vw, 3.1rem);
    }

    .next-fan-c5__fan {
        margin-top: 1.15rem;
        display: flex;
        gap: .75rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .next-fan-c5__fan a {
        display: block;
        padding: .9rem 1rem;
        min-width: 10rem;
        border-radius: var(--radius-lg);
        background: var(--accent);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--accent-contrast);
        text-decoration: none;
    }

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
    }

    .next-fan-c5__tail {
        margin-top: 1rem;

    }

    .next-fan-c5__wrap > a {
        display: inline-flex;
        margin-top: 1rem;
        min-height: 2.85rem;
        align-items: center;
        justify-content: center;
        padding: 0 1rem;
        border-radius: 999px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        text-decoration: none;
    }

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

    .faq-layout-f .wrap {
        max-width: 980px;
        margin: 0 auto;
    }

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

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

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

    .faq-layout-f .table {
        display: grid;
        gap: 10px;
    }

    .faq-layout-f .line {
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 12px;
        padding: 12px;
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-md);
        background: var(--surface-1);
    }

    .faq-layout-f .q {
        font-weight: 600;
        color: var(--brand);
    }

    .faq-layout-f .a {
        color: var(--neutral-600);
    }

    @media (max-width: 780px) {
        .faq-layout-f .line {
            grid-template-columns: 1fr;
        }
    }

.plans-cv2 {
        padding: clamp(54px, 7vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

    .plans-cv2__head {
        margin-bottom: 16px;
    }

    .plans-cv2__head h2 {
        margin: 0;
        font-size: clamp(30px, 5vw, 48px);
    }

    .plans-cv2__head p {
        margin: 8px 0 0;
        opacity: .92;
    }

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

    .plans-cv2__card {
        border-radius: var(--radius-lg);
        border: 1px solid rgba(255, 255, 255, 0.28);
        background: rgba(255, 255, 255, 0.12);
        padding: var(--space-y) var(--space-x);
        transition: transform var(--anim-duration) var(--anim-ease), border-color var(--anim-duration) var(--anim-ease);
    }

    .plans-cv2__card.is-active {
        transform: translateY(-4px);
        border-color: var(--bg-accent);
    }

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

    .plans-cv2__line h3 {
        margin: 0;
    }

    .plans-cv2__line span {
        font-size: .82rem;
        padding: 4px 8px;
        border-radius: 999px;
        background: var(--chip-bg);
    }

    .plans-cv2__price {
        margin: 10px 0 8px;
        font-size: 1.45rem;
        font-weight: 800;
    }

    .plans-cv2__list p {
        margin: 0 0 6px;
        opacity: .92;
    }

    .plans-cv2__card button {
        width: 100%;
        margin-top: 8px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 9px 12px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.why-choose-light {
        background: var(--bg-page);
        color: var(--fg-on-page);
        padding: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
    }

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

    .why-choose-light .why-choose-light__h {
        text-align: center;
        margin-bottom: clamp(32px, 5vw, 64px);
        transform: translateY(20px);
    }

    .why-choose-light h2 {
        font-size: clamp(32px, 5vw, 48px);
        margin: 0 0 1rem;
        color: var(--fg-on-page);
    }

    .why-choose-light .why-choose-light__subtitle {
        font-size: clamp(16px, 2vw, 20px);
        margin: 0;
        color: var(--neutral-600);
    }

    .why-choose-light .why-choose-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: var(--gap);
    }

    .why-choose-light .why-choose-light__item {
        background: var(--surface-1);
        padding: clamp(20px, 3vw, 32px);
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-sm);
        transition: box-shadow var(--anim-duration) var(--anim-ease);
        transform: translateY(30px);
    }

    .why-choose-light .why-choose-light__item:hover {
        box-shadow: var(--shadow-md);
    }

    .why-choose-light .why-choose-light__icon {
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        margin-bottom: 1rem;
        font-size: 24px;
    }

    .why-choose-light .why-choose-light__item h3 {
        font-size: clamp(18px, 2.2vw, 22px);
        margin: 0 0 0.75rem;
        color: var(--fg-on-surface);
    }

    .why-choose-light .why-choose-light__item p {
        margin: 0;
        color: var(--neutral-600);
        line-height: var(--line-height-base);
    }

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

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

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

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .contact-link {
    color: var(--link);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .contact-link:hover {
    color: var(--link-hover);
  }

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

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

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    margin-right: var(--space-x);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 1000;
      padding-top: 4rem;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .main-nav.is-open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0 var(--space-x);
    }

    .nav-list a {
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .burger-menu {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .burger-menu.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

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

    .overlay.is-visible {
      display: block;
    }
  }

.site-footer {
        background-color: #0f172a;
        color: #cbd5e1;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #1e293b;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #60a5fa;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
        color: #93c5fd;
    }
    .footer-nav h4,
    .contact-block h4 {
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #60a5fa;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .legal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #cbd5e1;
        text-decoration: underline;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-block a {
        color: #60a5fa;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #94a3b8;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer a {
        color: #94a3b8;
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
    }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

.product-list {

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

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

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

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

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

    .product-list .product-list__filters {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
        margin-bottom: clamp(32px, 5vw, 48px);
        justify-content: center;
    }

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

    .product-list .product-list__filter {
        padding: 0.625rem 1.25rem;
        border-radius: var(--radius-lg);
        border: 2px solid rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
        color: var(--fg-on-primary);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        backdrop-filter: blur(8px);
        font-weight: 500;
    }

    .product-list .product-list__filter:hover {
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.5);
        transform: translateY(-2px);
    }

    .product-list .product-list__masonry {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: clamp(20px, 3vw, 32px);
        grid-auto-rows: auto;
    }

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

    .product-list .product-list__card {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        transition: all var(--anim-duration) var(--anim-ease);
        display: flex;
        flex-direction: column;
    }

    .product-list .product-list__card:hover {
        transform: translateY(-8px) scale(1.02);
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
        border-color: rgba(255, 255, 255, 0.4);
    }

    .product-list .product-list__image-wrapper {
        position: relative;
        width: 100%;
        height: 220px;
        overflow: hidden;
    }

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

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

    .product-list .product-list__badge {
        position: absolute;
        top: 12px;
        right: 12px;
        padding: 0.375rem 0.75rem;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border-radius: var(--radius-md);
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .product-list .product-list__content {
        padding: clamp(20px, 2.5vw, 28px);
        display: flex;
        flex-direction: column;
        flex: 1;
    }

    .product-list h3 {
        margin: 0 0 0.5rem;
        font-size: clamp(18px, 2.4vw, 22px);
        color: var(--fg-on-primary);
        font-weight: 600;
    }

    .product-list .product-list__description {
        color: rgba(255, 255, 255, 0.85);
        line-height: 1.6;
        margin: 0 0 1.25rem;
        font-size: 0.9rem;
        flex: 1;
    }

    .product-list .product-list__footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        margin-top: auto;
    }

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

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

    .product-list .product-list__btn:hover {
        background: rgba(255, 255, 255, 0.9);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

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

        .product-list .product-list__footer {
            flex-direction: column;
            align-items: stretch;
        }

        .product-list .product-list__btn {
            width: 100%;
            text-align: center;
        }
    }

.index-recommendations-list {
        background: var(--bg-alt);
        color: var(--fg-on-alt);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
    }

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

    .index-recommendations-list__h {
        text-align: center;
        margin-bottom: clamp(24px, 6vw, 52px);

        transform: translateY(-18px);
    }

    .index-recommendations-list__eyebrow {
        margin: 0 0 10px;
        text-transform: uppercase;
        letter-spacing: 0.22em;
        font-size: 12px;
        color: var(--neutral-600);
    }

    .index-recommendations-list__h h2 {
        margin: 0;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
        color: var(--fg-on-page);
    }

    .index-recommendations-list__list {
        display: grid;
        gap: 12px;
    }

    .index-recommendations-list__row {
        border-radius: var(--radius-lg);
        border: 1px solid var(--border-on-surface);
        background: var(--surface-light);
        box-shadow: var(--shadow-sm);
        overflow: hidden;

        transform: translateY(24px);
    }

    .index-recommendations-list__q {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        cursor: pointer;
        padding: 14px 16px;
        border: 0;
        background: transparent;
        color: var(--fg-on-page);
        font: inherit;
        text-align: left;
    }

    .index-recommendations-list__left {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        min-width: 0;
    }

    .index-recommendations-list__icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .index-recommendations-list__title {
        font-weight: 900;
        font-size: 14px;
        color: var(--fg-on-page);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 30ch;
    }

    .index-recommendations-list__right {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        flex: 0 0 auto;
    }

    .index-recommendations-list__tag {
        padding: 6px 10px;
        border-radius: 999px;
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        color: var(--neutral-800);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        white-space: nowrap;
    }

    .index-recommendations-list__chev {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 900;
        line-height: 1;
    }

    .index-recommendations-list__a {
        display: none;
        padding: 0 16px 14px;
        overflow: hidden;
    }

    .index-recommendations-list__a p {
        margin: 0;
        color: var(--fg-on-surface-light);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-list__actions {
        margin-top: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        flex-wrap: wrap;
    }

    .index-recommendations-list__hint {
        font-size: 12px;
        color: var(--neutral-600);
        text-transform: uppercase;
        letter-spacing: 0.18em;
    }

    .index-recommendations-list__cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        padding: 10px 14px;
        border-radius: 999px;
        background: var(--bg-primary);
        border: 1px solid var(--ring);
        color: var(--fg-on-primary);
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
    }

    .index-recommendations-list__cta::after {
        content: '->';
    }

    .index-recommendations-list__cta:hover {
        background: var(--bg-primary-hover);
    }

    @media (max-width: 560px) {
        .index-recommendations-list__tag {
            display: none;
        }
    }

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

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

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

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .contact-link {
    color: var(--link);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .contact-link:hover {
    color: var(--link-hover);
  }

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

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

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    margin-right: var(--space-x);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 1000;
      padding-top: 4rem;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .main-nav.is-open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0 var(--space-x);
    }

    .nav-list a {
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .burger-menu {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .burger-menu.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

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

    .overlay.is-visible {
      display: block;
    }
  }

.site-footer {
        background-color: #0f172a;
        color: #cbd5e1;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #1e293b;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #60a5fa;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
        color: #93c5fd;
    }
    .footer-nav h4,
    .contact-block h4 {
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #60a5fa;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .legal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #cbd5e1;
        text-decoration: underline;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-block a {
        color: #60a5fa;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #94a3b8;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer a {
        color: #94a3b8;
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
    }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

.product-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .contact-link {
    color: var(--link);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .contact-link:hover {
    color: var(--link-hover);
  }

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

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

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    margin-right: var(--space-x);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 1000;
      padding-top: 4rem;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .main-nav.is-open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0 var(--space-x);
    }

    .nav-list a {
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .burger-menu {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .burger-menu.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

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

    .overlay.is-visible {
      display: block;
    }
  }

.site-footer {
        background-color: #0f172a;
        color: #cbd5e1;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #1e293b;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #60a5fa;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
        color: #93c5fd;
    }
    .footer-nav h4,
    .contact-block h4 {
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #60a5fa;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .legal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #cbd5e1;
        text-decoration: underline;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-block a {
        color: #60a5fa;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #94a3b8;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer a {
        color: #94a3b8;
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
    }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

.product-item {

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

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

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

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

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

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

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

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

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

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

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

    .product-item .product-item__description ul {
        padding-left: 1.5rem;
        margin: 1rem 0;
    }

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

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

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

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

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

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

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

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

.features-struct-v1 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--surface-1);
        color: var(--fg-on-surface)
    }

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

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

    .features-struct-v1 .head {
        display: grid;
        gap: calc(var(--gap) * .35)
    }

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

    .features-struct-v1 article {
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .9rem;
        display: grid;
        gap: .5rem
    }

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

    .features-struct-v1 .layout {
        display: grid;
        grid-template-columns:.9fr 1.1fr;
        gap: var(--gap)
    }

    .features-struct-v1 .chips {
        display: flex;
        flex-wrap: wrap;
        gap: .4rem
    }

    .features-struct-v1 .chips span {
        padding: .3rem .55rem;
        border-radius: var(--radius-sm);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v1 .list {
        display: grid;
        gap: .6rem
    }

    .features-struct-v1 .list div {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    .features-struct-v1 .timeline {
        display: grid;
        gap: .7rem
    }

    .features-struct-v1 .timeline article {
        position: relative;
        padding-left: 1.2rem
    }

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

    .features-struct-v1 .side img, .features-struct-v1 .media img {
        display: block;
        width: 100%;
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-md)
    }

    .features-struct-v1 .table {
        display: grid;
        gap: .45rem
    }

    .features-struct-v1 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .5rem;
        padding: .65rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

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

    .features-struct-v1 .cta {
        display: flex;
        justify-content: flex-start
    }

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

    .features-struct-v1 details {
        padding: .75rem;
        border-radius: var(--radius-md);
        background: var(--surface-2);
        border: 1px solid var(--border-on-surface)
    }

    @media (max-width: 900px) {
        .features-struct-v1 .grid, .features-struct-v1 .cards {
            grid-template-columns:1fr 1fr
        }

        .features-struct-v1 .layout, .features-struct-v1 .split {
            grid-template-columns:1fr
        }
    }

    @media (max-width: 680px) {
        .features-struct-v1 .grid, .features-struct-v1 .cards, .features-struct-v1 .row {
            grid-template-columns:1fr
        }
    }

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

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

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

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .contact-link {
    color: var(--link);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .contact-link:hover {
    color: var(--link-hover);
  }

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

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

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    margin-right: var(--space-x);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 1000;
      padding-top: 4rem;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .main-nav.is-open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0 var(--space-x);
    }

    .nav-list a {
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .burger-menu {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .burger-menu.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

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

    .overlay.is-visible {
      display: block;
    }
  }

.site-footer {
        background-color: #0f172a;
        color: #cbd5e1;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #1e293b;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #60a5fa;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
        color: #93c5fd;
    }
    .footer-nav h4,
    .contact-block h4 {
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #60a5fa;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .legal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #cbd5e1;
        text-decoration: underline;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-block a {
        color: #60a5fa;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #94a3b8;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer a {
        color: #94a3b8;
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
    }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

.product-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.values-papers-l6 {
        padding: clamp(3.1rem, 7vw, 5.7rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

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

    .values-papers-l6__head {
        margin-bottom: 1.1rem;
    }

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

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

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

    .values-papers-l6__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px dashed var(--border-on-surface-light);
    }

    .values-papers-l6__grid div {
        font-size: 1.25rem;
    }

    .values-papers-l6__grid h3 {
        margin: .75rem 0 .35rem;
    }

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

    .values-papers-l6__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--neutral-800);
    }

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

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

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

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .contact-link {
    color: var(--link);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .contact-link:hover {
    color: var(--link-hover);
  }

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

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

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    margin-right: var(--space-x);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 1000;
      padding-top: 4rem;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .main-nav.is-open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0 var(--space-x);
    }

    .nav-list a {
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .burger-menu {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .burger-menu.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

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

    .overlay.is-visible {
      display: block;
    }
  }

.site-footer {
        background-color: #0f172a;
        color: #cbd5e1;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #1e293b;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #60a5fa;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
        color: #93c5fd;
    }
    .footer-nav h4,
    .contact-block h4 {
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #60a5fa;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .legal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #cbd5e1;
        text-decoration: underline;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-block a {
        color: #60a5fa;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #94a3b8;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer a {
        color: #94a3b8;
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
    }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

.checkout--colored-v5 {
    padding: 56px 20px;
    background: var(--neutral-900);
    color: var(--neutral-0);
}

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

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

.checkout__text {
    margin: 0 0 16px;
    color: var(--neutral-300);
    font-size: 0.95rem;
}

.checkout__summary {
    background: rgba(15,23,42,0.95);
    border-radius: var(--radius-xl);
    padding: 16px 18px;
    border: 1px solid rgba(148,163,184,0.6);
    display: grid;
    gap: 8px;
}

.checkout__row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.checkout__row--total {
    font-weight: 600;
    border-top: 1px solid rgba(75,85,99,0.9);
    padding-top: 8px;
    margin-top: 4px;
}

.checkout__button {
    margin-top: 8px;
    border: none;
    border-radius: var(--radius-lg);
    padding: 10px 18px;
    background: var(--bg-primary);
    color: var(--fg-on-primary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
}

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

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

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

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .contact-link {
    color: var(--link);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .contact-link:hover {
    color: var(--link-hover);
  }

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

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

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    margin-right: var(--space-x);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 1000;
      padding-top: 4rem;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .main-nav.is-open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0 var(--space-x);
    }

    .nav-list a {
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .burger-menu {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .burger-menu.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

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

    .overlay.is-visible {
      display: block;
    }
  }

.site-footer {
        background-color: #0f172a;
        color: #cbd5e1;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #1e293b;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #60a5fa;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
        color: #93c5fd;
    }
    .footer-nav h4,
    .contact-block h4 {
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #60a5fa;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .legal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #cbd5e1;
        text-decoration: underline;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-block a {
        color: #60a5fa;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #94a3b8;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer a {
        color: #94a3b8;
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
    }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

    .contact-layout-a .section-head p {
        margin: 10px auto 0;
        max-width: 70ch;
        opacity: .92;
    }

    .contact-layout-a .panel {
        background: rgba(255, 255, 255, .12);
        border: 1px solid rgba(255, 255, 255, .3);
        border-radius: var(--radius-lg);
        padding: 18px;
        backdrop-filter: blur(6px);
    }

    .contact-layout-a h3 {
        margin: 0 0 12px;
    }

    .contact-layout-a .list p {
        margin: 0 0 10px;
        display: grid;
        gap: 2px;
    }

    .contact-layout-a .list span {
        opacity: .94;
    }

    .contact-layout-a .social-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        align-items: center;
    }

    .contact-layout-a .social-row a {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fg-on-primary);
        border: 1px solid rgba(255, 255, 255, .4);
    }

    .contact-layout-a .social-row a:hover {
        background: rgba(255, 255, 255, .15);
    }

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

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

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

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

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .contact-link {
    color: var(--link);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .contact-link:hover {
    color: var(--link-hover);
  }

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

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

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    margin-right: var(--space-x);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 1000;
      padding-top: 4rem;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .main-nav.is-open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0 var(--space-x);
    }

    .nav-list a {
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .burger-menu {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .burger-menu.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

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

    .overlay.is-visible {
      display: block;
    }
  }

.site-footer {
        background-color: #0f172a;
        color: #cbd5e1;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #1e293b;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #60a5fa;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
        color: #93c5fd;
    }
    .footer-nav h4,
    .contact-block h4 {
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #60a5fa;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .legal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #cbd5e1;
        text-decoration: underline;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-block a {
        color: #60a5fa;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #94a3b8;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer a {
        color: #94a3b8;
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
    }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .contact-link {
    color: var(--link);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .contact-link:hover {
    color: var(--link-hover);
  }

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

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

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    margin-right: var(--space-x);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 1000;
      padding-top: 4rem;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .main-nav.is-open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0 var(--space-x);
    }

    .nav-list a {
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .burger-menu {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .burger-menu.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

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

    .overlay.is-visible {
      display: block;
    }
  }

.site-footer {
        background-color: #0f172a;
        color: #cbd5e1;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #1e293b;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #60a5fa;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
        color: #93c5fd;
    }
    .footer-nav h4,
    .contact-block h4 {
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #60a5fa;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .legal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #cbd5e1;
        text-decoration: underline;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-block a {
        color: #60a5fa;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #94a3b8;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer a {
        color: #94a3b8;
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
    }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .contact-link {
    color: var(--link);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .contact-link:hover {
    color: var(--link-hover);
  }

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

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

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    margin-right: var(--space-x);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 1000;
      padding-top: 4rem;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .main-nav.is-open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0 var(--space-x);
    }

    .nav-list a {
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .burger-menu {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .burger-menu.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

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

    .overlay.is-visible {
      display: block;
    }
  }

.site-footer {
        background-color: #0f172a;
        color: #cbd5e1;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #1e293b;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #60a5fa;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
        color: #93c5fd;
    }
    .footer-nav h4,
    .contact-block h4 {
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #60a5fa;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .legal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #cbd5e1;
        text-decoration: underline;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-block a {
        color: #60a5fa;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #94a3b8;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer a {
        color: #94a3b8;
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
    }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

.thank-mode-b {
        padding: clamp(58px, 10vw, 114px) 18px;
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .thank-mode-b .card {
        max-width: 760px;
        margin: 0 auto;
        text-align: center;
        border-radius: var(--radius-xl);
        padding: clamp(30px, 4vw, 46px);
        background: var(--surface-1);
        box-shadow: var(--shadow-lg);
    }

    .thank-mode-b h1 {
        margin: 0;
        font-size: clamp(32px, 5vw, 54px);
        color: var(--brand);
    }

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

    .thank-mode-b a {
        display: inline-block;
        margin-top: 18px;
        padding: 11px 18px;
        border-radius: var(--radius-sm);
        text-decoration: none;
        background: var(--bg-primary);
        color: var(--fg-on-primary);
    }

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

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

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

  .contact-cta {
    display: flex;
    align-items: center;
    gap: var(--gap);
  }

  .contact-link {
    color: var(--link);
    text-decoration: none;
    transition: color var(--anim-duration) var(--anim-ease);
  }

  .contact-link:hover {
    color: var(--link-hover);
  }

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

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

  .header-bottom {
    background-color: var(--surface-2);
    border-top: 1px solid var(--border-on-surface-light);
  }

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

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

  .nav-list li {
    flex: 0 1 auto;
  }

  .nav-list a {
    display: block;
    padding: 0.75rem 0;
    color: var(--fg-on-surface-light);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--anim-duration) var(--anim-ease);
    position: relative;
  }

  .nav-list a:hover {
    color: var(--link-hover);
  }

  .burger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 0;
    margin-right: var(--space-x);
  }

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

  @media (max-width: 767px) {
    .header-top {
      flex-wrap: wrap;
    }

    .header-bottom {
      display: flex;
      justify-content: flex-end;
      align-items: center;
      padding: 0;
    }

    .main-nav {
      position: fixed;
      top: 0;
      right: -100%;
      width: 70%;
      height: 100vh;
      background-color: var(--surface-1);
      box-shadow: var(--shadow-lg);
      transition: right var(--anim-duration) var(--anim-ease);
      z-index: 1000;
      padding-top: 4rem;
      overflow-y: auto;
      box-sizing: border-box;
    }

    .main-nav.is-open {
      right: 0;
    }

    .nav-list {
      flex-direction: column;
      gap: 0;
      padding: 0 var(--space-x);
    }

    .nav-list a {
      padding: 1rem 0;
      border-bottom: 1px solid var(--border-on-surface-light);
    }

    .burger-menu {
      display: flex;
      position: relative;
      z-index: 1001;
    }

    .burger-menu.is-open span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .burger-menu.is-open span:nth-child(2) {
      opacity: 0;
    }

    .burger-menu.is-open span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

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

    .overlay.is-visible {
      display: block;
    }
  }

.site-footer {
        background-color: #0f172a;
        color: #cbd5e1;
        padding: 3rem 1rem;
        font-family: system-ui, -apple-system, sans-serif;
        border-top: 1px solid #1e293b;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
    .footer-column {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }
    .logo {
        color: #ffffff;
        font-size: 1.8rem;
        font-weight: 700;
        margin: 0 0 0.75rem 0;
    }
    .offer {
        line-height: 1.6;
        font-size: 0.95rem;
        margin: 0;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #60a5fa;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        text-decoration: underline;
        color: #93c5fd;
    }
    .footer-nav h4,
    .contact-block h4 {
        color: #ffffff;
        margin-top: 0;
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    .footer-nav a {
        color: #cbd5e1;
        text-decoration: none;
        font-size: 0.95rem;
    }
    .footer-nav a:hover {
        color: #60a5fa;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 1rem;
    }
    .legal-links a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.85rem;
    }
    .legal-links a:hover {
        color: #cbd5e1;
        text-decoration: underline;
    }
    .contact-block address,
    .contact-block p {
        margin: 0.4rem 0;
        font-style: normal;
        line-height: 1.5;
        font-size: 0.95rem;
    }
    .contact-block a {
        color: #60a5fa;
        text-decoration: none;
    }
    .contact-block a:hover {
        text-decoration: underline;
    }
    .disclaimer {
        font-size: 0.8rem;
        line-height: 1.5;
        color: #94a3b8;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    .disclaimer a {
        color: #94a3b8;
        text-decoration: underline;
    }
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        margin: 0;
    }
    @media (max-width: 768px) {
        .footer-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-nav ul {
            flex-direction: row;
            flex-wrap: wrap;
            gap: 1.5rem;
        }
    }

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

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

    .cookie-lv16__meta {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .cookie-lv16__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--accent);
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 20%, transparent);
    }

    .cookie-lv16__shell p {
        margin: 8px 0 0;
        color: var(--fg-muted);
    }

    .cookie-lv16__actions {
        margin-top: 14px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

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