:root {
  --font-family: "Noto Sans", sans-serif;
  --font-size-base: 17.7px;
  --line-height-base: 1.39;

  --max-w: 1060px;
  --space-x: 1.67rem;
  --space-y: 1.5rem;
  --gap: 2.39rem;

  --radius-xl: 1.23rem;
  --radius-lg: 0.86rem;
  --radius-md: 0.68rem;
  --radius-sm: 0.33rem;

  --shadow-sm: 0 1px 5px rgba(0,0,0,0.23);
  --shadow-md: 0 14px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 26px 46px rgba(0,0,0,0.36);

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

  --brand: #0056d6;
  --brand-contrast: #ffffff;
  --accent: #00c853;
  --accent-contrast: #ffffff;

  --neutral-0: #ffffff;
  --neutral-100: #f8fafc;
  --neutral-300: #cbd5e1;
  --neutral-600: #64748b;
  --neutral-800: #1e293b;
  --neutral-900: #0f172a;

  --bg-page: #ffffff;
  --fg-on-page: #1e293b;

  --bg-alt: #f8fafc;
  --fg-on-alt: #334155;

  --surface-1: #ffffff;
  --surface-2: #f1f5f9;
  --fg-on-surface: #1e293b;
  --border-on-surface: #e2e8f0;

  --surface-light: rgba(255, 255, 255, 0.85);
  --fg-on-surface-light: #334155;
  --border-on-surface-light: rgba(226, 232, 240, 0.7);

  --bg-primary: #0056d6;
  --fg-on-primary: #ffffff;
  --bg-primary-hover: #0048b8;
  --ring: rgba(0, 86, 214, 0.4);

  --bg-accent: rgba(0, 200, 83, 0.1);
  --fg-on-accent: #005c20;
  --bg-accent-hover: #00b248;

  --link: #0056d6;
  --link-hover: #003d99;

  --gradient-hero: linear-gradient(135deg, #0056d6 0%, #0083ff 100%);
  --gradient-accent: linear-gradient(90deg, #00c853 0%, #64dd17 100%);

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header__logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--brand);
        text-decoration: none;
        z-index: 1002;
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }
    .burger__line {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }
    .nav__link {
        color: var(--link);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }
    .header__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 999;
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            max-width: 85%;
            background-color: var(--surface-2);
            padding: 5rem 2rem 2rem;
            z-index: 1001;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }
        .header__nav.is-open {
            right: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }
        .nav__link {
            display: block;
            padding: 0.75rem 1rem;
        }
        .header__overlay.is-active {
            display: block;
            opacity: 1;
        }
    }

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-left, .footer-right {
        display: flex;
        flex-direction: column;
    }
    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.5rem 0;
    }
    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1.5rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-line {
        margin: 0.4rem 0;
    }
    .contact-line a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .copyright-disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin: 0;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-left, .footer-right {
            width: 100%;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.wp-lang-switcher-v4 {
        position: fixed;
        right: clamp(16px, 2vw, 24px);
        bottom: clamp(16px, 2vw, 24px);
        z-index: 99999;

        --local-random: var(--random-number, 1);
    }

    .wp-lang-switcher-v4__container {
        display: flex;
        align-items: center;
        gap: 0;
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: calc(var(--radius-xl) + var(--local-random) * 4px);
        padding: calc(5px + var(--local-random) * 1px);
        box-shadow: var(--shadow-lg);
        transition: all var(--anim-duration) var(--anim-ease);
    }

    .wp-lang-switcher-v4__container.expanded {
        gap: calc(4px + var(--local-random) * 2px);
    }

    .wp-lang-switcher-v4__toggle {
        width: calc(42px + var(--local-random) * 2px);
        height: calc(42px + var(--local-random) * 2px);
        background: var(--gradient-hero);
        color: var(--fg-on-primary);
        border-radius: calc(var(--radius-lg) - var(--local-random) * 2px);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--anim-duration) var(--anim-ease);
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .wp-lang-switcher-v4__toggle::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        animation: spin calc(2.8s + var(--local-random) * 0.4s) linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }
        to {
            transform: rotate(360deg);
        }
    }

    .wp-lang-switcher-v4__icon {
        font-size: calc(18px + var(--local-random) * 2px);
        position: relative;
        z-index: 1;
    }

    .wp-lang-switcher-v4__toggle:hover {
        transform: scale(calc(1.03 + var(--local-random) * 0.02));
    }

    .wp-lang-switcher-v4__list {
        display: flex;
        gap: calc(5px + var(--local-random) * 1px);
        max-width: 0;
        opacity: 0;
        transition: all var(--anim-duration) cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .wp-lang-switcher-v4__container.expanded .wp-lang-switcher-v4__list {
        max-width: 300px;
        opacity: 1;
    }

    .wp-lang-switcher-v4__list button,
    .wp-lang-switcher-v4__list a {
        width: calc(38px + var(--local-random) * 2px);
        height: calc(38px + var(--local-random) * 2px);
        border: 2px solid var(--border-on-surface);
        background: var(--surface-2);
        color: var(--fg-on-surface);
        cursor: pointer;

        font-size: 12px;
        font-weight: 700;
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        transition: all var(--anim-duration) var(--anim-ease);
        position: relative;
        flex-shrink: 0;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .wp-lang-switcher-v4__list button::before,
    .wp-lang-switcher-v4__list a::before {
        content: '';
        position: absolute;
        inset: calc(-2px - var(--local-random) * 0.5px);
        border-radius: calc(var(--radius-md) - var(--local-random) * 2px);
        background: var(--gradient-accent);

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

    .wp-lang-switcher-v4__list button:hover,
    .wp-lang-switcher-v4__list a:hover {
        border-color: transparent;
        color: var(--fg-on-primary);
        transform: translateY(calc(-2px - var(--local-random) * 1px));
    }

    .wp-lang-switcher-v4__list button:hover::before,
    .wp-lang-switcher-v4__list a:hover::before {
        opacity: 1;
    }

    .wp-lang-switcher-v4__list button span,
    .wp-lang-switcher-v4__list a span {
        position: relative;
        z-index: 1;
    }

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

.values-flare-c9 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, .15), transparent 25%), var(--gradient-accent);
        color: var(--gradient-accent);
    }

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

    .values-flare-c9__head {
        margin-bottom: 1.1rem;
    }

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

    .values-flare-c9__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-0);
    }

    .values-flare-c9__head span {
        display: block;
        margin-top: .8rem;
        color: var(--neutral-100);
    }

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

    .values-flare-c9__grid article {
        padding: 1rem;
        border-radius: var(--radius-lg);
        background: var(--surface-light);
        border: 1px solid rgba(255, 255, 255, .18);
        color: var(--fg-on-surface-light);
    }

    .values-flare-c9__meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .values-flare-c9__meta i {
        font-style: normal;
        font-size: 1.5rem;
    }

    .values-flare-c9__meta span {
        color: var(--bg-accent);
        font-weight: bold;
        font-size: 0.9rem;
    }

    .values-flare-c9__grid h3 {
        margin: .75rem 0 .35rem;
        color: var(--neutral-800);
        font-size: 1.2rem;
    }

    .values-flare-c9__grid p {
        margin: 0;
        color: var(--neutral-600);
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .values-flare-c9__grid small {
        display: block;
        margin-top: .55rem;
        color: var(--accent-fg);
        font-size: 0.85rem;
        font-weight: 600;
    }

.why-choose {

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

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

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

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

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

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

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

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

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

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

    /* dinámico glow via CSS variables */
    .why-choose__card::after {
        content: '';
        position: absolute;
        inset: -1px;
        background: radial-gradient(220px 220px at var(--gx, 50%) var(--gy, 50%),
        rgba(0, 85, 183, 0.20), transparent 60%);

        transition: opacity 180ms var(--anim-ease);
        pointer-events: none;
    }

    .why-choose__card.is-hover {
        box-shadow: var(--shadow-lg);
        border-color: rgba(0, 85, 183, 0.28);
    }

    .why-choose__card.is-hover::after {
        opacity: 1;
    }

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

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

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

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

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

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

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

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

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

.visual-film-c1 {
        padding: clamp(3.5rem, 8vw, 6rem) var(--space-x);
        background: var(--gradient-hero);
        color: var(--brand-contrast);
    }

    .visual-film-c1__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
    }

    .visual-film-c1__head {
        text-align: center;
        margin-bottom: 1.1rem;
    }

    .visual-film-c1__head p {
        margin: 0;
        text-transform: uppercase;
        letter-spacing: .1em;
        font-size: .82rem;
        color: var(--neutral-100);
    }

    .visual-film-c1__head h2 {
        margin: .5rem 0 0;
        font-size: clamp(2rem, 4vw, 3rem);
        color: var(--neutral-0);
    }

    .visual-film-c1__grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
        gap: var(--gap);
    }

    .visual-film-c1__grid figure {
        margin: 0;
        overflow: hidden;
        border-radius: var(--radius-xl);
        background: var(--neutral-100);
        border: 1px solid var(--neutral-300);

    }

    .visual-film-c1__media {
        position: relative;
    }

    .visual-film-c1__media img {
        display: block;
        width: 100%;
        height: 14rem;
        object-fit: cover;
    }

    .visual-film-c1__media span {
        position: absolute;
        top: .8rem;
        left: .8rem;
        padding: .35rem .7rem;
        border-radius: 999px;
        background: rgba(0, 0, 0, .28);
        color: var(--neutral-0);
        font-size: 1rem;
    }

    .visual-film-c1__grid figcaption {
        padding: 1rem;
    }

    .visual-film-c1__grid figcaption small {
        color: var(--neutral-600);
        font-weight: 600;
    }

    .visual-film-c1__grid h3 {
        margin: .5rem 0 .35rem;
        color: var(--neutral-900);
    }

    .visual-film-c1__grid p {
        margin: 0;
        color: var(--neutral-800);
        line-height: var(--line-height-base);
    }

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

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

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

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .9);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

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

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-c1__stat {
            grid-column: span 12;
        }
    }

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header__logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--brand);
        text-decoration: none;
        z-index: 1002;
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }
    .burger__line {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }
    .nav__link {
        color: var(--link);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }
    .header__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 999;
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            max-width: 85%;
            background-color: var(--surface-2);
            padding: 5rem 2rem 2rem;
            z-index: 1001;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }
        .header__nav.is-open {
            right: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }
        .nav__link {
            display: block;
            padding: 0.75rem 1rem;
        }
        .header__overlay.is-active {
            display: block;
            opacity: 1;
        }
    }

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-left, .footer-right {
        display: flex;
        flex-direction: column;
    }
    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.5rem 0;
    }
    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1.5rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-line {
        margin: 0.4rem 0;
    }
    .contact-line a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .copyright-disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin: 0;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-left, .footer-right {
            width: 100%;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.product-list--light-v6 {
    padding: 48px 20px;
    background: var(--surface-light);
    color: var(--fg-on-surface-light);
}

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

.product-list__inner h2 {
    margin: 0 0 10px;
    font-size: clamp(22px,3.5vw,28px);
}

.product-list__list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: var(--radius-xl);
    background: var(--bg-page);
    border: 1px solid var(--border-on-surface-light);
    overflow: hidden;
}

