:root {
  --font-family: "Archivo", sans-serif;
  --font-size-base: 15.7px;
  --line-height-base: 1.55;

  --max-w: 1080px;
  --space-x: 1.34rem;
  --space-y: 1.17rem;
  --gap: 0.78rem;

  --radius-xl: 1.01rem;
  --radius-lg: 0.81rem;
  --radius-md: 0.38rem;
  --radius-sm: 0.26rem;

  --shadow-sm: 0 2px 4px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 14px rgba(0,0,0,0.15);
  --shadow-lg: 0 16px 24px rgba(0,0,0,0.19);

  --overlay: rgba(0, 0, 0, 0.5);
  --anim-duration: 210ms;
  --anim-ease: cubic-bezier(0.22,1,0.36,1);
  --random-number: 2;

  --brand: #0056b3;
  --brand-contrast: #ffffff;
  --accent: #ff7a00;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8f9fa;
  --neutral-300: #dee2e6;
  --neutral-600: #6c757d;
  --neutral-800: #343a40;
  --neutral-900: #212529;

  --bg-page: #ffffff;
  --fg-on-page: #212529;

  --bg-alt: #f8f9fa;
  --fg-on-alt: #343a40;

  --surface-1: #ffffff;
  --surface-2: #f8f9fa;
  --fg-on-surface: #212529;
  --border-on-surface: #dee2e6;

  --surface-light: #ffffff;
  --fg-on-surface-light: #343a40;
  --border-on-surface-light: #dee2e6;

  --bg-primary: #0056b3;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #004494;
  --ring: #0056b3;

  --bg-accent: #fff4e6;
  --fg-on-accent: #663d00;
  --bg-accent-hover: #ff8c1a;

  --link: #0056b3;
  --link-hover: #004494;

  --gradient-hero: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
  --gradient-accent: linear-gradient(135deg, #ff7a00 0%, #e56b00 100%);

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

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) * 0.75);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.is-open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        background-color: var(--btn-ghost-bg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ced4da;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
  }
  .footer-copyright {
    flex: 1;
    min-width: 200px;
  }
  .footer-legal {
    flex: 2;
    min-width: 250px;
    text-align: center;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #495057;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex: 100%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1rem;
    color: #868e96;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-copyright {
      order: 1;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.intro-focus-alt {

        background: var(--bg-primary);
        color: var(--fg-on-primary);
        padding: clamp(60px, 10vw, 120px) clamp(16px, 3vw, 40px);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: var(--accent);
        border-radius: 50%;
        opacity: 0.1;
        filter: blur(80px);
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% {
            transform: scale(1);
            opacity: 0.1;
        }
        50% {
            transform: scale(1.2);
            opacity: 0.15;
        }
    }

    .intro-focus-alt .intro-focus-alt__c {
        max-width: var(--max-w);
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    .intro-focus-alt .intro-focus-alt__grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: clamp(32px, 5vw, 64px);
        align-items: center;
    }

    @media (min-width: 768px) {
        .intro-focus-alt .intro-focus-alt__grid {
            grid-template-columns: 1.2fr 1fr;
        }
    }

    .intro-focus-alt .intro-focus-alt__visual {
        order: var(--random-number);
    }

    .intro-focus-alt .intro-focus-alt__title {
        font-size: clamp(32px, 6vw, 56px);
        font-weight: 800;
        margin: 0 0 1.5rem;
        line-height: 1.1;
        position: relative;
    }

    .intro-focus-alt .intro-focus-alt__title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 0;
        width: 80px;
        height: 4px;
        background: var(--accent);
        border-radius: var(--radius-sm);
        animation: expandLine 1s ease-out 0.8s forwards;
        transform: scaleX(0);
        transform-origin: left;
    }

    @keyframes expandLine {
        to {
            transform: scaleX(1);
        }
    }

    .intro-focus-alt .intro-focus-alt__description {
        font-size: clamp(16px, 2vw, 20px);
        margin: 2rem 0 0;
        opacity: 0.9;
        line-height: var(--line-height-base);
    }

    .intro-focus-alt .intro-focus-alt__card {
        background: var(--brand-contrast);
        padding: clamp(32px, 4vw, 48px);
        border-radius: var(--radius-xl);
        text-align: center;
        box-shadow: var(--shadow-lg);
        position: relative;
        overflow: hidden;
    }

    .intro-focus-alt .intro-focus-alt__card::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: shimmer 3s infinite;
    }

    @keyframes shimmer {
        to {
            left: 100%;
        }
    }

    .intro-focus-alt .intro-focus-alt__icon {
        color: var(--fg-on-surface-light);
        font-size: clamp(48px, 6vw, 64px);
        margin-bottom: 1rem;
    }

    .intro-focus-alt .intro-focus-alt__fact {
        font-size: clamp(40px, 6vw, 56px);
        font-weight: 900;
        color: var(--brand);
        margin-bottom: 0.5rem;
        line-height: 1;
    }

    .intro-focus-alt .intro-focus-alt__caption {
        font-size: clamp(14px, 1.5vw, 18px);
        color: var(--neutral-600);
        font-weight: 600;
    }

