        :root {
            /* EonLifex palette */
            --dark-blue: #2e2c72;
            --bright-green: #007b55;
            --white: #ffffff;
            --bg-color: #f4f7f9;
            --text-color: #4d4d4d;
            --heading-color: #2e2c72;
            --glass-bg: rgba(255, 255, 255, 0.65);
            --glass-border: rgba(255, 255, 255, 0.3);
            --scroll-bar-bg: #e0e0e0;
            --scroll-bar-thumb: var(--bright-green);
        }

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

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-color);
            overflow-x: hidden;
        }
        
        body::-webkit-scrollbar {
            width: 10px;
        }
        body::-webkit-scrollbar-track {
            background: var(--scroll-bar-bg);
        }
        body::-webkit-scrollbar-thumb {
            background-color: var(--scroll-bar-thumb);
            border-radius: 10px;
            border: 2px solid var(--scroll-bar-bg);
        }

        #bg-canvas {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            z-index: 0; /* ensure animation sits above body background */
        }

        .content-wrapper {
            position: relative;
            z-index: 1;
            /* Espacio para que el menú fijo no cubra el inicio */
            padding-top: calc(7rem + env(safe-area-inset-top));
        }

        /* Los estilos de la barra de navegación ahora se controlan desde new_nav.css */

        .section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 120px 5%;
            opacity: 1;
            transform: none;
            transition: opacity 0.8s ease-out, transform 0.8s ease-out;
            width: 100%;
            text-align: center;
        }

        .section-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.35rem 1.1rem;
            border-radius: 999px;
            background: rgba(0, 123, 85, 0.1);
            color: var(--bright-green);
            text-transform: uppercase;
            font-size: 0.8rem;
            letter-spacing: 0.15em;
            margin-bottom: 1.5rem;
        }

        .brand-overview {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
        }

        .brand-overview__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: clamp(1.8rem, 4vw, 2.8rem);
            text-align: left;
        }

        .brand-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 24px;
            padding: clamp(2rem, 4vw, 2.8rem);
            box-shadow: 0 18px 34px rgba(32, 60, 87, 0.12);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .card-icon {
            width: 4.6rem;
            height: 4.6rem;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, rgba(94, 255, 212, 0.35), rgba(0, 123, 85, 0.5));
            color: var(--dark-blue);
            font-size: 2.2rem;
            box-shadow: 0 18px 34px rgba(32, 60, 87, 0.18);
            overflow: hidden;
        }

        .card-icon img {
            width: 2.8rem;
            height: 2.8rem;
        }

        .brand-card h3 {
            color: var(--dark-blue);
        }

        .brand-card p {
            margin-bottom: 0;
        }

        .brand-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .brand-card li {
            position: relative;
            padding-left: 1.5rem;
        }

        .brand-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6rem;
            width: 0.55rem;
            height: 0.55rem;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--bright-green), #2e2c72);
            box-shadow: 0 0 12px rgba(0, 150, 94, 0.35);
        }

        .flash-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .flash-list span {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.45rem 1.1rem;
            border-radius: 999px;
            background: rgba(0, 123, 85, 0.15);
            color: var(--dark-blue);
            font-weight: 600;
            font-size: 0.95rem;
            letter-spacing: 0.02em;
            box-shadow: 0 10px 20px rgba(32, 60, 87, 0.08);
        }

        .story-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: clamp(1.8rem, 4vw, 2.8rem);
            text-align: left;
        }

        .story-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 24px;
            padding: clamp(2rem, 4vw, 2.8rem);
            box-shadow: 0 20px 36px rgba(32, 60, 87, 0.14);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .story-card h3 {
            color: var(--dark-blue);
        }

        .story-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }

        .story-card li {
            position: relative;
            padding-left: 1.5rem;
        }

        .story-card li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0.6rem;
            width: 0.55rem;
            height: 0.55rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #5fffd4, #00c6ff);
            box-shadow: 0 0 12px rgba(0, 150, 94, 0.35);
        }

        .icon-circle {
            width: 5rem;
            height: 5rem;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(46, 44, 114, 0.14), rgba(0, 123, 85, 0.28));
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2.4rem;
            margin-bottom: 1.4rem;
            box-shadow: 0 22px 36px rgba(16, 43, 63, 0.18);
        }

        .eon-universe,
        .formula-section,
        .experience-section {
            display: flex;
            flex-direction: column;
            gap: clamp(2.2rem, 4vw, 3.2rem);
        }

        .universe-grid,
        .formula-grid,
        .experience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: clamp(1.8rem, 4vw, 2.6rem);
        }

        .universe-grid {
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        }

        .universe-card {
            background: rgba(6, 16, 37, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: clamp(2rem, 4vw, 2.6rem);
            text-align: left;
            color: #f4f7f9;
            position: relative;
            overflow: hidden;
        }

        .universe-card::after {
            content: '';
            position: absolute;
            top: -30%;
            right: -25%;
            width: 140px;
            height: 140px;
            background: radial-gradient(circle at center, rgba(94, 255, 212, 0.35), transparent 60%);
            filter: blur(2px);
        }

        .universe-card h3 {
            color: #ffffff;
            margin-bottom: 0.6rem;
        }

        .universe-card p {
            margin-bottom: 1.1rem;
            line-height: 1.55;
        }

        .tag-strip {
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem;
        }

        .tag-strip span {
            background: rgba(94, 255, 212, 0.16);
            border: 1px solid rgba(94, 255, 212, 0.35);
            border-radius: 999px;
            padding: 0.3rem 1rem;
            font-size: 0.78rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
        }

        .universe-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1rem;
        }

        .metric-pill {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 999px;
            padding: 1.2rem 1.8rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.4rem;
            box-shadow: 0 12px 24px rgba(32, 60, 87, 0.12);
        }

        .metric-pill strong {
            font-size: 1.25rem;
            color: var(--dark-blue);
            letter-spacing: 0.1em;
        }

        .formula-card,
        .experience-card {
            background: rgba(255, 255, 255, 0.94);
            border-radius: 26px;
            padding: clamp(2rem, 4vw, 2.6rem);
            text-align: left;
            box-shadow: 0 22px 38px rgba(32, 60, 87, 0.14);
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
        }

        .experience-card {
            box-shadow: 0 22px 40px rgba(32, 60, 87, 0.16);
        }

        .formula-card h3,
        .experience-card h3 {
            color: var(--dark-blue);
        }

        .formula-card ul,
        .experience-card ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.4rem;
            margin: 0;
            padding: 0;
        }

        .formula-card ul li::before {
            content: '✦';
            margin-right: 0.5rem;
            color: var(--bright-green);
        }

        .experience-card ul li::before {
            content: '➤';
            margin-right: 0.5rem;
            color: var(--bright-green);
        }

        .formula-timeline {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: clamp(1.5rem, 4vw, 2.2rem);
        }

        .timeline-item {
            background: rgba(6, 16, 37, 0.88);
            color: #f4f7f9;
            border-radius: 24px;
            padding: clamp(1.8rem, 4vw, 2.4rem);
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
            text-align: left;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .timeline-icon {
            width: 3.2rem;
            height: 3.2rem;
            border-radius: 50%;
            display: grid;
            place-items: center;
            background: linear-gradient(135deg, rgba(94, 255, 212, 0.24), rgba(0, 123, 85, 0.38));
            color: #04102b;
            font-size: 1.4rem;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: clamp(1.5rem, 4vw, 2.5rem);
            margin-top: 2.5rem;
        }
        .benefit-card {
            position: relative;
            padding: clamp(1.8rem, 4vw, 2.4rem);
            border-radius: 22px;
            background: linear-gradient(160deg, rgba(255,255,255,0.92), rgba(232,244,240,0.9));
            box-shadow: 0 18px 32px rgba(25, 59, 74, 0.12);
            text-align: left;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .benefit-card::after {
            content: "";
            position: absolute;
            inset: 15% -25% -25% 45%;
            background: radial-gradient(circle, rgba(0,150,94,0.18) 0%, transparent 65%);
            z-index: 0;
        }
        .benefit-card i {
            font-size: 2.8rem;
            color: var(--bright-green);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        .benefit-card h3,
        .benefit-card p {
            position: relative;
            z-index: 1;
        }
        .benefit-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 22px 38px rgba(32, 60, 87, 0.18);
        }

        body.has-scroll-animations.animations-ready .section {
            opacity: 0;
            transform: translateY(50px);
        }

        body.has-scroll-animations.animations-ready .section.is-visible {
            opacity: 1;
            transform: translateY(0);
        }

        @media (prefers-reduced-motion: reduce) {
            body.has-scroll-animations .section,
            body.has-scroll-animations.animations-ready .section {
                opacity: 1;
                transform: none;
            }
        }

        .content-box {
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            border-radius: 25px;
            padding: 40px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            max-width: 1200px;
            width: 100%;
            box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
        }
        
        .hero-section {
            position: relative;
            overflow: hidden;
            min-height: 90vh;
        }
        .hero-section .content-box {
             background: transparent;
             border: none;
             backdrop-filter: none;
             box-shadow: none;
             max-width: 800px;
        }

        .logo {
            width: 150px;
            margin-bottom: 24px;
        }

        /* Center the main logo on the hero section */
        .hero-section .logo {
            display: block;
            margin: 0 auto 24px auto;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--heading-color);
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 1rem;
        }
        .section-subtitle {
            font-size: 1.15rem;
            color: #6c757d;
            max-width: 800px;
            margin: 0 auto 60px auto;
        }
        
        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--bright-green);
            margin-bottom: 12px;
        }

        p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 16px;
        }
        
        .lead {
            font-size: 1.25rem;
            font-weight: 300;
            margin: 24px 0;
            color: #333;
        }

        .hero-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.5rem 1.4rem;
            border-radius: 999px;
            background: linear-gradient(135deg, rgba(0, 123, 85, 0.85), rgba(46, 44, 114, 0.85));
            color: var(--white);
            font-size: 0.95rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
        }

        .hero-eyebrow {
            display: inline-block;
            text-transform: uppercase;
            letter-spacing: 0.18em;
            font-size: 0.78rem;
            color: var(--bright-green);
            background: rgba(0, 123, 85, 0.12);
            padding: 0.35rem 1rem;
            border-radius: 999px;
        }

        .hero-copy {
            text-align: left;
            max-width: 960px;
            margin: 0 auto;
        }

        .hero-points {
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 2.5rem;
            display: grid;
            gap: 1rem;
        }

        .hero-points li {
            position: relative;
            padding-left: 2.4rem;
            font-size: 1.05rem;
            line-height: 1.65;
            color: #2f3240;
        }

        .hero-points li::before {
            content: '\2713';
            position: absolute;
            left: 0;
            top: 0.25rem;
            font-size: 1.1rem;
            color: var(--bright-green);
            font-weight: 700;
        }

        .hero-copy .hero-badges {
            justify-content: flex-start;
        }

        .cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: flex-start;
            margin-top: 2.4rem;
        }

        .cta-group .cta-button {
            min-width: 220px;
        }

        .cta-button.secondary {
            background: transparent;
            border: 2px solid var(--bright-green);
            color: var(--bright-green);
        }

        .cta-button.secondary:hover {
            background: var(--bright-green);
            color: var(--white);
        }

        .cta-button.tertiary {
            background: transparent;
            border: 2px solid var(--dark-blue);
            color: var(--dark-blue);
        }

        .cta-button.tertiary:hover {
            background: var(--dark-blue);
            color: var(--white);
        }


        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: clamp(1.2rem, 4vw, 2rem);
            justify-items: center;
            margin-top: 2rem;
        }

        .value-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.9rem;
            text-align: center;
            color: var(--heading-color);
        }

        .value-item i {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: clamp(4.5rem, 8vw, 5.5rem);
            height: clamp(4.5rem, 8vw, 5.5rem);
            border-radius: 50%;
            font-size: clamp(2.2rem, 4vw, 2.8rem);
            background: linear-gradient(135deg, rgba(94, 255, 212, 0.18), rgba(46, 44, 114, 0.38));
            color: var(--white);
            box-shadow: 0 18px 28px rgba(32, 60, 87, 0.18);
        }

        .value-item span {
            font-weight: 600;
            font-size: 1.05rem;
            letter-spacing: 0.02em;
        }

        .cta-button {
            display: inline-block;
            background: var(--bright-green);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0, 150, 94, 0.3);
            margin-top: 20px;
            border: 1px solid transparent;
        }

        .cta-button:hover {
            background: var(--dark-blue);
            color: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(46, 44, 114, 0.4);
        }

        .philosophy-split {
            display: flex;
            gap: 40px;
            margin-top: 30px;
            text-align: left;
        }
        .philosophy-split > div {
            flex: 1;
        }
        .philosophy-split h3 {
            color: var(--dark-blue);
        }

        .carousel-container {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        .values-carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        .value-card {
            flex: 0 0 100%;
            max-width: 100%;
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
            margin: 15px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        @media (min-width: 768px) {
            .value-card {
                flex-basis: calc(50% - 30px);
                max-width: calc(50% - 30px);
            }
        }
        @media (min-width: 992px) {
            .value-card {
                flex-basis: calc(33.33% - 30px);
                max-width: calc(33.33% - 30px);
            }
        }
        .value-card:hover {
            transform: scale(1.05);
            box-shadow: 0 12px 35px rgba(46, 44, 114, 0.15);
        }
        .value-card .icon {
            font-size: 3.5rem;
            color: var(--bright-green);
            margin-bottom: 25px;
        }
        .value-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--dark-blue);
            margin-bottom: 15px;
        }
        .carousel-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: var(--white);
            border: none;
            border-radius: 50%;
            width: 55px;
            height: 55px;
            font-size: 28px;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            z-index: 10;
            color: var(--dark-blue);
            transition: all 0.3s ease;
        }
        .carousel-button:hover {
            background-color: var(--dark-blue);
            color: var(--white);
        }
        .carousel-button.prev { left: -27px; }
        .carousel-button.next { right: -27px; }

        /* EonXCell spotlight */
        #productos {
            position: relative;
            background: radial-gradient(circle at 15% 20%, rgba(95, 255, 212, 0.1), transparent 55%),
                        radial-gradient(circle at 85% 25%, rgba(10, 132, 255, 0.12), transparent 60%),
                        linear-gradient(160deg, #030510 0%, #050916 50%, #040c22 100%);
            overflow: hidden;
        }
        #productos::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url('EonXCell full adn banner.png') center/cover no-repeat;
            opacity: 0.15;
            filter: saturate(130%) blur(2px);
            pointer-events: none;
            z-index: 0;
        }
        #productos .content-box {
            position: relative;
            background: transparent;
            border: none;
            box-shadow: none;
            padding: clamp(2.5rem, 5vw, 4rem);
            color: #f5f5f7;
            z-index: 1;
        }
        #productos .section-title {
            color: #f5f5f7;
        }
        #productos .section-subtitle {
            color: rgba(209, 213, 255, 0.85);
            margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
        }
        .product-spotlight {
            position: relative;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: clamp(2rem, 5vw, 4.5rem);
            align-items: center;
            padding: clamp(2.5rem, 5vw, 4.5rem);
            border-radius: 32px;
            background: linear-gradient(140deg, rgba(10, 16, 34, 0.92) 0%, rgba(6, 13, 30, 0.95) 60%, rgba(12, 20, 42, 0.92) 100%);
            border: 1px solid rgba(255, 255, 255, 0.12);
            box-shadow: 0 28px 55px rgba(3, 7, 18, 0.55);
            overflow: hidden;
            isolation: isolate;
        }
        .product-spotlight::before {
            content: "";
            position: absolute;
            inset: -35%;
            background: url('EonXCell full adn banner.png') center/cover no-repeat;
            opacity: 0.25;
            transform: scale(1.1);
            filter: saturate(120%) blur(2px);
            z-index: -2;
        }
        .product-spotlight::after {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 25% 20%, rgba(95, 255, 212, 0.18), transparent 55%),
                        radial-gradient(circle at 80% 65%, rgba(10, 132, 255, 0.22), transparent 60%);
            mix-blend-mode: screen;
            pointer-events: none;
            z-index: -1;
        }
        .product-spotlight__media {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: clamp(1.5rem, 4vw, 3rem);
        }
        .product-spotlight__media img {
            width: min(100%, 420px);
            filter: drop-shadow(0 25px 45px rgba(5, 9, 22, 0.6));
            position: relative;
            z-index: 2;
        }
        .product-spotlight__glow {
            position: absolute;
            inset: 20% 10%;
            background: radial-gradient(circle, rgba(95, 255, 212, 0.22) 0%, rgba(10, 132, 255, 0.08) 55%, transparent 75%);
            filter: blur(25px);
            z-index: 1;
        }
        .product-spotlight__halo {
            position: absolute;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(10, 132, 255, 0.4) 0%, transparent 70%);
            filter: blur(12px);
            z-index: 0;
        }
        .product-spotlight__copy {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            position: relative;
            z-index: 1;
            text-align: left;
            align-items: flex-start;
            max-width: 560px;
        }
        .product-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.45rem 1.1rem;
            border-radius: 999px;
            background: rgba(95, 255, 212, 0.12);
            border: 1px solid rgba(95, 255, 212, 0.32);
            color: #5fffd4;
            font-size: 0.85rem;
            letter-spacing: 0.12em;
            text-transform: uppercase;
        }
        .product-lead {
            font-size: 1.05rem;
            color: rgba(237, 240, 255, 0.9);
            margin: 0;
        }
        .product-spotlight__badges {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
            margin: 0.5rem 0 0.5rem 0;
        }
        .product-spotlight__badges span {
            display: inline-flex;
            align-items: center;
            padding: 0.35rem 0.95rem;
            border-radius: 999px;
            background: rgba(95, 255, 212, 0.12);
            color: rgba(237, 240, 255, 0.92);
            font-size: 0.85rem;
            letter-spacing: 0.05em;
            border: 1px solid rgba(95, 255, 212, 0.28);
            text-transform: uppercase;
        }
        .product-spotlight__features {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 0.9rem;
            padding: 0;
            margin: 0;
        }
        .product-spotlight__features li {
            position: relative;
            padding-left: 1.75rem;
            color: rgba(215, 224, 255, 0.92);
            line-height: 1.5;
        }
        .product-spotlight__features li::before {
            content: "";
            position: absolute;
            top: 0.55rem;
            left: 0.35rem;
            width: 0.55rem;
            height: 0.55rem;
            border-radius: 50%;
            background: linear-gradient(135deg, #5fffd4 0%, #00c6ff 100%);
            box-shadow: 0 0 12px rgba(95, 255, 212, 0.6);
        }
        .product-spotlight__actions {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
        }
        .product-spotlight__metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 1rem;
            width: 100%;
        }
        .product-spotlight__metrics .metric {
            background: rgba(12, 20, 42, 0.7);
            border: 1px solid rgba(95, 255, 212, 0.22);
            border-radius: 18px;
            padding: 1.2rem 1.3rem;
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
            color: rgba(237, 240, 255, 0.88);
        }
        .product-spotlight__metrics .metric strong {
            font-size: 1.7rem;
            color: #5fffd4;
        }
        .product-spotlight .cta-button {
            background: linear-gradient(140deg, #5fffd4 0%, #00c6ff 45%, #0a84ff 100%);
            color: #041124;
            box-shadow: 0 18px 35px rgba(5, 9, 22, 0.45);
            border: none;
        }
        .product-spotlight .cta-button:hover {
            transform: translateY(-2px) scale(1.02);
            box-shadow: 0 25px 45px rgba(5, 9, 22, 0.55);
        }

        .home-blog {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }
        .home-blog__head {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .home-blog__grid {
            display: grid;
            gap: 1.5rem;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        }
        .home-blog__card {
            background: rgba(255, 255, 255, 0.85);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 18px 34px rgba(46, 44, 114, 0.12);
            display: flex;
            flex-direction: column;
        }
        .home-blog__card .card-media {
            height: 160px;
            background-size: cover;
            background-position: center;
        }
        .home-blog__card .card-body {
            padding: 1.6rem;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            text-align: left;
        }
        .home-blog__card h3 {
            margin: 0;
            font-size: 1.3rem;
            color: var(--heading-color);
        }
        .home-blog__card .meta {
            font-size: 0.85rem;
            color: #6a6891;
        }
        .home-blog__card p {
            font-size: 0.95rem;
            margin: 0;
            color: #5a577d;
        }

        .impact-box {
            position: relative;
            overflow: hidden;
        }
        .impact-box::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 20% 20%, rgba(0,150,94,0.08), transparent 55%),
                        radial-gradient(circle at 80% 40%, rgba(46,44,114,0.08), transparent 60%);
            z-index: 0;
        }
        .impact-metrics {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: clamp(1.5rem, 4vw, 2.5rem);
            margin-top: 2rem;
        }
        .impact-card {
            background: rgba(255,255,255,0.9);
            border-radius: 20px;
            padding: 2rem 1.8rem;
            box-shadow: 0 16px 30px rgba(32, 60, 87, 0.12);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        .impact-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--dark-blue);
        }

        .journey-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: clamp(1.5rem, 4vw, 2.5rem);
            margin-top: 2.5rem;
        }
        .journey-step {
            position: relative;
            padding: clamp(2rem, 4vw, 2.6rem) clamp(1.8rem, 3vw, 2.2rem);
            border-radius: 22px;
            background: rgba(255,255,255,0.92);
            box-shadow: 0 16px 30px rgba(32, 60, 87, 0.12);
            text-align: left;
            overflow: hidden;
        }
        .journey-step::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(140deg, rgba(0,150,94,0.08), rgba(46,44,114,0.08));
            z-index: 0;
        }
        .journey-step h3,
        .journey-step p,
        .step-number {
            position: relative;
            z-index: 1;
        }
        .step-number {
            display: inline-flex;
            width: 46px;
            height: 46px;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--bright-green);
            color: var(--white);
            font-weight: 700;
            font-size: 1.3rem;
            margin-bottom: 1.2rem;
            box-shadow: 0 10px 18px rgba(0,150,94,0.3);
        }

        .support-box {
            position: relative;
        }
        .support-box::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 15% 35%, rgba(0,150,94,0.08), transparent 55%),
                        radial-gradient(circle at 85% 65%, rgba(46,44,114,0.1), transparent 65%);
            z-index: 0;
        }
        .support-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: clamp(1.5rem, 4vw, 2.5rem);
            margin-top: 2.5rem;
        }
        .support-card {
            background: rgba(255,255,255,0.92);
            border-radius: 22px;
            padding: clamp(2rem, 4vw, 2.6rem);
            text-align: left;
            box-shadow: 0 18px 32px rgba(32, 60, 87, 0.12);
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .support-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.6rem;
        }
        .support-card li {
            position: relative;
            padding-left: 1.4rem;
        }
        .support-card li::before {
            content: '\2022';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--bright-green);
            font-size: 1.2rem;
            line-height: 1;
        }

        .final-cta-section {
            position: relative;
            padding: 0;
            overflow: hidden;
            background: none;
            min-height: 80vh;
        }
        #video-bg {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            z-index: 1;
            object-fit: cover;
        }
        #hero-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0; /* keep video behind content but visible */
        }
        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to right, rgba(46, 44, 114, 0.8), rgba(0, 150, 94, 0.8));
            z-index: 2;
        }
        .final-cta-section .content-box {
            position: relative;
            z-index: 3;
            max-width: 800px;
            color: var(--white);
            background: transparent;
            border: none;
            box-shadow: none;
            backdrop-filter: none;
        }
        .final-cta-section .content-box h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 5px rgba(0,0,0,0.3);
        }
        .final-cta-section .content-box p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: rgba(255,255,255,0.9);
        }
        .final-cta-section .cta-button {
            transform: scale(1.1);
            animation: pulse 2s infinite;
        }
        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
            70% { box-shadow: 0 0 0 25px rgba(255, 255, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
        }

        @media (max-width: 992px) {
            .philosophy-split { flex-direction: column; text-align: center; }
            .product-spotlight {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .product-spotlight__copy {
                align-items: center;
                text-align: center;
            }
            .product-spotlight__badges {
                justify-content: center;
            }
            .product-spotlight__features {
                align-items: stretch;
                width: 100%;
            }
            .product-spotlight__features li {
                text-align: left;
            }
            .product-spotlight__metrics {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            .section-title { font-size: 2.2rem; }
            .final-cta-section .content-box h2 { font-size: 2.2rem; }
            .content-box { padding: 30px; }
            .carousel-button { display: none; }
            .product-spotlight { padding: 2rem; }
            .product-spotlight__halo { width: 320px; height: 320px; }
        }

        /* Nueva Sección de Pilares */
        .pillars {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .pillar {
            flex: 1 1 250px;
            padding: 20px;
            text-align: center;
            background: var(--white);
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.07);
        }
        .pillar i {
            font-size: 3rem;
            color: var(--bright-green);
            margin-bottom: 15px;
        }
        .pillar h3 {
            color: var(--dark-blue);
            margin-bottom: 10px;
        }

        /* Testimonios */
        .testimonials {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .testimonial-card {
            flex: 1 1 280px;
            background: var(--white);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        .testimonial-card img {
            width: 100%;
            border-radius: 15px;
            margin-bottom: 15px;
        }

        /* Confianza */
        .trust-logos {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        .trust-logos img { max-height: 60px; opacity: 0.8; }

        /* Plan de Compensación */
        .quick-plan {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .quick-plan .item {
            flex: 1 1 220px;
            background: var(--white);
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.07);
        }

        /* Oferta comercial */
        .commercial-box {
            display: flex;
            flex-direction: column;
            gap: clamp(1.5rem, 3vw, 2.5rem);
        }

        .commercial-box .section-subtitle {
            margin-bottom: 0;
        }

        .commercial-offers {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: clamp(1.5rem, 3vw, 2.5rem);
        }

        .offer-card {
            position: relative;
            padding: 2.5rem 2rem;
            border-radius: 22px;
            background: linear-gradient(145deg, rgba(255,255,255,0.92), rgba(230,244,241,0.92));
            box-shadow: 0 16px 30px rgba(32, 60, 87, 0.12);
            text-align: left;
            overflow: hidden;
        }

        .offer-card::after {
            content: "";
            position: absolute;
            inset: -40% 30% auto -20%;
            height: 120%;
            background: radial-gradient(circle at center, rgba(0, 150, 94, 0.18), transparent 65%);
            z-index: 0;
        }

        .offer-card h3 {
            position: relative;
            font-size: 1.35rem;
            margin-bottom: 0.75rem;
            color: var(--heading-color);
            z-index: 1;
        }

        .offer-card p {
            position: relative;
            margin-bottom: 1rem;
            color: rgba(36, 46, 66, 0.8);
            z-index: 1;
        }

        .offer-card ul {
            position: relative;
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 0.65rem;
            z-index: 1;
        }

        .offer-card li {
            padding-left: 1.35rem;
            position: relative;
        }

        .offer-card li::before {
            content: '\2713';
            position: absolute;
            left: 0;
            color: var(--bright-green);
            font-weight: 700;
        }

        .offer-badge {
            position: absolute;
            top: 1.5rem;
            right: 1.5rem;
            background: linear-gradient(135deg, #00c6ff, #5fffd4);
            color: #021421;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            padding: 0.35rem 0.75rem;
            border-radius: 999px;
            z-index: 1;
        }

        .commercial-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: clamp(1rem, 3vw, 2rem);
        }

        .commercial-metrics .metric-card {
            background: rgba(255,255,255,0.9);
            border-radius: 18px;
            padding: 1.75rem;
            box-shadow: 0 12px 26px rgba(46,44,114,0.12);
        }

        .metric-card strong {
            display: block;
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 0.35rem;
        }

        .commercial-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .commercial-cta-group .secondary-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--bright-green);
            font-weight: 600;
            text-decoration: none;
        }

        .commercial-cta-group .secondary-link:hover {
            color: var(--dark-blue);
        }

        @media (max-width: 640px) {
            .offer-card {
                padding: 2rem 1.5rem;
            }
            .offer-badge {
                top: 1rem;
                right: 1rem;
            }
        }

        .insight-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 1.6rem;
            margin-bottom: 2.5rem;
        }

        .insight-card {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 16px 32px rgba(32, 60, 87, 0.12);
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            height: 100%;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.4rem;
            text-align: center;
        }

        .metric-number {
            font-size: 2.4rem;
            font-weight: 700;
            color: var(--bright-green);
            display: block;
        }

        .metric-label {
            font-size: 0.95rem;
            color: #5b5e6d;
            display: block;
            margin-top: 0.35rem;
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(32, 60, 87, 0.12);
            margin-top: 1.5rem;
        }

        .comparison-table th,
        .comparison-table td {
            padding: 1.2rem 1.4rem;
            text-align: left;
            border-bottom: 1px solid rgba(46, 44, 114, 0.1);
            vertical-align: top;
        }

        .comparison-table th {
            background: rgba(46, 44, 114, 0.08);
            font-weight: 700;
            color: var(--dark-blue);
        }

        .comparison-table tr:last-child td {
            border-bottom: none;
        }

        .comparison-table td:nth-child(2) {
            color: var(--bright-green);
            font-weight: 600;
        }

        .comparison-table td:nth-child(3) {
            color: #a94442;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.4rem;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.92);
            border-radius: 16px;
            padding: 1.2rem 1.4rem;
            box-shadow: 0 18px 36px rgba(32, 60, 87, 0.12);
        }

        .faq-item summary {
            cursor: pointer;
            font-weight: 600;
            font-size: 1.05rem;
            color: var(--dark-blue);
            list-style: none;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item[open] summary {
            color: var(--bright-green);
        }

        .faq-item .faq-body {
            margin-top: 0.8rem;
            color: #4b4f5c;
        }

        @media (max-width: 992px) {
            .hero-copy {
                text-align: center;
            }

            .hero-points li {
                padding-left: 1.8rem;
            }

            .hero-points li::before {
                left: 0;
            }

            .cta-group {
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .hero-points {
                gap: 0.8rem;
            }

            .cta-group .cta-button {
                width: 100%;
                min-width: 0;
            }

            .comparison-table th,
            .comparison-table td {
                padding: 0.9rem 1rem;
            }
        }


