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

  --max-w: 1100px;
  --space-x: 0.91rem;
  --space-y: 1rem;
  --gap: 1.1rem;

  --radius-xl: 1.13rem;
  --radius-lg: 0.73rem;
  --radius-md: 0.37rem;
  --radius-sm: 0.25rem;

  --shadow-sm: 0 2px 6px rgba(0,0,0,0.11);
  --shadow-md: 0 5px 16px rgba(0,0,0,0.14);
  --shadow-lg: 0 16px 24px rgba(0,0,0,0.17);

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

  --brand: #2A5C8A;
  --brand-contrast: #FFFFFF;
  --accent: #D35400;
  --accent-contrast: #FFFFFF;

  --neutral-0: #FFFFFF;
  --neutral-100: #F5F7FA;
  --neutral-300: #D1D9E6;
  --neutral-600: #7B8A9B;
  --neutral-800: #37474F;
  --neutral-900: #263238;

  --bg-page: #FFFFFF;
  --fg-on-page: #263238;

  --bg-alt: #F9FAFC;
  --fg-on-alt: #37474F;

  --surface-1: #FFFFFF;
  --surface-2: #F5F7FA;
  --fg-on-surface: #263238;
  --border-on-surface: #E1E8F0;

  --surface-light: #FFFFFF;
  --fg-on-surface-light: #37474F;
  --border-on-surface-light: #D1D9E6;

  --bg-primary: #2A5C8A;
  --fg-on-primary: #FFFFFF;
  --bg-primary-hover: #1E4A6F;
  --ring: rgba(42, 92, 138, 0.4);

  --bg-accent: #FFF3E0;
  --fg-on-accent: #5D4037;
  --bg-accent-hover: #E65100;

  --link: #2A5C8A;
  --link-hover: #1E4A6F;

  --gradient-hero: linear-gradient(135deg, #2A5C8A 0%, #4A7CAB 100%);
  --gradient-accent: linear-gradient(135deg, #D35400 0%, #FF8C42 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;
    box-shadow: var(--shadow-sm);
}

.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) var(--space-x);
    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: 3px;
    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);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }
    .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);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) 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(-10px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    .footer-contact a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-legal a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        margin-top: 1rem;
        line-height: 1.4;
        font-style: italic;
    }
    @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: end;
    }

    .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-metrics-l4 {
        padding: clamp(3.6rem, 8vw, 6.6rem) var(--space-x);
        background: linear-gradient(180deg, var(--surface-1), var(--bg-alt));
        color: var(--fg-on-page);
    }

    .intro-metrics-l4__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .intro-metrics-l4__copy {
        text-align: center;
        max-width: 44rem;
        margin: 0 auto;
    }

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

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

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

    .intro-metrics-l4__stats {
        margin-top: 1.3rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
        gap: var(--gap);
    }

    .intro-metrics-l4__stats article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
        text-align: center;
    }

    .intro-metrics-l4__stats strong {
        display: block;
        font-size: 1.6rem;
        color: var(--brand);
    }

    .intro-metrics-l4__stats span {
        display: block;
        margin-top: .35rem;
        color: var(--neutral-600);
    }

    .intro-metrics-l4__footer {
        margin-top: 1rem;
        text-align: center;
        color: var(--neutral-800);
    }

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

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

    .next-fan-c5__banner p {
        margin: 0;
        color: rgba(255, 255, 255, .78);
    }

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

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

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

    .next-fan-c5__fan span {
        display: block;
        margin-top: .3rem;
        color: rgba(255, 255, 255, .84);
    }

    .next-fan-c5__tail {
        margin-top: 1rem;
        color: rgba(255, 255, 255, .86);
    }

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

.features {
    padding: clamp(48px, 8vw, 80px) 0;
    background-color: var(--bg-page);
    color: var(--fg-on-page);
}

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

.features__title {
    text-align: left;
    margin-bottom: calc(var(--space-y) * 2);
    font-size: clamp(28px, 4vw, 40px);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: calc(var(--gap) * 1.5);
}

.features__card {
    background-color: var(--surface-2);
    padding: clamp(16px, 3vw, 32px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--anim-duration) var(--anim-ease);
    text-align: left;
    border: 1px solid var(--border-on-surface);
}