.next-dock {
        padding: clamp(60px, 9vw, 108px) clamp(16px, 3vw, 36px);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .next-dock .wrap {
        max-width: 880px;
        margin: 0 auto;
    }

    .next-dock .header {
        margin-bottom: 12px;
    }

    .next-dock .header p {
        margin: 0 0 8px;
        color: var(--neutral-600);
    }

    .next-dock h2 {
        margin: 0 0 8px;
        font-size: clamp(30px, 4vw, 42px);
    }

    .next-dock nav {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .next-dock nav a {
        text-decoration: none;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        color: var(--fg-on-page);
        padding: 10px 14px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: transform var(--anim-duration) var(--anim-ease);
    }

    .next-dock nav a:hover {
        transform: translateY(-2px);
    }

.why-choose {

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

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

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

    .why-choose__top {
        display: grid;
        grid-template-columns:1.35fr 0.65fr;
        gap: clamp(14px, 2vw, 20px);
        align-items: start;
        margin-bottom: clamp(14px, 2.4vw, 26px);
    }

    .why-choose__title {
        margin: 0;
        font-size: clamp(26px, 4.6vw, 42px);
        line-height: 1.1;
        color: var(--fg-on-primary);
        letter-spacing: -0.02em;
    }

    .why-choose__subtitle {
        margin: 10px 0 0;
        color: rgba(255, 255, 255, 0.8);
        max-width: 68ch;
    }

    .why-choose__stats {
        display: grid;
        gap: 12px;
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.16);
        box-shadow: var(--shadow-md);
    }

    .why-choose__statValue {
        font-size: clamp(20px, 2.8vw, 28px);
        font-weight: 700;
        color: var(--fg-on-primary);
    }

    .why-choose__statLabel {
        margin-top: 4px;
        color: rgba(255, 255, 255, 0.78);
        font-size: 0.9rem;
    }

    .why-choose__list {
        display: grid;
        gap: 12px;
    }

    .why-choose__row {
        position: relative;
        display: grid;
        grid-template-columns:18px 1fr;
        gap: 12px;
        padding: clamp(14px, 2vw, 18px);
        border-radius: var(--radius-xl);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.14);
        box-shadow: var(--shadow-sm);
        overflow: hidden;
        transition: transform var(--anim-duration) var(--anim-ease);
        will-change: transform;
    }

    .why-choose__row:hover {
        transform: translateY(-3px);
    }

    /* SHIMMER SWEEP */
    .why-choose__row::after {
        content: '';
        position: absolute;
        inset: -40px -60px;
        transform: translateX(-120%) rotate(12deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);

        pointer-events: none;
    }

    .why-choose__row:hover::after {
        opacity: 1;
        animation: whyChooseShimmer 900ms var(--anim-ease) 1;
    }

    @keyframes whyChooseShimmer {
        0% {
            transform: translateX(-120%) rotate(12deg);
        }
        100% {
            transform: translateX(120%) rotate(12deg);
        }
    }

    .why-choose__bullet {
        width: 12px;
        height: 12px;
        border-radius: 999px;
        margin-top: 6px;
        background: var(--accent);
        box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.12);
    }

    .why-choose__rowTitle {
        font-weight: 700;
        color: var(--fg-on-primary);
        margin-bottom: 6px;
    }

    .why-choose__rowText {
        color: rgba(255, 255, 255, 0.78);
        line-height: var(--line-height-base);
    }

    @media (max-width: 920px) {
        .why-choose__top {
            grid-template-columns:1fr;
        }
    }

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

        .why-choose__row::after {
            display: none;
        }
    }

