:root {
            --primary: #2EADBA;
            --primary-dark: #248b96;
            --secondary: #1e293b;
            --bg-light: #f8fafc;
            --text-main: #0f172a;
            --text-muted: #64748b;
        }
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-main);
            background-color: #ffffff;
            -webkit-font-smoothing: antialiased;
        }
        
        /* NAVBAR */
        .navbar {
            padding: 1rem 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }
        .nav-link {
            color: var(--text-main);
            font-weight: 500;
            padding: 0.5rem 1rem;
            transition: color 0.3s;
        }
        .nav-link:hover {
            color: var(--primary);
        }
        
        /* BUTTONS */
        .btn-primary-custom {
            background-color: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: none;
            display: inline-block;
            box-shadow: 0 4px 10px rgba(46, 173, 186, 0.2);
        }
        .btn-primary-custom:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            color: white;
            box-shadow: 0 6px 15px rgba(46, 173, 186, 0.3);
        }
        .btn-outline-custom {
            background-color: transparent;
            color: var(--secondary);
            padding: 0.75rem 1.5rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid #cbd5e1;
            display: inline-block;
        }
        .btn-outline-custom:hover {
            background-color: #f1f5f9;
            color: var(--secondary);
        }

        /* HERO */
        .hero {
            background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
            padding: 8rem 0 4rem;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 600px;
            height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(46,173,186,0.08) 0%, rgba(255,255,255,0) 70%);
            z-index: 0;
        }
        .badge-ai {
            background: linear-gradient(90deg, #1e293b, #2EADBA);
            color: white;
            padding: 0.4rem 1.2rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(46, 173, 186, 0.2);
        }
        .hero h1 {
            font-weight: 800;
            font-size: 3.8rem;
            line-height: 1.1;
            letter-spacing: -1.5px;
            margin-bottom: 1.5rem;
            color: var(--secondary);
        }
        .hero h1 span {
            color: var(--primary);
        }
        .hero p {
            font-size: 1.125rem;
            color: var(--text-muted);
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 90%;
        }
        .hero-img-wrapper {
            position: relative;
            z-index: 1;
        }
        .hero-img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            border: 1px solid #e2e8f0;
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }
        .hero-img:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        /* LOGOS */
        .logos-section {
            padding: 3rem 0;
            border-bottom: 1px solid #e2e8f0;
        }
        .logos-section img, .logos-section i {
            transition: all 0.3s;
            opacity: 0.6;
        }
        .logos-section img:hover, .logos-section i:hover {
            opacity: 1;
            filter: grayscale(0%) !important;
        }
        
        /* FEATURES */
        .features-section {
            padding: 6rem 0;
            background-color: #ffffff;
        }
        .feature-card {
            background: #ffffff;
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
            border-color: rgba(46, 173, 186, 0.3);
            transform: translateY(-5px);
        }
        .icon-box {
            width: 55px;
            height: 55px;
            background-color: rgba(46, 173, 186, 0.1);
            color: var(--primary);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .feature-list li {
            margin-bottom: 1.2rem;
            display: flex;
            align-items: flex-start;
            color: var(--text-muted);
            font-size: 1.05rem;
        }
        .feature-list li i {
            color: var(--primary);
            margin-top: 5px;
            margin-right: 12px;
            font-size: 1.1rem;
        }
        
        /* VIDEO */
        .video-section {
            background-color: var(--bg-light);
            padding: 6rem 0;
            border-top: 1px solid #e2e8f0;
            border-bottom: 1px solid #e2e8f0;
        }
        .video-wrapper {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
            position: relative;
            padding-top: 56.25%;
            border: 8px solid white;
        }
        .video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        /* PRICING */
        .pricing-section {
            padding: 6rem 0;
            background-color: #ffffff;
        }
        .match-card {
            background: linear-gradient(135deg, #1e293b, #0f172a);
            color: white;
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.3);
        }
        .match-card::after {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(46,173,186,0.3) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
        }
        .pricing-card {
            border: 1px solid #e2e8f0;
            border-radius: 16px;
            padding: 2.5rem;
            height: 100%;
            transition: all 0.3s;
            background: white;
        }
        .pricing-card.premium {
            border: 2px solid var(--primary);
            box-shadow: 0 20px 40px -10px rgba(46,173,186,0.15);
            position: relative;
        }
        .pricing-card.premium::before {
            content: 'Más Popular';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            text-transform: uppercase;
        }
        .pricing-card:hover {
            box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
            transform: translateY(-5px);
        }
        
        /* VERTICAL TABS */
        .nav-pills .nav-link {
            color: var(--text-muted);
            border-radius: 10px;
            padding: 1rem 1.5rem;
            margin-bottom: 0.5rem;
            text-align: left;
            font-weight: 500;
            border: 1px solid transparent;
            transition: all 0.2s;
        }
        .nav-pills .nav-link:hover {
            background-color: var(--bg-light);
        }
        .nav-pills .nav-link.active {
            background-color: rgba(46, 173, 186, 0.08);
            color: var(--primary);
            font-weight: 600;
            border-color: rgba(46, 173, 186, 0.2);
        }
        
        /* DIFFERENTIATORS */
        .diff-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #0d3d44 100%);
            padding: 6rem 0;
            position: relative;
            overflow: hidden;
        }
        /* Cloud / tech floating shapes */
        .diff-section::before {
            content: '';
            position: absolute;
            top: -80px; left: -80px;
            width: 400px; height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(46,173,186,0.15) 0%, transparent 70%);
            animation: floatBlob 8s ease-in-out infinite;
        }
        .diff-section::after {
            content: '';
            position: absolute;
            bottom: -100px; right: -60px;
            width: 500px; height: 500px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(46,173,186,0.10) 0%, transparent 70%);
            animation: floatBlob 10s ease-in-out infinite reverse;
        }
        @keyframes floatBlob {
            0%, 100% { transform: translateY(0px) scale(1); }
            50% { transform: translateY(-30px) scale(1.05); }
        }
        .diff-card {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            transition: all 0.3s;
            position: relative;
            z-index: 1;
        }
        .diff-card:hover {
            background: rgba(46,173,186,0.1);
            border-color: rgba(46,173,186,0.3);
            transform: translateY(-4px);
        }
        .diff-icon {
            width: 52px; height: 52px;
            background: rgba(46,173,186,0.15);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        /* MODULE DETAIL */
        .module-section {
            padding: 6rem 0;
            background: #ffffff;
        }
        .module-card {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 20px;
            padding: 3rem 2.5rem;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: all 0.3s;
        }
        .module-card:hover {
            box-shadow: 0 25px 50px -10px rgba(0,0,0,0.08);
            border-color: rgba(46,173,186,0.25);
        }
        .module-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), #1e293b);
            border-radius: 20px 20px 0 0;
        }
        .module-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(46,173,186,0.1);
            color: var(--primary);
            border: 1px solid rgba(46,173,186,0.2);
            border-radius: 50px;
            padding: 0.35rem 1rem;
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 1.2rem;
        }
        .module-list {
            list-style: none;
            padding: 0; margin: 0;
        }
        .module-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.85rem;
            color: #475569;
            font-size: 0.97rem;
        }
        .module-list li i {
            color: var(--primary);
            margin-top: 3px;
            flex-shrink: 0;
        }
        /* FOOTER */
        footer {
            background-color: var(--bg-light);
            padding: 4rem 0 2rem;
            border-top: 1px solid #e2e8f0;
        }
        
        /* RESPONSIVE TWEAKS */
        @media (max-width: 991px) {
            .hero h1 { font-size: 2.8rem; }
            .hero { padding: 7rem 0 3rem; }
        }