.features__card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.features__icon {
    font-size: 2.2rem;
    color: var(--brand);
    margin-bottom: var(--space-y);
}

.features__icon--chip {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--bg-accent);
    color: var(--fg-on-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.features__card h3 {
    margin-bottom: var(--space-y);
    color: var(--fg-on-surface);
}

.features__card p {
    color: var(--fg-on-surface-light);
    margin: 0 auto;
}

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

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

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

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

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

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

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

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

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

    .plans-cv2__line h3 {
        margin: 0;
    }

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

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

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

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

.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;
    box-shadow: var(--shadow-sm);
}

.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) var(--space-x);
    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: 3px;
    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);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }
    .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);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) 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(-10px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    .footer-contact a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-legal a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        margin-top: 1rem;
        line-height: 1.4;
        font-style: italic;
    }
    @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: end;
    }

    .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 {

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

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

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

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

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

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

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

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

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

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

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

    .product-list .product-list__filter {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius-lg);
        border: 2px solid var(--ring);
        background: var(--bg-page);
        color: var(--fg-on-page);
        cursor: pointer;
        transition: all var(--anim-duration) var(--anim-ease);
        font-weight: 500;
        text-align: left;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .touch-gridline .wrap {
        max-width: 900px;
        margin: 0 auto;
    }

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

    .touch-gridline .lead {
        margin: 10px 0 14px;
        color: var(--neutral-600);
    }

    .touch-gridline .list {
        display: grid;
        gap: 8px;
    }

    .touch-gridline .row {
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-md);
        background: var(--surface-1);
        padding: 10px 12px;
        display: flex;
        justify-content: space-between;
        gap: 10px;
        align-items: center;
    }

    .touch-gridline .title {
        margin: 0 0 4px;
        font-weight: 600;
    }

    .touch-gridline .text {
        margin: 0;
        color: var(--neutral-600);
    }

    .touch-gridline .row a {
        color: var(--link);
        text-decoration: none;
    }

    .touch-gridline .cta {
        display: inline-block;
        text-decoration: none;
        padding: 10px 16px;
        border-radius: var(--radius-md);
        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;
    box-shadow: var(--shadow-sm);
}

.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) var(--space-x);
    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: 3px;
    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);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }
    .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);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) 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(-10px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    .footer-contact a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-legal a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        margin-top: 1rem;
        line-height: 1.4;
        font-style: italic;
    }
    @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: end;
    }

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

.article-content-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.article-content-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.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;
    box-shadow: var(--shadow-sm);
}

.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) var(--space-x);
    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: 3px;
    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);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }
    .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);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) 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(-10px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    .footer-contact a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-legal a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        margin-top: 1rem;
        line-height: 1.4;
        font-style: italic;
    }
    @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: end;
    }

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

.article-content-section {
    padding: clamp(48px, 8vw, 80px) 0;
}

.article-content-section__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--space-x);
}

.article-content-section__content {
    max-width: 800px;
    margin: 0 auto;
}

.article-content-section__content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--fg-on-page);
}

.article-content-section__content p {
    max-width: 100%;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content ul,
.article-content-section__content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
    color: var(--neutral-600);
}

.article-content-section__content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-content-section__callout {
    margin-top: 2rem;
    padding: clamp(16px, 3vw, 24px);
    background-color: var(--bg-alt);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-on-surface);
}

.article-content-section__callout p {
    margin: 0;
    color: var(--fg-on-alt);
}

.article-content-section__actions {
    margin-top: 2rem;
    text-align: center;
}

.article-content-section__btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--radius-md);
    font-weight: 500;
    text-align: center;
    transition: all var(--anim-duration) var(--anim-ease);
    cursor: pointer;
    border: 1px solid var(--bg-primary);
    font-size: 1rem;
    background-color: var(--bg-primary);
    color: var(--fg-on-primary);
}

