/* ===== HERO ===== */
        .hero {
            padding: 160px 40px 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
            background: var(--charcoal);
            color: var(--white);
        }

        .hero-gradient-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .hero-gradient-veil {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(36, 36, 36, 0.2);
            pointer-events: none;
            z-index: 0;
        }

        .hero-content {
            max-width: 1060px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: var(--navy-glow);
            border: 1px solid rgba(157, 201, 221, 0.25);
            border-radius: 100px;
            font-size: 13px;
            color: var(--sky);
            margin-bottom: 32px;
            animation: fadeInUp 0.6s ease-out, badgeGlow 3s ease-in-out infinite;
            box-shadow:
                0 0 12px rgba(157, 201, 221, 0.2),
                0 0 30px rgba(0, 111, 160, 0.15);
        }

        @keyframes badgeGlow {

            0%,
            100% {
                box-shadow:
                    0 0 12px rgba(157, 201, 221, 0.2),
                    0 0 30px rgba(0, 111, 160, 0.15);
                border-color: rgba(157, 201, 221, 0.25);
            }

            50% {
                box-shadow:
                    0 0 20px rgba(157, 201, 221, 0.4),
                    0 0 50px rgba(0, 111, 160, 0.3),
                    0 0 80px rgba(157, 201, 221, 0.1);
                border-color: rgba(157, 201, 221, 0.5);
            }
        }

        .hero-badge .badge-dot {
            width: 6px;
            height: 6px;
            background: var(--sky);
            border-radius: 50%;
            animation: pulse 2s infinite;
            box-shadow: 0 0 8px var(--sky);
        }

        .hero h1 {
            font-size: clamp(42px, 6vw, 68px);
            letter-spacing: -2px;
            line-height: 1.1;
            margin-bottom: 28px;
            animation: fadeInUp 0.6s ease-out 0.1s both;
        }


        .hero h1 .gradient-text {
            background: linear-gradient(90deg,
                    var(--sky) 0%,
                    var(--blue-light) 25%,
                    var(--sky-light) 50%,
                    var(--blue) 75%,
                    var(--sky) 100%);
            background-size: 200% auto;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientTextShimmer 4s linear infinite;
        }

        @keyframes gradientTextShimmer {
            0% {
                background-position: 0% center;
            }

            100% {
                background-position: 200% center;
            }
        }

        .hero p {
            font-size: clamp(16px, 1.8vw, 19px);
            color: var(--silver);
            max-width: 720px;
            margin: 0 auto 44px;
            line-height: 1.7;
            animation: fadeInUp 0.6s ease-out 0.2s both;
        }

        .slot-machine {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 32px;
            margin: 32px auto 40px;
            animation: fadeInUp 0.6s ease-out 0.25s both;
        }

        .slot-row {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .slot-check {
            color: var(--sky);
            font-size: 18px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .slot-window {
            height: 28px;
            overflow: hidden;
            position: relative;
        }

        .slot-reel {
            display: flex;
            flex-direction: column;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .slot-item {
            height: 28px;
            display: flex;
            align-items: center;
            font-family: var(--font-subtitle);
            font-size: 15px;
            color: var(--silver);
            white-space: nowrap;
        }

        .slot-item strong {
            color: var(--white);
            font-family: var(--font-title);
            margin-left: 5px;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            animation: fadeInUp 0.6s ease-out 0.3s both;
        }

        .btn-hero-secondary {
            background: rgba(157, 201, 221, 0.1);
            color: var(--sky);
            border: 1px solid rgba(157, 201, 221, 0.25);
        }

        .btn-hero-secondary:hover {
            background: rgba(157, 201, 221, 0.2);
            border-color: var(--sky);
            border-radius: 0;
            transform: translateY(-1px);
        }

        .hero-visual {
            margin-top: 80px;
            position: relative;
            animation: fadeInUp 0.8s ease-out 0.4s both;
        }

        /* ===== HERO CHECKBOX SELECTOR ===== */
        .hero-selector {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            display: flex;
            align-items: stretch;
            gap: 0;
        }

        .hero-selector-title {
            font-family: var(--font-subtitle);
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--sky);
            margin-bottom: 16px;
            text-align: center;
        }

        .hero-selector-sidebar {
            position: relative;
            z-index: 10;
            display: flex;
            flex-direction: column;
            justify-content: center;
            margin-right: -60px;
            flex-shrink: 0;
            background: linear-gradient(160deg, rgba(0, 41, 75, 0.95) 0%, rgba(0, 71, 110, 0.9) 50%, rgba(0, 41, 75, 0.95) 100%);
            backdrop-filter: blur(16px);
            padding: 24px 20px;
            border-radius: 14px;
            border: 1px solid rgba(0, 111, 160, 0.3);
            box-shadow: 0 8px 32px rgba(0, 111, 160, 0.15), inset 0 1px 0 rgba(157, 201, 221, 0.1);
        }

        .hero-selector-preview {
            flex: 1;
            min-height: 480px;
            border-radius: 14px;
            overflow: hidden;
            position: relative;
            z-index: 1;
            background: linear-gradient(145deg, var(--navy-dark), var(--charcoal));
            border: 1px solid rgba(157, 201, 221, 0.15);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(0, 111, 160, 0.08);
        }

        .hero-selector-preview img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top left;
            display: block;
            transition: opacity 0.4s ease;
            opacity: 0;

        }

        /* ===== AUTH MOCKUP ANIMATION ===== */
        .hero-auth-mockup {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #ffffff;
            transition: opacity 0.5s ease;
            z-index: 2;
        }

        .hero-auth-mockup.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .auth-card {
            width: 320px;
            background: rgba(255, 255, 255, 0.85);
            border: 1px solid rgba(0, 111, 160, 0.15);
            border-radius: 16px;
            padding: 36px 32px;
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 71, 110, 0.1), 0 2px 8px rgba(0, 0, 0, 0.05);
        }

        .auth-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(0, 111, 160, 0.04), transparent, rgba(157, 201, 221, 0.03), transparent);
            animation: authRotate 8s linear infinite;
        }

        @keyframes authRotate {
            to {
                transform: rotate(360deg);
            }
        }

        .auth-card-inner {
            position: relative;
            z-index: 1;
        }

        .auth-logo {
            text-align: center;
            margin-bottom: 28px;
        }

        .auth-logo-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--blue), var(--sky));
            margin: 0 auto 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: authPulse 3s ease-in-out infinite;
        }

        @keyframes authPulse {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(0, 111, 160, 0.3);
            }

            50% {
                box-shadow: 0 0 20px 8px rgba(0, 111, 160, 0.15);
            }
        }

        .auth-logo-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--white);
            stroke-width: 2;
            fill: none;
        }

        .auth-logo-text {
            font-family: var(--font-title);
            font-size: 18px;
            color: var(--charcoal);
            letter-spacing: 0.5px;
        }

        .auth-logo-sub {
            font-family: var(--font-body);
            font-size: 12px;
            color: rgba(0, 41, 75, 0.5);
            margin-top: 4px;
        }

        .auth-field {
            margin-bottom: 16px;
        }

        .auth-field-label {
            font-family: var(--font-subtitle);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            color: rgba(0, 41, 75, 0.45);
            margin-bottom: 6px;
        }

        .auth-field-input {
            width: 100%;
            height: 40px;
            border-radius: 8px;
            background: rgba(0, 71, 110, 0.04);
            border: 1px solid rgba(0, 111, 160, 0.12);
            position: relative;
            overflow: hidden;
        }

        .auth-field-input--typing {
            position: relative;
            padding: 0 14px;
            line-height: 40px;
        }

        .auth-typing-text {
            font-family: var(--font-body);
            font-size: 13px;
            color: rgba(0, 41, 75, 0.6);
            display: inline-block;
            overflow: hidden;
            white-space: nowrap;
            vertical-align: bottom;
            max-width: 0;
            border-right: 2px solid var(--blue);
        }

        .auth-typing-text--email {
            animation: authTypeEmail 2s steps(19) 0.5s forwards, authBlink 0.8s step-end 0.5s 3;
        }

        .auth-typing-text--pass {
            animation: authTypePass 1s steps(10) 3s forwards, authBlink 0.8s step-end 3s 2;
            font-size: 18px;
            letter-spacing: 4px;
        }

        @keyframes authTypeEmail {
            to {
                max-width: 300px;
                border-color: transparent;
            }
        }

        @keyframes authTypePass {
            to {
                max-width: 300px;
                border-color: transparent;
            }
        }

        @keyframes authBlink {
            50% {
                border-color: transparent;
            }
        }

        .auth-btn {
            width: 100%;
            height: 42px;
            border-radius: 8px;
            background: linear-gradient(135deg, var(--blue), #0090c0);
            border: none;
            margin-top: 8px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .auth-btn-text {
            font-family: var(--font-subtitle);
            font-size: 13px;
            color: var(--white);
            letter-spacing: 0.5px;
            position: relative;
            z-index: 1;
        }

        .auth-btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            animation: authShimmer 3s ease-in-out infinite;
        }

        @keyframes authShimmer {
            0% {
                left: -100%;
            }

            50%,
            100% {
                left: 100%;
            }
        }

        .auth-divider {
            display: flex;
            align-items: center;
            gap: 12px;
            margin: 20px 0;
        }

        .auth-divider-line {
            flex: 1;
            height: 1px;
            background: rgba(0, 111, 160, 0.1);
        }

        .auth-divider-text {
            font-family: var(--font-body);
            font-size: 11px;
            color: rgba(0, 41, 75, 0.3);
        }

        .auth-social {
            display: flex;
            gap: 10px;
        }

        .auth-social-btn {
            flex: 1;
            height: 36px;
            border-radius: 8px;
            background: rgba(0, 71, 110, 0.04);
            border: 1px solid rgba(0, 111, 160, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .auth-social-btn svg {
            width: 16px;
            height: 16px;
            stroke: rgba(0, 71, 110, 0.35);
            stroke-width: 2;
            fill: none;
        }

        /* Particle network canvas */
        .auth-particle-canvas {
            position: absolute;
            inset: 0;
            pointer-events: none;
            z-index: 0;
        }


        .hero-selector-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 6px;
        }

        .hero-checkbox {
            position: relative;
            cursor: pointer;
            user-select: none;
        }

        .hero-checkbox input {
            position: absolute;
            opacity: 0;
            width: 0;
            height: 0;
        }

        .hero-checkbox-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            padding: 14px 8px;
            border-radius: 8px;
            background: rgba(157, 201, 221, 0.06);
            border: 1px solid rgba(157, 201, 221, 0.08);
            transition: all 0.3s ease;
            font-family: var(--font-body);
            font-size: 11px;
            font-weight: 700;
            color: rgba(157, 201, 221, 0.6);
            text-align: center;
            aspect-ratio: 1;
        }

        .hero-checkbox-label:hover {
            background: rgba(0, 111, 160, 0.2);
            border-color: rgba(0, 111, 160, 0.4);
            color: var(--white);
        }

        .hero-checkbox-label:hover .hero-checkbox-icon svg {
            stroke: var(--white);
        }

        .hero-checkbox input:checked+.hero-checkbox-label {
            background: rgba(0, 111, 160, 0.25);
            border-color: var(--blue);
            color: var(--white);
        }

        .hero-checkbox input:checked+.hero-checkbox-label .hero-checkbox-icon svg {
            stroke: var(--white);
        }

        .hero-checkbox-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-checkbox-icon svg {
            width: 22px;
            height: 22px;
            stroke: rgba(157, 201, 221, 0.5);
            stroke-width: 2;
            fill: none;
            transition: stroke 0.3s ease;
        }

        .hero-selector-cta {
            margin-top: 14px;
        }

        .hero-selector-cta .btn {
            width: 100%;
            font-size: 13px;
            padding: 10px 20px;
        }

        /* ===== EL PROBLEMA REAL ===== */
        .problem-section {
            padding: 120px 40px;
            background: var(--off-white);
            position: relative;
            overflow: hidden;
        }

        .problem-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(224, 85, 85, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .problem-section::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 111, 160, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .problem-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .problem-header {
            text-align: center;
            margin-bottom: 72px;
        }

        .problem-header .section-label {
            color: #e05555;
        }

        .problem-header h2 {
            font-size: clamp(36px, 5vw, 56px);
            letter-spacing: -2px;
            line-height: 1.1;
            color: var(--charcoal);
            margin-bottom: 16px;
        }

        .problem-header h2 .problem-highlight {
            color: #e05555;
        }

        .problem-header .problem-subtitle {
            font-size: clamp(16px, 1.8vw, 19px);
            color: var(--gray-text);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }

        .problem-tools {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .tool-pill {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.08);
            border-radius: 12px;
            padding: 16px 24px;
            color: var(--charcoal);
            font-family: var(--font-subtitle);
            font-size: 15px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .tool-pill::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(224, 85, 85, 0.1) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .tool-pill:hover::before {
            opacity: 1;
        }

        .tool-pill:hover {
            border-color: rgba(224, 85, 85, 0.3);
            transform: translateX(8px);
        }

        .tool-pill .tool-icon {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
            background: var(--off-white);
        }

        .tool-pill .tool-name {
            flex: 1;
            font-size: 17px;
            font-family: var(--font-title);
            font-weight: 700;
        }

        .tool-pill .tool-x {
            color: rgba(224, 85, 85, 0.6);
            font-size: 18px;
            font-weight: 700;
            font-family: var(--font-title);
        }

        .problem-pain-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .pain-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 20px 24px;
            background: var(--white);
            border-radius: 12px;
            border-left: 3px solid transparent;
            transition: all 0.4s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .pain-item:hover {
            background: var(--white);
            border-left-color: #e05555;
            transform: translateX(4px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .pain-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: rgba(224, 85, 85, 0.12);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .pain-icon svg {
            width: 16px;
            height: 16px;
            stroke: #e05555;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
        }

        .pain-text {
            font-size: 16px;
            color: var(--gray-text);
            line-height: 1.6;
        }

        .pain-text strong {
            color: var(--charcoal);
        }

        .problem-bottom {
            margin-top: 64px;
            text-align: center;
        }

        .problem-verdict {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 20px 40px;
            background: rgba(224, 85, 85, 0.06);
            border: 1px solid rgba(224, 85, 85, 0.2);
            border-radius: 60px;
            color: var(--charcoal);
            font-family: var(--font-title);
            font-size: 17px;
            font-weight: 700;
            letter-spacing: -0.3px;
        }

        .problem-verdict .verdict-line {
            width: 24px;
            height: 2px;
            background: linear-gradient(90deg, transparent, #e05555);
        }

        @media (max-width: 768px) {
            .problem-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .problem-section {
                padding: 80px 20px;
            }

            .problem-verdict {
                padding: 16px 28px;
                font-size: 15px;
            }
        }

        /* ===== LOGOS / SOCIAL PROOF ===== */
        .logos-section {
            padding: 80px 40px;
            text-align: center;
            background: var(--white);
            border-bottom: 1px solid var(--silver);
            overflow: hidden;
        }

        .logos-section p {
            font-size: 14px;
            color: var(--gray-text);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 40px;
        }

        .logos-track-wrapper {
            position: relative;
            max-width: var(--max-width);
            margin: 0 auto;
            overflow: hidden;
            -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
            mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
        }

        .logos-track {
            display: flex;
            align-items: center;
            gap: 80px;
            width: max-content;
            animation: logos-scroll 25s linear infinite;
            /* 7 logos: each logo ~140px max + 80px gap = ~220px per item, minus last gap */
        }

        .logos-track:hover {
            animation-play-state: paused;
        }

        @keyframes logos-scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                /* Translate exactly half (one full set of 7 logos + their gaps) */
                transform: translateX(calc(-50% - 40px));
            }
        }

        .logo-item {
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            transition: opacity var(--transition);
            opacity: 0.55;
            filter: grayscale(100%);
        }

        .logo-item:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .logo-item img {
            height: 40px;
            width: auto;
            max-width: 140px;
            object-fit: contain;
        }

        /* ===== FEATURE SECTIONS ===== */
        .section {
            padding: 120px 40px;
        }

        .section-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-label {
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--blue);
            margin-bottom: 16px;
        }

        .section-header h2 {
            font-size: clamp(36px, 5vw, 56px);
            letter-spacing: -2px;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--charcoal);
        }

        .section-header p {
            font-size: 18px;
            color: var(--gray-text);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* ===== PARA QUIÉN ===== */
        .para-quien {
            padding: 120px 40px;
            background: var(--charcoal);
            position: relative;
            overflow: hidden;
        }

        .para-quien::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 111, 160, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .para-quien::after {
            content: '';
            position: absolute;
            bottom: -15%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(157, 201, 221, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .para-quien-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .para-quien-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .para-quien-header .section-label {
            color: var(--sky);
        }

        .para-quien-header h2 {
            font-size: clamp(36px, 5vw, 56px);
            letter-spacing: -2px;
            line-height: 1.1;
            color: var(--white);
            margin-bottom: 24px;
        }

        .para-quien-header h2 .gradient-text {
            background: linear-gradient(135deg, var(--sky), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .para-quien-body {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .para-quien-text {
            font-size: 18px;
            color: var(--silver);
            line-height: 1.8;
            letter-spacing: -0.2px;
        }

        .para-quien-text strong {
            color: var(--white);
            font-family: var(--font-title);
        }

        .para-quien-highlight {
            margin-top: 32px;
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px 28px;
            background: rgba(0, 111, 160, 0.12);
            border: 1px solid rgba(0, 111, 160, 0.25);
            border-radius: 12px;
            color: var(--sky);
            font-family: var(--font-subtitle);
            font-size: 16px;
            line-height: 1.5;
        }

        .para-quien-highlight svg {
            width: 24px;
            height: 24px;
            flex-shrink: 0;
            stroke: var(--sky);
            fill: none;
            stroke-width: 2;
        }

        .para-quien-cards {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .pq-card {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 24px 28px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            cursor: default;
        }

        .pq-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, var(--sky), var(--blue));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .pq-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(157, 201, 221, 0.25);
            transform: translateX(6px);
        }

        .pq-card:hover::before {
            opacity: 1;
        }

        .pq-card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(0, 111, 160, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pq-card-icon svg {
            width: 22px;
            height: 22px;
            stroke: var(--sky);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .pq-card-text {
            flex: 1;
        }

        .pq-card-text h4 {
            font-size: 16px;
            color: var(--white);
            margin-bottom: 4px;
            letter-spacing: -0.3px;
        }

        .pq-card-text p {
            font-size: 14px;
            color: var(--silver);
            line-height: 1.5;
            margin: 0;
        }

        @media (max-width: 768px) {
            .para-quien {
                padding: 80px 20px;
            }

            .para-quien-body {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        /* ===== QUÉ ES PMC-TOOL CAROUSEL ===== */
        .que-es {
            padding: 120px 40px;
            background: var(--off-white);
            position: relative;
            overflow: hidden;
        }

        .que-es::before {
            content: '';
            position: absolute;
            top: -25%;
            left: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(0, 111, 160, 0.06) 0%, transparent 70%);
            pointer-events: none;
        }

        .que-es-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .que-es-header {
            text-align: center;
            margin-bottom: 56px;
        }

        .que-es-header .section-label {
            color: var(--blue);
        }

        .que-es-header h2 {
            font-size: clamp(36px, 5vw, 56px);
            letter-spacing: -2px;
            line-height: 1.1;
            color: var(--charcoal);
            margin-bottom: 20px;
        }

        .que-es-header h2 .gradient-text {
            background: linear-gradient(135deg, var(--sky), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .que-es-subtitle {
            font-size: clamp(16px, 1.8vw, 19px);
            color: var(--gray-text);
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .que-es-subtitle strong {
            color: var(--charcoal);
        }

        .que-es-permite {
            font-size: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--blue);
            margin-top: 24px;
        }

        /* Carousel */
        .carousel-wrapper {
            position: relative;
            overflow: hidden;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .carousel-slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            padding: 0 8px;
        }

        .carousel-card {
            background: var(--white);
            border: 1px solid rgba(0, 0, 0, 0.06);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
        }

        .carousel-card:hover {
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-4px);
        }

        .carousel-card-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, rgba(0, 111, 160, 0.08), rgba(157, 201, 221, 0.15));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-text);
            font-family: var(--font-subtitle);
            font-size: 15px;
            position: relative;
            overflow: hidden;
        }

        .carousel-card-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, transparent 40%, rgba(0, 111, 160, 0.06) 100%);
        }

        .carousel-card-image svg {
            width: 48px;
            height: 48px;
            stroke: var(--blue);
            fill: none;
            stroke-width: 1.5;
            stroke-linecap: round;
            stroke-linejoin: round;
            opacity: 0.4;
            position: relative;
            z-index: 1;
        }

        .carousel-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top left;
            position: relative;
            z-index: 1;
        }

        .carousel-card-body {
            padding: 28px 32px;
        }

        .carousel-card-number {
            font-size: 13px;
            font-family: var(--font-subtitle);
            color: var(--blue);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .carousel-card-body h3 {
            font-size: 22px;
            color: var(--charcoal);
            letter-spacing: -0.5px;
            margin-bottom: 0;
        }

        /* Carousel info panel */
        .carousel-info {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .carousel-info-number {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 56px;
            height: 56px;
            border-radius: 16px;
            background: var(--blue);
            color: var(--white);
            font-family: var(--font-title);
            font-size: 24px;
            margin-bottom: 24px;
        }

        .carousel-info h3 {
            font-size: clamp(24px, 3vw, 32px);
            color: var(--charcoal);
            letter-spacing: -1px;
            line-height: 1.2;
            margin-bottom: 16px;
        }

        .carousel-info p {
            font-size: 17px;
            color: var(--gray-text);
            line-height: 1.7;
            max-width: 400px;
        }

        /* Progress dots */
        .carousel-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-top: 48px;
        }

        .carousel-dot {
            width: 40px;
            height: 4px;
            border-radius: 2px;
            background: rgba(0, 0, 0, 0.1);
            border: none;
            cursor: pointer;
            transition: all 0.4s ease;
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        .carousel-dot::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: var(--blue);
            border-radius: 2px;
            transition: width 0s linear;
        }

        .carousel-dot.active::after {
            width: 100%;
            transition: width 3s linear;
        }

        .carousel-dot.filled::after {
            width: 100%;
            transition: width 0s linear;
        }

        /* Ending text */
        .que-es-ending {
            text-align: center;
            margin-top: 48px;
            font-size: 20px;
            color: var(--charcoal);
            font-family: var(--font-subtitle);
            letter-spacing: -0.3px;
        }

        .que-es-ending strong {
            color: var(--blue);
        }

        @media (max-width: 768px) {
            .que-es {
                padding: 80px 20px;
            }

            .carousel-slide {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .carousel-info {
                text-align: center;
                align-items: center;
            }

            .carousel-card-image {
                height: 160px;
            }
        }

        /* ===== QUÉ LO HACE DIFERENTE ===== */
        .diferente {
            padding: 120px 40px;
            background: var(--charcoal);
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .diferente::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 111, 160, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .diferente-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        .diferente-header {
            text-align: center;
            margin-bottom: 72px;
        }

        .diferente-header .section-label {
            color: var(--sky);
        }

        .diferente-header h2 {
            font-size: clamp(32px, 5vw, 52px);
            letter-spacing: -2px;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .diferente-header h2 .gradient-text {
            background: linear-gradient(135deg, var(--sky), var(--blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            padding-bottom: 6px;
        }

        .diferente-lead {
            max-width: 640px;
            margin: 0 auto;
            font-size: clamp(17px, 1.8vw, 20px);
            color: var(--silver);
            line-height: 1.7;
            text-align: center;
        }

        .diferente-lead strong {
            color: var(--white);
            font-family: var(--font-title);
        }

        .diferente-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 56px;
        }

        .diferente-card {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(157, 201, 221, 0.1);
            border-radius: 16px;
            padding: 36px 32px;
            transition: border-color var(--transition), transform var(--transition);
        }

        .diferente-card:hover {
            border-color: rgba(157, 201, 221, 0.25);
            transform: translateY(-4px);
        }

        .diferente-card-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(0, 111, 160, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--sky);
        }

        .diferente-card h3 {
            font-size: 24px;
            letter-spacing: -0.5px;
            margin-bottom: 10px;
            color: var(--white);
        }

        .diferente-card p {
            font-size: 15px;
            color: var(--gray-text);
            line-height: 1.7;
        }

        .diferente-closing {
            text-align: center;
            margin-top: 56px;
            font-size: 18px;
            color: var(--sky);
            font-family: var(--font-subtitle);
            letter-spacing: -0.3px;
        }

        .diferente-closing strong {
            color: var(--white);
            font-family: var(--font-title);
        }

        /* Comparison table */
        .comparativa-wrapper {
            margin-top: 72px;
        }

        .comparativa-title {
            text-align: center;
            font-size: clamp(20px, 2.5vw, 28px);
            font-family: var(--font-title);
            color: var(--white);
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }

        .comparativa-subtitle {
            text-align: center;
            font-size: 15px;
            color: var(--gray-text);
            margin-bottom: 36px;
            line-height: 1.6;
        }

        .comparativa-table-scroll {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: 16px;
            border: 1px solid rgba(157, 201, 221, 0.1);
            background: rgba(255, 255, 255, 0.03);
        }

        .comparativa-table {
            width: 100%;
            min-width: 680px;
            border-collapse: collapse;
            font-family: var(--font-body);
            font-size: 14px;
        }

        .comparativa-table thead th {
            padding: 18px 14px;
            font-family: var(--font-title);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--gray-text);
            border-bottom: 1px solid rgba(157, 201, 221, 0.12);
            text-align: center;
            white-space: nowrap;
        }

        .comparativa-table thead th:first-child {
            text-align: left;
            padding-left: 24px;
            color: var(--silver);
        }

        .comparativa-table thead th.pmc-col {
            color: var(--sky);
            font-size: 14px;
        }

        .comparativa-table tbody tr {
            transition: background var(--transition);
        }

        .comparativa-table tbody tr:hover {
            background: rgba(157, 201, 221, 0.05);
        }

        .comparativa-table tbody td {
            padding: 14px;
            border-bottom: 1px solid rgba(157, 201, 221, 0.06);
            text-align: center;
            color: var(--silver);
        }

        .comparativa-table tbody td:first-child {
            text-align: left;
            padding-left: 24px;
            font-family: var(--font-subtitle);
            font-weight: 400;
            color: var(--white);
            font-size: 14px;
        }

        .comparativa-table tbody tr:last-child td {
            border-bottom: none;
        }

        /* Status dots */
        .dot {
            display: inline-block;
            width: 14px;
            height: 14px;
            border-radius: 50%;
        }

        .dot-full {
            background: #2ec4a0;
            box-shadow: 0 0 8px rgba(46, 196, 160, 0.35);
        }

        .dot-partial {
            background: #f5a623;
            box-shadow: 0 0 8px rgba(245, 166, 35, 0.3);
        }

        .dot-none {
            background: #e85d6c;
            box-shadow: 0 0 8px rgba(232, 93, 108, 0.3);
        }

        /* Highlight PMC column */
        .comparativa-table .pmc-col {
            background: rgba(0, 111, 160, 0.08);
        }

        .comparativa-legend {
            display: flex;
            justify-content: center;
            gap: 28px;
            margin-top: 20px;
            font-size: 13px;
            color: var(--gray-text);
            font-family: var(--font-subtitle);
        }

        .comparativa-legend span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .comparativa-legend .dot {
            width: 10px;
            height: 10px;
        }

        @media (max-width: 768px) {
            .diferente {
                padding: 80px 20px;
            }

            .diferente-grid {
                grid-template-columns: 1fr;
            }

            .comparativa-legend {
                gap: 16px;
                font-size: 12px;
            }
        }

        /* ===== IMPACTO ===== */
        .impacto {
            padding: 120px 40px;
            background: var(--off-white);
        }

        .impacto-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .impacto-left .section-label {
            color: var(--blue);
        }

        .impacto-left h2 {
            font-size: clamp(32px, 5vw, 52px);
            letter-spacing: -2px;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--charcoal);
        }

        .impacto-lead {
            font-size: clamp(16px, 1.6vw, 18px);
            color: var(--gray-text);
            line-height: 1.7;
            margin-bottom: 8px;
        }

        .impacto-lead strong {
            color: var(--charcoal);
            font-family: var(--font-title);
        }

        .impacto-checklist {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .impacto-checklist li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            font-size: 17px;
            color: var(--charcoal);
            line-height: 1.5;
        }

        .impacto-check {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 8px;
            background: rgba(0, 111, 160, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--blue);
            margin-top: 1px;
        }

        .impacto-closing {
            margin-top: 48px;
            padding: 28px 32px;
            background: var(--charcoal);
            border-radius: 16px;
            text-align: center;
            transition: background 0.4s ease, transform 0.3s ease;
            cursor: default;
        }

        .impacto-closing:hover {
            background: var(--navy);
            transform: translateY(-2px);
        }

        .impacto-closing p {
            font-size: 18px;
            color: var(--silver);
            line-height: 1.6;
            font-family: var(--font-subtitle);
        }

        .impacto-closing strong {
            color: var(--white);
            font-family: var(--font-title);
            font-size: 22px;
            display: block;
            margin-top: 4px;
        }

        @media (max-width: 768px) {
            .impacto {
                padding: 80px 20px;
            }

            .impacto-inner {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        /* ===== FINAL CTA ===== */
        .final-cta {
            padding: 120px 40px;
            background: var(--charcoal);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            top: -30%;
            left: 20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(157, 201, 221, 0.1) 0%, transparent 60%);
            pointer-events: none;
        }

        .final-cta::after {
            content: '';
            position: absolute;
            bottom: -20%;
            right: 10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(0, 111, 160, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .final-cta-inner {
            max-width: 720px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .final-cta h2 {
            font-size: clamp(36px, 5vw, 56px);
            letter-spacing: -2px;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .final-cta p {
            font-size: clamp(16px, 1.6vw, 19px);
            color: var(--silver);
            line-height: 1.7;
            margin-bottom: 48px;
        }

        .final-cta-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
        }

        .btn-final-secondary {
            background: transparent;
            color: var(--sky);
            border: 1px solid rgba(157, 201, 221, 0.3);
        }

        .btn-final-secondary:hover {
            border-color: var(--sky);
            background: rgba(157, 201, 221, 0.1);
            border-radius: 0;
            transform: translateY(-1px);
        }

        @media (max-width: 768px) {
            .final-cta {
                padding: 80px 20px;
            }

            .final-cta-buttons {
                flex-direction: column;
            }
        }

        /* ===== RESPONSIVE (page-specific) ===== */
        @media (max-width: 768px) {
            .hero {
                padding: 120px 20px 60px;
            }

            .slot-machine {
                flex-direction: column;
                gap: 12px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .hero-selector {
                flex-direction: column;
            }

            .hero-selector-sidebar {
                margin-right: 0;
                margin-bottom: -20px;
                padding: 16px 12px;
            }

            .hero-checkbox-label {
                padding: 10px 6px;
                font-size: 10px;
                gap: 4px;
            }

            .hero-checkbox-icon svg {
                width: 18px;
                height: 18px;
            }

            .hero-selector-preview {
                min-height: 280px;
            }

            .hero-selector-cta .btn {
                width: auto;
            }

            .hero-selector-cta {
                text-align: center;
            }

            .section {
                padding: 80px 20px;
            }
        }