.social-l2 {

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

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

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

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

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

    .social-l2__wrap {
        border-radius: var(--radius-xl);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
    }

    .social-l2__quoteBox {
        padding: 18px;
        border-bottom: 1px solid var(--border-on-surface);
        position: relative;
    }

    .social-l2__quote {
        display: none;
    }

    .social-l2__quote.is-on {
        display: block;
    }

    .social-l2__q {
        font-size: clamp(16px, 2.2vw, 20px);
        line-height: 1.7;
        color: var(--fg-on-page);
        letter-spacing: -.01em;
    }

    .social-l2__m {
        margin-top: 12px;
        color: var(--neutral-600);
        font-weight: 800;
    }

    .social-l2__badges {
        overflow: hidden;
        background: var(--bg-alt);
    }

    .social-l2__badgeTrack {
        display: flex;
        gap: 10px;
        padding: 12px;
        width: max-content;
        animation: socialL2Badges 16s linear infinite;
    }

    @keyframes socialL2Badges {
        0% {
            transform: translateX(0)
        }
        100% {
            transform: translateX(-50%)
        }
    }

    .social-l2__badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 12px;
        border-radius: 999px;
        background: var(--bg-accent);
        color: var(--fg-on-accent);
        border: 1px solid rgba(0, 0, 0, 0.06);
        font-weight: 900;
        white-space: nowrap;
    }

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

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) * 0.75);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.is-open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        background-color: var(--btn-ghost-bg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ced4da;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
  }
  .footer-copyright {
    flex: 1;
    min-width: 200px;
  }
  .footer-legal {
    flex: 2;
    min-width: 250px;
    text-align: center;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #495057;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex: 100%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1rem;
    color: #868e96;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-copyright {
      order: 1;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.product-list--colored-v5 {

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

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

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

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

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

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

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

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

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

.product-list__price {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
}

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

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) * 0.75);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.is-open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        background-color: var(--btn-ghost-bg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ced4da;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
  }
  .footer-copyright {
    flex: 1;
    min-width: 200px;
  }
  .footer-legal {
    flex: 2;
    min-width: 250px;
    text-align: center;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #495057;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex: 100%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1rem;
    color: #868e96;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-copyright {
      order: 1;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

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

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

.product-item__sku {
    opacity: 0.9;
}

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

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

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

.gallery__strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(120px, 1fr);
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.gallery__thumb {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-light);
    border: 1px solid var(--border-on-surface-light);
    min-width: 120px;
}

.gallery__thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    display: block;
}

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) * 0.75);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.is-open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        background-color: var(--btn-ghost-bg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ced4da;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
  }
  .footer-copyright {
    flex: 1;
    min-width: 200px;
  }
  .footer-legal {
    flex: 2;
    min-width: 250px;
    text-align: center;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #495057;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex: 100%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1rem;
    color: #868e96;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-copyright {
      order: 1;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

.product-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .product-item .product-item__add-cart {
        background: var(--bg-primary);
        color: var(--fg-on-page);
        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);
    }

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) * 0.75);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.is-open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        background-color: var(--btn-ghost-bg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ced4da;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
  }
  .footer-copyright {
    flex: 1;
    min-width: 200px;
  }
  .footer-legal {
    flex: 2;
    min-width: 250px;
    text-align: center;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #495057;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex: 100%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1rem;
    color: #868e96;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-copyright {
      order: 1;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) * 0.75);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.is-open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        background-color: var(--btn-ghost-bg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ced4da;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
  }
  .footer-copyright {
    flex: 1;
    min-width: 200px;
  }
  .footer-legal {
    flex: 2;
    min-width: 250px;
    text-align: center;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #495057;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex: 100%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1rem;
    color: #868e96;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-copyright {
      order: 1;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    .form-layout-f .wrap {
        max-width: 860px;
        margin: 0 auto;
    }

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

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

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

    .form-layout-f .boxed {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        padding: 16px;
        background: var(--surface-1);
        box-shadow: var(--shadow-sm);
    }

    .form-layout-f .group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

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

    .form-layout-f input:not([type="checkbox"]), .form-layout-f textarea {
        width: 100%;
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-sm);
        padding: 9px;
        font: inherit;
    }

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

    .form-layout-f button {
        margin-top: 10px;
        border: 0;
        border-radius: var(--radius-sm);
        padding: 10px 14px;
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
    }

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