.article-content-section__btn:hover {
    background-color: var(--bg-primary-hover);
    border-color: var(--bg-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.about-mission {

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

    .about-mission .about-mission__c {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .about-mission .about-mission__cards {
        display: grid;
        gap: var(--space-x);
    }

    .about-mission .about-mission__card {
        background: #fff;
        color: var(--fg-on-page);
        border-radius: var(--radius-lg);
        padding: clamp(12px, 2vw, 20px);
        box-shadow: var(--shadow-md);
    }

    @media (max-width: 767px) {
        .about-mission .about-mission__cards {
            grid-template-columns: repeat(1, minmax(0, 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;
    box-shadow: var(--shadow-sm);
}

.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) var(--space-x);
    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: 3px;
    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);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }
    .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);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) 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(-10px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    .footer-contact a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-legal a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        margin-top: 1rem;
        line-height: 1.4;
        font-style: italic;
    }
    @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: end;
    }

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

.story-card-l2 {
        padding: clamp(3.2rem, 7vw, 5.7rem) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-page);
    }

    .story-card-l2__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        display: grid;
        grid-template-columns: .9fr 1.1fr;
        gap: 1.2rem;
        align-items: center;
    }

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

    .story-card-l2__story h2 {
        margin: 0;
        font-size: clamp(2rem, 4vw, 3rem);
    }

    .story-card-l2__story p {
        margin: .8rem 0 0;
        color: var(--neutral-600);
    }

    .story-card-l2__metric {
        margin-top: 1rem;
        padding: .9rem;
        border-radius: var(--radius-md);
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface-light);
    }

    .story-card-l2__metric span {
        display: block;
        margin-top: .25rem;
        color: var(--neutral-600);
    }

    @media (max-width: 820px) {
        .story-card-l2__wrap {
            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;
    box-shadow: var(--shadow-sm);
}

.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) var(--space-x);
    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: 3px;
    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);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }
    .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);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) 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(-10px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    .footer-contact a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-legal a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        margin-top: 1rem;
        line-height: 1.4;
        font-style: italic;
    }
    @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: end;
    }

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

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

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

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

        transform: translateY(-18px);
    }

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

    .index-recommendations-light__h p {
        margin: 0;
        color: var(--neutral-600);
    }

    .index-recommendations-light__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: clamp(14px, 2.6vw, 22px);
    }

    .index-recommendations-light__card {
        border-radius: var(--radius-xl);
        background: var(--surface-light);
        border: 1px solid var(--border-on-surface-light);
        box-shadow: var(--shadow-md);
        padding: clamp(18px, 3vw, 26px);

        transform: translateY(26px);
        position: relative;
        overflow: hidden;
    }

    .index-recommendations-light__card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 15%, rgba(248, 225, 231, 0.45), transparent 55%);
        pointer-events: none;
    }

    .index-recommendations-light__top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .index-recommendations-light__icon {
        width: 52px;
        height: 52px;
        border-radius: 18px;
        background: var(--bg-accent);
        border: 1px solid var(--border-on-surface);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        flex: 0 0 auto;
        color: var(--fg-on-accent);
    }

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

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

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

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

    .index-recommendations-light__cta::after {
        content: '->';
        font-size: 12px;
    }

    .index-recommendations-light__cta:hover {
        background: var(--bg-primary-hover);
        transform: translateY(-2px);
    }

.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-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

    .form-layout-d .wrap {
        max-width: 760px;
        margin: 0 auto;
    }

    .form-layout-d .section-head {
        margin-bottom: 18px;
    }

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

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

    .form-layout-d .line-form {
        border-top: 2px solid var(--brand);
        padding-top: 12px;
    }

    .form-layout-d label {
        display: grid;
        gap: 8px;
        margin-bottom: 12px;
        font-weight: 600;
        color: var(--brand);
    }

    .form-layout-d input, .form-layout-d textarea {
        border: 0;
        border-bottom: 1px solid var(--neutral-300);
        padding: 8px 2px;
        font: inherit;
        background: transparent;
    }

    .form-layout-d input:focus, .form-layout-d textarea:focus {
        outline: none;
        border-color: var(--ring);
    }

    .form-layout-d button {
        border: 1px solid var(--brand);
        color: var(--brand);
        background: transparent;
        border-radius: 999px;
        padding: 9px 16px;
        cursor: pointer;
        font-weight: 600;
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .form-layout-d button:hover {
        background-color: var(--brand);
        color: var(--brand-contrast);
    }

.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;
    box-shadow: var(--shadow-sm);
}

