        /* ============================================================
           P&D REPRESENTACIONES — HOMEPAGE MOCKUP v1
           Paleta: Azul #0070C0 · Gris #3A3F47 · Plata #C0C0C0 · Negro #1A1A1A
           Tipografía: Playfair Display (headings) · Inter (body) · Courier New (sentencias)
           ============================================================ */

        :root {
            --pyd-primary: #0070C0;
            --pyd-primary-dark: #005A9E;
            --pyd-text: #3A3F47;
            --pyd-text-light: #6B7280;
            --pyd-heading: #1A1A1A;
            --pyd-bg: #FAFAF9;
            --pyd-bg-alt: #F3F3F1;
            --pyd-silver: #C0C0C0;
            --pyd-dark: #1A1A1A;
            --pyd-dark-soft: #2D2D2D;
            --pyd-border: #E5E7EB;
            --pyd-success: #059669;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            color: var(--pyd-text);
            line-height: 1.6;
            background: var(--pyd-bg);
            -webkit-font-smoothing: antialiased;
        }

        /* ── HEADER / NAV → centralizado en global.css ── */

        /* ── BLUEPRINT GRID (4 layers, each drawn from a different direction) ── */

        .pyd-blueprint {
            position: relative;
            overflow: hidden;
        }

        .pyd-blueprint > * {
            position: relative;
            z-index: 1;
        }

        /* ── Blueprint: individual lines drawn like a pencil ── */
        .bp-container {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
            -webkit-mask-image: radial-gradient(ellipse at top left, transparent 30%, rgba(0,0,0,0.2) 45%, rgba(0,0,0,1) 65%);
            mask-image: radial-gradient(ellipse at top left, transparent 30%, rgba(0,0,0,0.2) 45%, rgba(0,0,0,1) 65%);
        }

        /* Individual line — horizontal */
        .bp-line-h {
            position: absolute;
            left: 0; right: 0;
            height: 1px;
            transform: scaleX(0);
            transform-origin: right center;
        }
        /* Horizontales grandes: se dibujan lento con degradado de opacidad */
        .bp-line-h.bp-big  {
            background: linear-gradient(to left, rgba(0,112,192,0.25), rgba(0,112,192,0.03));
        }
        /* Horizontales pequeñas: aparecen (fade in) */
        .bp-line-h.bp-small {
            background: linear-gradient(to left, rgba(0,112,192,0.10), rgba(0,112,192,0.01));
            opacity: 0;
            transition: opacity 1.2s ease-in;
        }
        .bp-line-h.bp-small.bp-appear { opacity: 1; transform: scaleX(1); }

        /* Verticales: NO se dibujan, aparecen (fade in) */
        .bp-line-v {
            position: absolute;
            top: 0; bottom: 0;
            width: 1px;
            transform: scaleY(1); /* ya visible, solo falta opacity */
            opacity: 0;
            transition: opacity 1s ease-in;
        }
        .bp-line-v.bp-big  { background: rgba(0,112,192,0.20); }
        .bp-line-v.bp-big.bp-appear { opacity: 1; }
        .bp-line-v.bp-small { background: rgba(0,112,192,0.08); }
        .bp-line-v.bp-small.bp-appear { opacity: 1; }

        /* Draw animation — solo horizontales, mucho más lento */
        .bp-line-h.bp-drawn { animation: drawLineH 3s ease-out forwards; }

        @keyframes drawLineH {
            0%   { transform: scaleX(0); }
            100% { transform: scaleX(1); }
        }

        /* ── HERO (Split Layout) ── */

        .pyd-hero-wrapper {
            background: var(--pyd-bg);
        }

        .pyd-hero {
            position: relative;
            z-index: 1;
            margin-top: 80px;
            min-height: calc(100vh - 80px);
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            gap: 48px;
            max-width: 1320px;
            margin-left: auto;
            margin-right: auto;
            padding: 64px 48px;
        }

        .pyd-hero__content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .pyd-hero__tagline {
            font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--pyd-primary);
            margin-bottom: 24px;
        }

        .pyd-hero__title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(36px, 4vw, 56px);
            font-weight: 700;
            color: var(--pyd-heading);
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .pyd-hero__subtitle {
            font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 17px;
            font-weight: 400;
            color: var(--pyd-text-light);
            line-height: 1.8;
            margin-bottom: 40px;
        }

        .pyd-hero__actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .pyd-hero__image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
            aspect-ratio: 3/4;
            max-height: 580px;
        }

        /* Dual-layer slides (patrón Lamborghini) */
        .hero-slide {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1.2s ease-in-out;
        }

        .hero-slide.active {
            opacity: 1;
        }

        .hero-slide img,
        .hero-slide video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        /* Video layer: invisible until JS confirms frames are decoded */
        .hero-slide__video {
            opacity: 0;
            transition: opacity 1.2s ease;
        }

        .hero-slide__video.video-ready {
            opacity: 1;
            transition: opacity 0.6s ease; /* fade-in rápido, fade-out lento */
        }

        /* Ocultar poster cuando el video está visible — evita flash poster→imagen */
        .hero-slide--video .hero-slide__poster.poster-hidden {
            opacity: 0;
        }

        .pyd-hero__card-wrapper {
            position: relative;
            /* Extra space around for badges that float outside the card */
            padding: 24px;
            margin: -24px;
        }

        .pyd-hero__image {
            animation: cardFloat 6s ease-in-out infinite;
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }

        /* Responsive text helpers */
        .mobile-text { display: none; }

        /* Floating badges — positioned ON the card */
        .pyd-hero__badge {
            position: absolute;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(8px);
            border-radius: 10px;
            padding: 8px 14px;
            font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 12px;
            font-weight: 600;
            color: var(--pyd-heading);
            box-shadow: 0 4px 20px rgba(0,0,0,0.12);
            z-index: 3;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 6px;
            opacity: 0;
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .pyd-hero__badge.visible {
            opacity: 1;
            transform: translateY(0) !important;
        }

        .pyd-hero__badge .badge-icon {
            font-size: 14px;
            line-height: 1;
            flex-shrink: 0;
        }


        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 6px;
            font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 15px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            border: none;
        }

        .btn--primary {
            background: var(--pyd-primary);
            color: white;
        }

        .btn--primary:hover {
            background: var(--pyd-primary-dark);
            transform: translateY(-1px);
        }

        .btn--outline {
            background: white;
            color: var(--pyd-heading);
            border: 1.5px solid var(--pyd-border);
        }

        .btn--outline:hover {
            border-color: var(--pyd-heading);
            background: white;
        }

        .btn--dark {
            background: var(--pyd-dark);
            color: white;
        }

        .btn--dark:hover {
            background: #333;
        }

        /* scroll indicator removed — split hero doesn't need it */

        /* ── SECCIONES GENÉRICAS ── */

        .section {
            padding: 96px 48px;
        }

        .section--alt {
            background: var(--pyd-bg-alt);
        }

        .section--dark {
            background: var(--pyd-dark);
            color: white;
        }

        .section__container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section__label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--pyd-primary);
            margin-bottom: 16px;
        }

        .section--dark .section__label {
            color: var(--pyd-silver);
        }

        .section__title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 700;
            color: var(--pyd-heading);
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .section--dark .section__title {
            color: white;
        }

        .section__subtitle {
            font-size: 17px;
            color: var(--pyd-text-light);
            max-width: 600px;
            line-height: 1.7;
        }

        .section--dark .section__subtitle {
            color: rgba(255,255,255,0.7);
        }

        /* ── PROPUESTA DE VALOR (3 columnas) ── */

        .value-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px;
            margin-top: 64px;
        }

        .value-card {
            text-align: center;
            padding: 0 16px;
        }

        .value-card__icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: var(--pyd-bg-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 28px;
        }

        .value-card__title {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 600;
            color: var(--pyd-heading);
            margin-bottom: 12px;
        }

        .value-card__text {
            font-size: 15px;
            color: var(--pyd-text-light);
            line-height: 1.7;
        }

        /* ── PRODUCTOS DESTACADOS ── */

        .products-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .product-card {
            background: #FFFFFF;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--pyd-border);
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(0,0,0,0.08);
        }

        .product-card__image {
            height: 280px;
            background: linear-gradient(135deg, #E5E7EB 0%, #D1D5DB 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            color: var(--pyd-silver);
        }

        .product-card__body {
            padding: 24px;
        }

        .product-card__category {
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--pyd-primary);
            margin-bottom: 8px;
        }

        .product-card__name {
            font-family: 'Playfair Display', serif;
            font-size: 20px;
            font-weight: 600;
            color: var(--pyd-heading);
            margin-bottom: 8px;
        }

        .product-card__desc {
            font-size: 14px;
            color: var(--pyd-text-light);
            margin-bottom: 16px;
            line-height: 1.6;
        }

        .product-card__footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .product-card__price {
            font-size: 22px;
            font-weight: 700;
            color: var(--pyd-heading);
        }

        .product-card__price small {
            font-size: 13px;
            font-weight: 400;
            color: var(--pyd-text-light);
        }

        .product-card__btn {
            padding: 10px 20px;
            font-size: 13px;
        }

        .badge-ec {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11px;
            font-weight: 600;
            color: var(--pyd-text-light);
            background: var(--pyd-bg-alt);
            padding: 4px 10px;
            border-radius: 4px;
            margin-top: 12px;
        }

        /* ── CLIENTES ── */

        .clients-section {
            text-align: center;
        }

        /* clients-grid replaced by marquee */

        /* ── MARQUEE CLIENTES ── */

        .marquee-wrapper {
            overflow: hidden;
            margin-top: 48px;
            margin-left: calc(-50vw + 50%);
            margin-right: calc(-50vw + 50%);
            padding: 48px 0;
            position: relative;
            background: #DDDDD8;
        }

        .marquee-wrapper::before,
        .marquee-wrapper::after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 80px;
            z-index: 2;
            pointer-events: none;
        }

        .marquee-wrapper::before {
            left: 0;
            background: linear-gradient(to right, #DDDDD8, transparent);
        }

        .marquee-wrapper::after {
            right: 0;
            background: linear-gradient(to left, #DDDDD8, transparent);
        }

        .marquee-track {
            display: flex;
            align-items: center;
            gap: 80px;
            animation: marquee 90s linear infinite;
            width: max-content;
        }

        .marquee-track:hover {
            animation-play-state: paused;
        }

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

        .client-logo {
            flex-shrink: 0;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0.45;
            filter: grayscale(100%);
            transition: all 0.4s;
        }

        .client-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .client-logo img {
            max-height: 110px;
            max-width: 280px;
            width: auto;
            object-fit: contain;
        }

        .client-logo--text {
            font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-weight: 700;
            font-size: 18px;
            color: var(--pyd-heading);
            text-align: center;
            letter-spacing: 1px;
            line-height: 1.3;
            white-space: nowrap;
        }

        /* ── TRANSPARENCIA RADICAL ── */

        .transparency {
            text-align: center;
        }

        .transparency__stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px;
            margin: 56px 0 48px;
        }

        .stat {
            text-align: center;
        }

        .stat__number {
            font-family: 'Playfair Display', serif;
            font-size: 56px;
            font-weight: 700;
            color: var(--pyd-primary);
            line-height: 1;
            margin-bottom: 8px;
        }

        .section--dark .stat__number {
            color: white;
        }

        .stat__label {
            font-size: 14px;
            color: rgba(255,255,255,0.6);
            font-weight: 500;
        }

        .transparency__sentence {
            font-family: 'Courier New', Courier, monospace;
            font-size: 15px;
            letter-spacing: 0.3px;
            color: rgba(255,255,255,0.9);
            margin: 40px 0 48px;
            padding: 24px;
            border-top: 1px solid rgba(255,255,255,0.15);
            border-bottom: 1px solid rgba(255,255,255,0.15);
        }

        /* ── CADENA DE VALOR ── */

        .chain {
            display: flex;
            align-items: flex-start;
            gap: 0;
            margin-top: 56px;
            position: relative;
        }

        .chain__step {
            flex: 1;
            text-align: center;
            padding: 0 16px;
            position: relative;
        }

        .chain__step::after {
            content: '→';
            position: absolute;
            right: -8px;
            top: 24px;
            font-size: 20px;
            color: var(--pyd-silver);
        }

        .chain__step:last-child::after {
            display: none;
        }

        .chain__icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--pyd-primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            font-size: 22px;
        }

        .chain__title {
            font-family: 'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 14px;
            font-weight: 700;
            color: var(--pyd-heading);
            margin-bottom: 6px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .chain__desc {
            font-size: 13px;
            color: var(--pyd-text-light);
            line-height: 1.5;
        }

        /* ── NEWSLETTER ── */

        .newsletter {
            text-align: center;
            max-width: 540px;
            margin: 0 auto;
        }

        .newsletter__form {
            margin-top: 24px;
        }

        /* ── SCROLL TO TOP ── */

        .scroll-top {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--pyd-dark);
            border: 0.5px solid rgba(255,255,255,0.3);
            color: white;
            cursor: pointer;
            z-index: 100;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease, transform 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .scroll-top.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .scroll-top:hover {
            transform: scale(1.1);
        }

        /* ── FOOTER → centralizado en global.css ── */

        /* ── RESPONSIVE ── */

        @media (max-width: 768px) {
            /* Navbar mobile → centralizado en global.css */

            /* ── 2. HERO: más espacio card, 2 badges ── */
            .section {
                padding: 64px 20px;
            }

            .pyd-hero {
                grid-template-columns: 1fr;
                min-height: auto;
                padding: 40px 20px;
                gap: 32px;
                margin-top: 72px;
            }

            .pyd-hero__content {
                text-align: center;
            }

            .pyd-hero__actions {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 12px;
                width: 100%;
            }

            .pyd-hero__actions .btn {
                justify-content: center;
                text-align: center;
                padding: 14px 16px;
            }

            .pyd-hero__card-wrapper {
                padding: 16px 16px 32px;
                overflow: hidden;
            }

            .pyd-hero__image {
                max-height: 500px;
                animation: none;
            }

            .pyd-hero__decoration {
                display: none;
            }



            .pyd-hero__badge {
                max-width: 75%;
                font-size: 11px;
                white-space: normal;
            }

            /* Móvil: posiciones controladas por JS mobile */

            .pyd-hero {
                gap: 48px; /* más espacio entre botones y card */
            }

            /* ── Chevrones + pills kawaii ── */
            .carousel-wrap {
                position: relative;
            }

            /* Chevron base */
            .carousel-chevron {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                z-index: 10;
                font-size: 14px;
                color: rgba(0,0,0,0.4);
                background: rgba(200,200,200,0.5);
                border: 0.5px solid rgba(255,255,255,0.8);
                backdrop-filter: blur(4px);
                border-radius: 50%;
                width: 32px;
                height: 32px;
                line-height: 32px;
                text-align: center;
                cursor: pointer;
                transition: opacity 0.4s ease;
                padding: 0;
            }

            .carousel-chevron--right {
                right: 6px;
                animation: swipePulseRight 1.5s ease-in-out infinite;
            }

            .carousel-chevron--left {
                left: 6px;
                opacity: 0;
                pointer-events: none;
                animation: swipePulseLeft 1.5s ease-in-out infinite;
            }

            /* Mostrar chevron izquierdo en cards intermedias */
            .carousel-wrap.show-left .carousel-chevron--left {
                opacity: 1;
                pointer-events: auto;
            }

            /* Ocultar chevron derecho en última card */
            .carousel-wrap.hide-right .carousel-chevron--right {
                opacity: 0;
                pointer-events: none;
            }

            /* Al deslizar: ocultar chevrones, mostrar pill */
            .carousel-wrap.scrolling .carousel-chevron {
                opacity: 0 !important;
                pointer-events: none;
            }

            @keyframes swipePulseRight {
                0%, 100% { transform: translateY(-50%); }
                50% { transform: translateY(-50%) translateX(4px); }
            }

            @keyframes swipePulseLeft {
                0%, 100% { transform: translateY(-50%); }
                50% { transform: translateY(-50%) translateX(-4px); }
            }

            /* Pills: ocultas por defecto en móvil */
            .chain-indicator {
                opacity: 0;
                transition: opacity 0.4s ease;
            }

            .chain-indicator.pill-visible {
                opacity: 1;
            }

            /* ── 3. CADENA DE VALOR: carrusel horizontal con cards ── */
            .chain {
                flex-direction: row;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                gap: 0;
                padding-bottom: 8px;
                margin: 0;
                scrollbar-width: none;
            }

            .chain::-webkit-scrollbar {
                display: none;
            }

            .chain__step {
                flex: 0 0 100%;
                scroll-snap-align: center;
                scroll-snap-stop: always;
                background: white;
                border-radius: 16px;
                padding: 32px 24px;
                margin: 0 10%;
                width: 80%;
                box-sizing: border-box;
                border: 1px solid rgba(0,0,0,0.08);
                box-shadow: 0 4px 24px rgba(0,0,0,0.08);
                text-align: center;
            }

            .chain__step::after {
                display: none;
            }

            /* Progress indicator: dots + línea que avanza */
            .chain-indicator {
                display: flex;
                justify-content: center;
                margin: 16px 0;
            }

            .chain-indicator__track {
                position: relative;
                display: flex;
                align-items: center;
                background: var(--pyd-dark);
                border: 0.5px solid rgba(255,255,255,0.3);
                border-radius: 20px;
                padding: 10px 20px;
                width: 230px;
            }

            /* Línea base: invisible — solo la de progreso se ve */
            .chain-indicator__line {
                display: none;
            }

            /* Línea de progreso (blanca, se traza al avanzar) */
            .chain-indicator__progress {
                position: absolute;
                top: 50%;
                left: 20px;
                height: 10px;
                background: white;
                transform: translateY(-50%);
                border-radius: 5px;
                width: 10px;
                transition: width 0.3s ease;
                z-index: 2;
            }

            .chain-indicator__dots {
                display: flex;
                justify-content: space-between;
                align-items: center;
                width: 100%;
                position: relative;
                z-index: 1;
            }

            .chain-indicator__dot {
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: rgba(255,255,255,0.3);
                border: none;
                transition: all 0.3s ease;
                box-sizing: border-box;
                flex-shrink: 0;
                cursor: pointer;
            }

            /* Visitados: grandes, la línea los cubre */
            .chain-indicator__dot.visited {
                width: 10px;
                height: 10px;
                background: transparent;
            }

            .chain-indicator__dot.active {
                width: 10px;
                height: 10px;
                background: transparent;
            }

            /* Primer dot: la línea lo cubre, no necesita ser visible aparte */

            /* ── 4. SECCIONES GENERALES ── */
            .value-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            /* Productos: carrusel horizontal como cadena de valor */
            .products-grid {
                display: flex;
                flex-direction: row;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                -webkit-overflow-scrolling: touch;
                gap: 0;
                scrollbar-width: none;
            }

            .products-grid::-webkit-scrollbar {
                display: none;
            }

            .products-grid .product-card {
                flex: 0 0 100%;
                scroll-snap-align: center;
                scroll-snap-stop: always;
                margin: 0 10%;
                width: 80%;
                box-sizing: border-box;
            }

            /* Ocultar botón inline, mostrarlo abajo */
            .products-header .btn {
                display: none;
            }

            .products-btn-mobile {
                display: flex;
                justify-content: center;
                margin-top: 24px;
            }

            .products-indicator { margin-top: 16px; margin-bottom: 8px; }

            /* Stats: carrusel auto-rotante */
            .transparency__stats {
                display: flex;
                position: relative;
                overflow: hidden;
                height: 140px;
                align-items: center;
                justify-content: center;
            }

            .transparency__stats .stat {
                position: absolute;
                inset: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                opacity: 0;
                transition: opacity 0.6s ease;
            }

            .transparency__stats .stat.stat--visible {
                opacity: 1;
            }

            .mobile-text { display: inline; }
            .desktop-text { display: none; }

            .newsletter {
                max-width: 100%;
                padding: 0 16px;
            }

            .newsletter__form {
                flex-direction: column;
                align-items: stretch;
            }

            .newsletter__input {
                width: 100%;
            }

            .newsletter__form .btn {
                width: 100%;
                justify-content: center;
                text-align: center;
            }

            /* ── 5. FOOTER: tabs móvil ── */
            .footer__grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            /* Ocultar columnas originales en móvil (Legal se mantiene visible) */
            .footer__col--productos,
            .footer__col--empresa {
                display: none;
            }

            /* Idiomas: lista full-width en móvil */
            .footer__lang-inline {
                display: none;
            }

            .footer__lang {
                position: relative;
                margin: 16px -20px 0;
                padding: 0;
                gap: 0;
            }

            .footer__lang-btn {
                display: flex !important;
                align-items: center;
                justify-content: center;
                gap: 8px;
                width: auto;
                margin: 0 auto;
                padding: 10px 24px;
                background: rgba(255,255,255,0.06);
                border: 0.5px solid rgba(255,255,255,0.15);
                border-radius: 20px;
                color: rgba(255,255,255,0.7);
                font-family: 'Archivo', sans-serif;
                font-size: 13px;
                cursor: pointer;
            }

            .footer__lang-btn::after {
                content: '▲';
                font-size: 10px;
                opacity: 0.5;
                transition: transform 0.2s;
            }

            .footer__lang-btn.open::after {
                transform: rotate(180deg);
            }

            .footer__lang-list {
                display: none;
                position: absolute;
                bottom: calc(100% + 8px);
                left: 50%;
                transform: translateX(-50%);
                background: var(--pyd-dark-soft);
                border: 0.5px solid rgba(255,255,255,0.15);
                border-radius: 12px;
                overflow: hidden;
                min-width: 160px;
                box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
            }

            .footer__lang-list.open {
                display: block;
            }

            .footer__lang-list a {
                display: block;
                padding: 14px;
                text-align: center;
                color: rgba(255,255,255,0.6);
                text-decoration: none;
                font-family: 'Archivo', sans-serif;
                font-size: 15px;
                border-bottom: 1px solid rgba(255,255,255,0.05);
            }

            .footer__lang-list a.active {
                color: white;
                background: rgba(255,255,255,0.05);
            }

            .footer__bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }
        }

        .footer__lang {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            padding: 16px 0 0;
            font-family: 'Archivo', sans-serif;
            font-size: 14px;
        }

        .footer__lang-inline {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
        }

        .footer__lang-inline.active {
            color: white;
        }

        /* Ocultar dropdown en desktop, inline en mobile */
        .footer__lang-btn,
        .footer__lang-list {
            display: none;
        }

        /* Hamburger, indicadores y elementos mobile ocultos en desktop */
        @media (min-width: 769px) {
            /* .pyd-header__hamburger hide → global.css */
            .chain-indicator {
                display: none;
            }
            .products-btn-mobile {
                display: none;
            }
            .carousel-chevron {
                display: none;
            }
        }

        /* ── FOOTER SOCIALS ── */

        .footer__socials {
            display: flex;
            gap: 14px;
            margin-top: 16px;
            margin-bottom: 24px;
        }

        .footer__socials a {
            color: rgba(255,255,255,0.45);
            transition: color 0.2s;
        }

        .footer__socials a:hover {
            color: white;
        }

        /* ── Mega dropdown, overlay, hamburger, admin-bar → centralizado en global.css ── */