.index-recommendations-split {
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.75), transparent 60%),
        linear-gradient(135deg, rgba(212, 165, 165, 0.45), rgba(248, 225, 231, 0.95));
        color: var(--fg-on-page);
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 40px);
        overflow: hidden;
    }

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

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

        transform: translateY(-18px);
    }

    .index-recommendations-split__h h2 {
        margin: 0 0 10px;
        font-size: clamp(28px, 4.6vw, 48px);
        letter-spacing: -0.02em;
    }

    .index-recommendations-split__h p {
        margin: 0;
        color: rgba(58, 46, 61, 0.75);
    }

    .index-recommendations-split__grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-split__card {
        grid-column: span 6;
        border-radius: var(--radius-xl);
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        background: rgba(255, 255, 255, 0.65);
        border: 1px solid rgba(58, 46, 61, 0.12);
        display: grid;
        grid-template-rows: 170px 1fr;

        transform: translateY(26px);
        backdrop-filter: blur(10px);
    }

    .index-recommendations-split__card:nth-child(1) {
        grid-column: span 12;
        grid-template-columns: 1.2fr 1fr;
        grid-template-rows: 1fr;
        min-height: 320px;
    }

    .index-recommendations-split__media {
        position: relative;
        background-size: cover;
        background-position: center;
        background-color: rgba(58, 46, 61, 0.08);
    }

    .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
        border-right: 1px solid rgba(58, 46, 61, 0.12);
    }

    .index-recommendations-split__media::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
        pointer-events: none;
    }

    .index-recommendations-split__pill {
        position: absolute;
        left: 14px;
        top: 14px;
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.78);
        border: 1px solid rgba(58, 46, 61, 0.14);
        color: var(--fg-on-page);
        font-size: 10px;
        letter-spacing: 0.16em;
        text-transform: uppercase;
        z-index: 1;
    }

    .index-recommendations-split__body {
        padding: 18px 18px 16px;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .index-recommendations-split__icon {
        width: 44px;
        height: 44px;
        border-radius: 16px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .index-recommendations-split__body h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: -0.01em;
        color: var(--fg-on-page);
    }

    .index-recommendations-split__body p {
        margin: 0;
        color: rgba(58, 46, 61, 0.84);
        font-size: 14px;
        line-height: 1.65;
    }

    .index-recommendations-split__link {
        margin-top: auto;
        color: var(--link);
        text-decoration: none;
        font-weight: 800;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        font-size: 11px;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

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

    .index-recommendations-split__link:hover {
        color: var(--link-hover);
    }

    @media (max-width: 900px) {
        .index-recommendations-split__grid {
            grid-template-columns: repeat(6, 1fr);
        }

        .index-recommendations-split__card {
            grid-column: span 6;
        }

        .index-recommendations-split__card:nth-child(1) {
            grid-template-columns: 1fr;
            grid-template-rows: 200px 1fr;
            min-height: 0;
        }

        .index-recommendations-split__card:nth-child(1) .index-recommendations-split__media {
            border-right: 0;
            border-bottom: 1px solid rgba(58, 46, 61, 0.12);
        }
    }

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

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) * 0.75);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.is-open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        background-color: var(--btn-ghost-bg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ced4da;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
  }
  .footer-copyright {
    flex: 1;
    min-width: 200px;
  }
  .footer-legal {
    flex: 2;
    min-width: 250px;
    text-align: center;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #495057;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex: 100%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1rem;
    color: #868e96;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-copyright {
      order: 1;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

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

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

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

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

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

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) * 0.75);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.is-open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        background-color: var(--btn-ghost-bg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ced4da;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
  }
  .footer-copyright {
    flex: 1;
    min-width: 200px;
  }
  .footer-legal {
    flex: 2;
    min-width: 250px;
    text-align: center;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #495057;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex: 100%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1rem;
    color: #868e96;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-copyright {
      order: 1;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

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

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

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

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

    .terms-layout-e .rows {
        display: grid;
        gap: 10px;
    }

    .terms-layout-e article {
        border-left: 4px solid var(--brand);
        background: var(--surface-1);
        border-radius: var(--radius-sm);
        padding: 12px 12px 12px 14px;
        box-shadow: var(--shadow-sm);
    }

    .terms-layout-e .head h3 {
        margin: 0 0 8px;
    }

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

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

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) * 0.75);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.is-open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        background-color: var(--btn-ghost-bg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ced4da;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
  }
  .footer-copyright {
    flex: 1;
    min-width: 200px;
  }
  .footer-legal {
    flex: 2;
    min-width: 250px;
    text-align: center;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #495057;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex: 100%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1rem;
    color: #868e96;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-copyright {
      order: 1;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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

.site-header {
    background-color: var(--surface-1);
    border-bottom: 1px solid var(--border-on-surface);
    padding: var(--space-y) 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: calc(var(--font-size-base) * 1.5);
    font-weight: 700;
    color: var(--brand);
    text-decoration: none;
    white-space: nowrap;
    transition: color var(--anim-duration) var(--anim-ease);
}
.logo:hover {
    color: var(--link-hover);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: calc(var(--gap) / 2);
    background-color: var(--chip-bg);
    padding: calc(var(--space-y) / 4);
    border-radius: var(--radius-xl);
}

.nav-link {
    display: inline-block;
    padding: calc(var(--space-y) / 2) calc(var(--space-x) * 0.75);
    text-decoration: none;
    color: var(--fg-on-surface);
    font-weight: 500;
    border-radius: var(--radius-lg);
    transition: all var(--anim-duration) var(--anim-ease);
    white-space: nowrap;
}
.nav-link:hover {
    background-color: var(--btn-ghost-bg-hover);
    color: var(--link-hover);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: calc(var(--space-y) / 2);
    flex-direction: column;
    justify-content: space-between;
    width: 2.5rem;
    height: 2rem;
}
.burger-line {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--fg-on-surface);
    border-radius: var(--radius-sm);
    transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
}