.product-list__row {
    display: grid;
    grid-template-columns: minmax(0,1.6fr) auto;
    gap: 12px;
    padding: 8px 12px;
    border-top: 1px solid var(--border-on-surface-light);
}

.product-list__row:first-child {
    border-top: none;
}

.product-list__row-name {
    font-size: 0.9rem;
    color: var(--neutral-800);
}

.product-list__row-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--bg-primary);
}

.education-struct-v2 {
        padding: calc(var(--space-y) * 2) var(--space-x);
        background: var(--bg-alt);
        color: var(--fg-on-alt)
    }

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

    .education-struct-v2 h2, .education-struct-v2 h3, .education-struct-v2 p {
        margin: 0
    }

    .education-struct-v2 a {
        text-decoration: none
    }

    .education-struct-v2 article, .education-struct-v2 .row, .education-struct-v2 details, .education-struct-v2 .program {
        background: var(--surface-1);
        border: 1px solid var(--border-on-surface);
        border-radius: var(--radius-lg);
        padding: .85rem
    }

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

    .education-struct-v2 .grid a, .education-struct-v2 .tiers a, .education-struct-v2 .cta a {
        display: inline-flex;
        min-height: 2.3rem;
        padding: 0 .8rem;
        align-items: center;
        border-radius: var(--radius-sm);
        background: var(--bg-primary);
        color: var(--fg-on-primary);
        border: 1px solid var(--ring)
    }

    .education-struct-v2 .path {
        display: grid;
        gap: .65rem
    }

    .education-struct-v2 .path article {
        position: relative;
        padding-left: 1.25rem
    }

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

    .education-struct-v2 .table {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .row {
        display: grid;
        grid-template-columns:1fr 1fr 1fr;
        gap: .6rem
    }

    .education-struct-v2 .combo {
        display: grid;
        grid-template-columns:1fr 1fr;
        gap: var(--gap)
    }

    .education-struct-v2 .mentors {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .mentors article {
        display: grid;
        grid-template-columns:3rem 1fr;
        gap: .6rem;
        align-items: center
    }

    .education-struct-v2 .mentors img {
        display: block;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        object-fit: cover
    }

    .education-struct-v2 .program {
        display: grid;
        gap: .45rem
    }

    .education-struct-v2 .modules {
        display: grid;
        gap: .6rem
    }

    .education-struct-v2 .cta {
        display: flex
    }

    @media (max-width: 900px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo {
            grid-template-columns:1fr 1fr
        }
    }

    @media (max-width: 680px) {
        .education-struct-v2 .grid, .education-struct-v2 .tiers, .education-struct-v2 .combo, .education-struct-v2 .row {
            grid-template-columns:1fr
        }
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header__logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--brand);
        text-decoration: none;
        z-index: 1002;
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }
    .burger__line {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }
    .nav__link {
        color: var(--link);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }
    .header__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 999;
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            max-width: 85%;
            background-color: var(--surface-2);
            padding: 5rem 2rem 2rem;
            z-index: 1001;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }
        .header__nav.is-open {
            right: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }
        .nav__link {
            display: block;
            padding: 0.75rem 1rem;
        }
        .header__overlay.is-active {
            display: block;
            opacity: 1;
        }
    }

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-left, .footer-right {
        display: flex;
        flex-direction: column;
    }
    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.5rem 0;
    }
    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1.5rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-line {
        margin: 0.4rem 0;
    }
    .contact-line a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .copyright-disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin: 0;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-left, .footer-right {
            width: 100%;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

.product-item {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.social-c1 {

        padding: clamp(18px, 3vw, 44px);
        background: var(--gradient-accent);
        color: var(--accent-contrast);
        overflow: hidden;
    }

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

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

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

    .social-c1__sub {
        margin: 10px 0 0;
        max-width: 70ch;
        color: rgba(255, 255, 255, .9);
    }

    .social-c1__band {
        margin-top: 18px;
        border-radius: var(--radius-xl);
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.10);
        box-shadow: var(--shadow-lg);
        overflow: hidden;
        position: relative;
    }

    .social-c1__band::before,
    .social-c1__band::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        width: 90px;
        pointer-events: none;
        z-index: 1;
    }

    .social-c1__band::before {
        left: 0;
        background: linear-gradient(90deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__band::after {
        right: 0;
        background: linear-gradient(270deg, rgba(229, 90, 43, 1), rgba(229, 90, 43, 0));
    }

    .social-c1__track {
        display: flex;
        gap: 18px;
        padding: var(--space-y) var(--space-x);
        width: max-content;
        animation: socialC1Marquee 18s linear infinite;
    }

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

    .social-c1__logo {
        width: 140px;
        height: 86px;
        border-radius: var(--radius-lg);
        background: rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.16);
        display: grid;
        place-items: center;
        flex: 0 0 auto;
    }

    .social-c1__logo img {
        max-width: 78%;
        max-height: 70%;
        opacity: .92;
        filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.18));
    }

    .social-c1__stats {
        margin-top: 18px;
        display: grid;
        grid-template-columns:repeat(12, 1fr);
        gap: 12px;
    }

    .social-c1__stat {
        grid-column: span 4;
        border-radius: var(--radius-xl);
        background: rgba(255, 255, 255, 0.10);
        border: 1px solid rgba(255, 255, 255, 0.18);
        box-shadow: var(--shadow-md);
        padding: 14px 16px;
    }

    .social-c1__num {
        font-weight: 900;
        font-size: clamp(18px, 2.4vw, 28px);
    }

    .social-c1__lbl {
        margin-top: 6px;
        color: rgba(255, 255, 255, .9);
    }

    @media (max-width: 900px) {
        .social-c1__stat {
            grid-column: span 6;
        }
    }

    @media (max-width: 640px) {
        .social-c1__stat {
            grid-column: span 12;
        }
    }

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header__logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--brand);
        text-decoration: none;
        z-index: 1002;
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }
    .burger__line {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }
    .nav__link {
        color: var(--link);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }
    .header__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 999;
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            max-width: 85%;
            background-color: var(--surface-2);
            padding: 5rem 2rem 2rem;
            z-index: 1001;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }
        .header__nav.is-open {
            right: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }
        .nav__link {
            display: block;
            padding: 0.75rem 1rem;
        }
        .header__overlay.is-active {
            display: block;
            opacity: 1;
        }
    }

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-left, .footer-right {
        display: flex;
        flex-direction: column;
    }
    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.5rem 0;
    }
    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1.5rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-line {
        margin: 0.4rem 0;
    }
    .contact-line a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .copyright-disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin: 0;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-left, .footer-right {
            width: 100%;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

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

    .faq-layout-a .section-head p {
        margin: 10px 0 0;
        opacity: .92;
        color: var(--neutral-100);
    }

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

    .faq-layout-a .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
        color: var(--neutral-0);
    }

    .faq-layout-a .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
        color: var(--neutral-100);
    }

    .faq-layout-a .item.open .a {
        max-height: 240px;
    }

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header__logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--brand);
        text-decoration: none;
        z-index: 1002;
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }
    .burger__line {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }
    .nav__link {
        color: var(--link);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }
    .header__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 999;
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            max-width: 85%;
            background-color: var(--surface-2);
            padding: 5rem 2rem 2rem;
            z-index: 1001;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }
        .header__nav.is-open {
            right: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }
        .nav__link {
            display: block;
            padding: 0.75rem 1rem;
        }
        .header__overlay.is-active {
            display: block;
            opacity: 1;
        }
    }

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-left, .footer-right {
        display: flex;
        flex-direction: column;
    }
    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.5rem 0;
    }
    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1.5rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-line {
        margin: 0.4rem 0;
    }
    .contact-line a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .copyright-disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin: 0;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-left, .footer-right {
            width: 100%;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header__logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--brand);
        text-decoration: none;
        z-index: 1002;
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }
    .burger__line {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }
    .nav__link {
        color: var(--link);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }
    .header__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 999;
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            max-width: 85%;
            background-color: var(--surface-2);
            padding: 5rem 2rem 2rem;
            z-index: 1001;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }
        .header__nav.is-open {
            right: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }
        .nav__link {
            display: block;
            padding: 0.75rem 1rem;
        }
        .header__overlay.is-active {
            display: block;
            opacity: 1;
        }
    }

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-left, .footer-right {
        display: flex;
        flex-direction: column;
    }
    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.5rem 0;
    }
    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1.5rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-line {
        margin: 0.4rem 0;
    }
    .contact-line a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .copyright-disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin: 0;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-left, .footer-right {
            width: 100%;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

    .contact-layout-f .capsule {
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    }

    .contact-layout-f .capsule article {
        border-radius: 12px;
        border: 1px solid var(--border-on-surface-light);
        padding: 14px 16px;
        background: var(--surface-1);
    }

    .contact-layout-f .capsule h3 {
        margin: 0;
        font-size: .96rem;
        color: var(--brand);
    }

    .contact-layout-f .capsule p {
        margin: 5px 0 0;
    }

    .contact-layout-f .social-strip {
        margin-top: 18px;
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .contact-layout-f .social-strip a {
        text-decoration: none;
        color: var(--fg-on-primary);
        background: var(--gradient-hero);
        padding: 7px 11px;
        border-radius: var(--radius-sm);
    }

    .social-follow {
        text-align: center;
    }

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

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

    .faq-layout-a .section-head {
        margin-bottom: 14px;
    }

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

    .faq-layout-a .section-head p {
        margin: 10px 0 0;
        opacity: .92;
        color: var(--neutral-100);
    }

    .faq-layout-a .list {
        display: grid;
        gap: 10px;
    }

    .faq-layout-a .item {
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, .3);
        background: rgba(255, 255, 255, .1);
    }

    .faq-layout-a .q {
        width: 100%;
        border: 0;
        background: transparent;
        text-align: left;
        padding: 12px;
        font: inherit;
        font-weight: 600;
        cursor: pointer;
        color: var(--neutral-0);
    }

    .faq-layout-a .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--anim-duration) var(--anim-ease);
    }

    .faq-layout-a .a p {
        margin: 0;
        padding: 0 12px 12px;
        opacity: .95;
        color: var(--neutral-100);
    }

    .faq-layout-a .item.open .a {
        max-height: 240px;
    }

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header__logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--brand);
        text-decoration: none;
        z-index: 1002;
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }
    .burger__line {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }
    .nav__link {
        color: var(--link);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }
    .header__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 999;
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            max-width: 85%;
            background-color: var(--surface-2);
            padding: 5rem 2rem 2rem;
            z-index: 1001;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }
        .header__nav.is-open {
            right: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }
        .nav__link {
            display: block;
            padding: 0.75rem 1rem;
        }
        .header__overlay.is-active {
            display: block;
            opacity: 1;
        }
    }

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-left, .footer-right {
        display: flex;
        flex-direction: column;
    }
    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.5rem 0;
    }
    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1.5rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-line {
        margin: 0.4rem 0;
    }
    .contact-line a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .copyright-disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin: 0;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-left, .footer-right {
            width: 100%;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

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

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

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

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

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header__logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--brand);
        text-decoration: none;
        z-index: 1002;
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }
    .burger__line {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }
    .nav__link {
        color: var(--link);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }
    .header__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 999;
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            max-width: 85%;
            background-color: var(--surface-2);
            padding: 5rem 2rem 2rem;
            z-index: 1001;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }
        .header__nav.is-open {
            right: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }
        .nav__link {
            display: block;
            padding: 0.75rem 1rem;
        }
        .header__overlay.is-active {
            display: block;
            opacity: 1;
        }
    }

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-left, .footer-right {
        display: flex;
        flex-direction: column;
    }
    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.5rem 0;
    }
    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1.5rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-line {
        margin: 0.4rem 0;
    }
    .contact-line a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .copyright-disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin: 0;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-left, .footer-right {
            width: 100%;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

    .terms-layout-f .list {
        display: grid;
        gap: 14px;
    }

    .terms-layout-f article {
        border: 1px solid var(--border-on-surface-light);
        border-radius: var(--radius-lg);
        background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
        padding: var(--space-y) var(--space-x);
    }

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

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

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header__logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--brand);
        text-decoration: none;
        z-index: 1002;
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }
    .burger__line {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }
    .nav__link {
        color: var(--link);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }
    .header__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 999;
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            max-width: 85%;
            background-color: var(--surface-2);
            padding: 5rem 2rem 2rem;
            z-index: 1001;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }
        .header__nav.is-open {
            right: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }
        .nav__link {
            display: block;
            padding: 0.75rem 1rem;
        }
        .header__overlay.is-active {
            display: block;
            opacity: 1;
        }
    }

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-left, .footer-right {
        display: flex;
        flex-direction: column;
    }
    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.5rem 0;
    }
    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1.5rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-line {
        margin: 0.4rem 0;
    }
    .contact-line a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .copyright-disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin: 0;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-left, .footer-right {
            width: 100%;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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

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

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

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

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

.header {
        background-color: var(--surface-1);
        color: var(--fg-on-surface);
        border-bottom: 1px solid var(--border-on-surface);
        position: sticky;
        top: 0;
        z-index: 1000;
        font-family: var(--font-family);
        font-size: var(--font-size-base);
        line-height: var(--line-height-base);
    }
    .header__container {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: var(--space-y) var(--space-x);
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }
    .header__logo {
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--brand);
        text-decoration: none;
        z-index: 1002;
    }
    .header__burger {
        display: none;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1002;
    }
    .burger__line {
        display: block;
        height: 2px;
        width: 100%;
        background-color: var(--fg-on-surface);
        border-radius: var(--radius-sm);
        transition: transform var(--anim-duration) var(--anim-ease), opacity var(--anim-duration) var(--anim-ease);
    }
    .header__nav {
        display: flex;
    }
    .nav__list {
        display: flex;
        list-style: none;
        margin: 0;
        padding: 0;
        gap: var(--gap);
    }
    .nav__link {
        color: var(--link);
        text-decoration: none;
        padding: 0.5rem 1rem;
        border-radius: var(--radius-md);
        transition: background-color var(--anim-duration) var(--anim-ease), color var(--anim-duration) var(--anim-ease);
    }
    .nav__link:hover,
    .nav__link:focus {
        color: var(--link-hover);
        background-color: var(--btn-ghost-bg-hover);
        outline: 2px solid var(--ring);
        outline-offset: 2px;
    }
    .header__overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--overlay);
        z-index: 999;
        opacity: 0;
        transition: opacity var(--anim-duration) var(--anim-ease);
    }

    @media (max-width: 767px) {
        .header__burger {
            display: flex;
        }
        .header__nav {
            position: fixed;
            top: 0;
            right: -100%;
            height: 100vh;
            width: 280px;
            max-width: 85%;
            background-color: var(--surface-2);
            padding: 5rem 2rem 2rem;
            z-index: 1001;
            transition: right var(--anim-duration) var(--anim-ease);
            box-shadow: var(--shadow-lg);
            overflow-y: auto;
        }
        .header__nav.is-open {
            right: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(1) {
            transform: translateY(0.65rem) rotate(45deg);
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(2) {
            opacity: 0;
        }
        .header__burger[aria-expanded="true"] .burger__line:nth-child(3) {
            transform: translateY(-0.65rem) rotate(-45deg);
        }
        .nav__list {
            flex-direction: column;
            gap: 1rem;
        }
        .nav__link {
            display: block;
            padding: 0.75rem 1rem;
        }
        .header__overlay.is-active {
            display: block;
            opacity: 1;
        }
    }

.footer-container {
        background-color: #f8f9fa;
        color: #333;
        padding: 3rem 1.5rem 1.5rem;
        border-top: 1px solid #dee2e6;
        font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        line-height: 1.6;
    }
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    .footer-left, .footer-right {
        display: flex;
        flex-direction: column;
    }
    .logo {
        font-size: 2rem;
        font-weight: 700;
        color: #2c3e50;
        margin: 0 0 0.5rem 0;
    }
    .tagline {
        color: #7f8c8d;
        font-style: italic;
        margin-bottom: 1.5rem;
    }
    .contact-info {
        margin-bottom: 1.5rem;
    }
    .contact-line {
        margin: 0.4rem 0;
    }
    .contact-line a {
        color: #3498db;
        text-decoration: none;
    }
    .contact-line a:hover {
        text-decoration: underline;
    }
    .social-links {
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }
    .social-links a {
        color: #555;
        text-decoration: none;
        padding: 0.3rem 0;
        font-size: 0.9rem;
    }
    .social-links a:hover {
        color: #2980b9;
        text-decoration: underline;
    }
    .footer-nav ul {
        list-style: none;
        padding: 0;
        margin: 0 0 1.5rem 0;
    }
    .footer-nav li {
        margin-bottom: 0.7rem;
    }
    .footer-nav a {
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.05rem;
    }
    .footer-nav a:hover {
        color: #e74c3c;
        text-decoration: underline;
    }
    .legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #ddd;
    }
    .legal-links a {
        color: #7f8c8d;
        text-decoration: none;
        font-size: 0.9rem;
    }
    .legal-links a:hover {
        color: #3498db;
        text-decoration: underline;
    }
    .copyright-disclaimer {
        font-size: 0.8rem;
        color: #95a5a6;
        margin: 0;
        line-height: 1.5;
    }
    @media (max-width: 768px) {
        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        .footer-left, .footer-right {
            width: 100%;
        }
        .legal-links {
            flex-direction: column;
            gap: 0.8rem;
        }
    }

.cookie-lv8 {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;
        z-index: 1200;
        border: 1px solid var(--border-on-surface-light);
        border-radius: 12px;
        background: var(--surface-1);
        color: var(--fg-on-page);
        box-shadow: var(--shadow-sm);
    }

    .cookie-lv8__wrap {
        max-width: var(--max-w);
        margin: 0 auto;
        padding: 14px 12px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: var(--gap);
        flex-wrap: wrap;
    }

    .cookie-lv8__wrap p {
        margin: 0;
        color: var(--neutral-600);
    }

    .cookie-lv8__actions {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
    }

    .cookie-lv8__actions button {
        border: 0;
        border-radius: 999px;
        background: var(--neutral-100);
        color: var(--fg-on-page);
        padding: 7px 11px;
        cursor: pointer;
    }

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

    @media (max-width: 760px) {
        .cookie-lv8 {
            border-radius: var(--radius-lg);
        }
    }

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