.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) var(--space-x);
    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: 3px;
    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);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }
    .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);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) 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(-10px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    .footer-contact a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-legal a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        margin-top: 1rem;
        line-height: 1.4;
        font-style: italic;
    }
    @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: end;
    }

    .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-a {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: linear-gradient(180deg, var(--bg-accent), var(--bg-page));
        color: var(--fg-on-page);
    }

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

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

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

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

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

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

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

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

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

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

.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) var(--space-x);
    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: 3px;
    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);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }
    .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);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) 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(-10px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    .footer-contact a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-legal a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        margin-top: 1rem;
        line-height: 1.4;
        font-style: italic;
    }
    @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: end;
    }

    .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-d {
        padding: clamp(56px, 8vw, 96px) clamp(16px, 4vw, 36px);
        background: var(--accent);
        color: var(--neutral-0);
    }

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

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

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

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

    .terms-layout-d ol {
        margin: 0;
        padding-left: 20px;
        display: grid;
        gap: 10px;
    }

    .terms-layout-d li {
        border: 1px solid rgba(255, 255, 255, .2);
        border-radius: var(--radius-md);
        background: rgba(255, 255, 255, .05);
        padding: 12px;
    }

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

    .terms-layout-d p, .terms-layout-d li li {
        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;
    box-shadow: var(--shadow-sm);
}

.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) var(--space-x);
    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: 3px;
    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);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }
    .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);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) 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(-10px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    .footer-contact a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-legal a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        margin-top: 1rem;
        line-height: 1.4;
        font-style: italic;
    }
    @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: end;
    }

    .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-a {
        padding: clamp(56px, 10vw, 110px) 18px;
        background: var(--gradient-accent);
        color: var(--accent-contrast);
    }

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

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

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

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

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

.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) var(--space-x);
    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: 3px;
    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);
        box-shadow: var(--shadow-lg);
        padding: calc(var(--space-y) * 2) var(--space-x);
        transform: translateX(100%);
        transition: transform var(--anim-duration) var(--anim-ease);
        z-index: 1000;
        flex-direction: column;
        justify-content: flex-start;
    }
    .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);
    }
    .burger-btn[aria-expanded="true"] .burger-line:nth-child(1) {
        transform: translateY(10px) 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(-10px) rotate(-45deg);
    }
}

.site-footer {
        background-color: #f8f9fa;
        border-top: 1px solid #dee2e6;
        color: #333;
        font-family: sans-serif;
        padding: 2rem 1rem;
        margin-top: 3rem;
    }
    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }
    .footer-top {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 2rem;
        padding-bottom: 2rem;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5rem;
    }
    .footer-brand {
        flex: 1;
        min-width: 200px;
    }
    .footer-logo {
        font-size: 1.8rem;
        font-weight: bold;
        color: #2c3e50;
    }
    .footer-nav {
        flex: 1;
        min-width: 200px;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-nav li {
        margin-bottom: 0.75rem;
    }
    .footer-nav a {
        color: #007bff;
        text-decoration: none;
        transition: color 0.2s;
    }
    .footer-nav a:hover {
        color: #0056b3;
        text-decoration: underline;
    }
    .footer-contact {
        flex: 1;
        min-width: 250px;
    }
    .footer-contact ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .footer-contact li {
        margin-bottom: 0.75rem;
        line-height: 1.5;
    }
    .footer-contact a {
        color: #007bff;
        text-decoration: none;
    }
    .footer-contact a:hover {
        text-decoration: underline;
    }
    .footer-bottom {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        font-size: 0.9rem;
        color: #666;
    }
    .footer-legal a {
        color: #666;
        text-decoration: none;
        margin: 0 0.3rem;
    }
    .footer-legal a:hover {
        text-decoration: underline;
        color: #333;
    }
    .footer-disclaimer {
        flex-basis: 100%;
        text-align: center;
        font-size: 0.85rem;
        color: #888;
        margin-top: 1rem;
        line-height: 1.4;
        font-style: italic;
    }
    @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: end;
    }

    .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-f {
        padding: clamp(56px, 10vw, 112px) 20px;
        background: var(--surface-1);
        color: var(--fg-on-page);
    }

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

    .err-slab-f .chip::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        background: var(--gradient-accent);
    }

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

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

    .err-slab-f a {
        display: inline-block;
        margin-top: 18px;
        padding: 10px 16px;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        text-decoration: none;
    }