@media (max-width: 767px) {
    .burger-btn {
        display: flex;
    }
    .main-nav {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background-color: var(--surface-2);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 101;
        box-shadow: var(--shadow-lg);
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
    }
    .main-nav.is-open {
        transform: translateX(0);
    }
    .nav-list {
        flex-direction: column;
        background-color: transparent;
        padding: 0;
        gap: var(--gap);
        margin-top: calc(var(--space-y) * 2);
    }
    .nav-link {
        padding: var(--space-y) var(--space-x);
        border-radius: var(--radius-md);
        background-color: var(--btn-ghost-bg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(0.75rem) rotate(45deg);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(2) {
        opacity: 0;
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(3) {
        transform: translateY(-0.75rem) rotate(-45deg);
    }
}

.site-footer {
    background-color: #f8f9fa;
    color: #333;
    padding: 2.5rem 1rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    border-top: 1px solid #dee2e6;
  }
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #ced4da;
  }
  .footer-brand {
    flex: 1;
    min-width: 200px;
  }
  .footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
  }
  .footer-nav {
    flex: 1;
    min-width: 150px;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-nav li {
    margin-bottom: 0.75rem;
  }
  .footer-nav a {
    color: #495057;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s ease;
  }
  .footer-nav a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-contact {
    flex: 1;
    min-width: 200px;
  }
  .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .footer-contact li {
    margin-bottom: 0.75rem;
    color: #495057;
    font-size: 0.95rem;
  }
  .footer-contact a {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
  }
  .footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
    color: #6c757d;
  }
  .footer-copyright {
    flex: 1;
    min-width: 200px;
  }
  .footer-legal {
    flex: 2;
    min-width: 250px;
    text-align: center;
  }
  .footer-legal a {
    color: #6c757d;
    text-decoration: none;
    margin: 0 0.5rem;
  }
  .footer-legal a:hover {
    color: #495057;
    text-decoration: underline;
  }
  .footer-disclaimer {
    flex: 100%;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.4;
    margin-top: 1rem;
    color: #868e96;
    font-style: italic;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  @media (max-width: 768px) {
    .footer-top {
      flex-direction: column;
      gap: 1.5rem;
    }
    .footer-bottom {
      flex-direction: column;
      text-align: center;
      gap: 0.75rem;
    }
    .footer-legal {
      order: 2;
    }
    .footer-copyright {
      order: 1;
    }
    .footer-disclaimer {
      order: 3;
    }
  }

.cookie-cv9 {
        position: fixed;
        inset: 0;
        z-index: 1200;
        display: grid;
        place-items: center;
    }

    .cookie-cv9__overlay {
        position: absolute;
        inset: 0;
        background: var(--overlay);
    }

    .cookie-cv9__dialog {
        position: relative;
        width: min(520px, calc(100vw - (var(--space-x) * 2)));
        border-radius: var(--radius-xl);
        padding: 18px;
        background: linear-gradient(135deg, var(--bg-primary), var(--accent));
        color: var(--fg-on-primary);
        box-shadow: var(--shadow-lg);
    }

    .cookie-cv9__dialog h3 {
        margin: 0 0 8px;
    }

    .cookie-cv9__dialog p {
        margin: 0;
        opacity: .94;
    }

    .cookie-cv9__actions {
        margin-top: 12px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-cv9__actions button {
        border: 0;
        border-radius: var(--radius-sm);
        padding: 8px 10px;
        background: rgba(255, 255, 255, 0.18);
        color: inherit;
        cursor: pointer;
    }

    .cookie-cv9__actions button[data-choice='accept'] {
        background: var(--bg-accent);
        color: var(--fg-on-accent);
    }

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