        :root {
            --primary-color: #008f82; /* Teal Impulsa */
            --primary-dark: #007369;
            --bg-light: #f8fafc;
            --text-dark: #1e293b;
            --text-gray: #64748b;
            --white: #ffffff;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Inter', sans-serif;
            margin: 0;
            padding: 0;
            background-color: var(--bg-light);
            color: var(--text-dark);
            line-height: 1.6;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Badge Style */
        .badge {
            display: inline-block;
            color: var(--primary-color);
            text-transform: uppercase;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        /* 1. HERO SECTION */
        .hero {
            text-align: center;
            padding: 100px 20px 60px;
            background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
        }

        .hero h1 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero h1 span { color: var(--primary-color); }

        .hero p {
            max-width: 750px;
            margin: 0 auto;
            font-size: 1.2rem;
            color: var(--text-gray);
        }

        /* 2. ONBOARDING SECTION (4 Bloques) */
        .section-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .onboarding-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 80px;
        }

        .step-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s ease;
            border: 1px solid rgba(0,0,0,0.02);
            text-align: center;
            padding: 0 0 25px 0;
        }

        .step-card:hover { transform: translateY(-5px); }

        .img-placeholder {
            width: 100%;
            height: 180px;
            background-color: #e2e8f0;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gray);
            font-size: 0.9rem;
            overflow: hidden;
        }

        .img-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .step-card h3 {
            font-size: 1.2rem;
            margin: 10px 20px;
            color: var(--primary-color);
        }

        .step-card p {
            font-size: 0.9rem;
            color: var(--text-gray);
            padding: 0 20px;
            margin: 0;
        }

        /* 3. SOPORTE Y EXPERIENCIA (3 Bloques) */
        .support-section {
            background: var(--white);
            padding: 80px 0;
            margin-bottom: 80px;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .support-card {
            padding: 40px 30px;
            border-radius: 24px;
            background: var(--white);
            border: 1px solid #f1f5f9;
            box-shadow: var(--shadow);
            text-align: left;
        }

        .support-icon {
            width: 50px;
            height: 50px;
            background: #f0fdfa;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 25px;
        }

        .support-card h3 { font-size: 1.3rem; margin-bottom: 15px; }

        /* 4. ACOMPAÑAMIENTO SECTION (Texto Izq - Imagen Der) */
        .feature-section {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
            margin: 0;
        }

        .feature-text h2 {
            font-size: 2.5rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .feature-text p {
            font-size: 1.1rem;
            color: var(--text-gray);
            margin-bottom: 2rem;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .feature-list li::before {
            content: '✓';
            background: var(--primary-color);
            color: white;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 0.8rem;
        }

        .feature-image img {
            width: 100%;
            border-radius: 30px;
            box-shadow: var(--shadow-lg);
        }

        /* 5. CTA SECTION */
        .cta-box {
            background-color: var(--primary-color);
            border-radius: 40px;
            padding: 80px 40px;
            text-align: center;
            color: var(--white);
            margin: 80px 0;
        }

        .cta-box h2 {
            font-size: 2.5rem;
            max-width: 900px;
            margin: 0 auto 2rem;
            line-height: 1.2;
        }

        .cta-box p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .btn {
            padding: 16px 36px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

        .btn-white:hover { background-color: #f1f5f9; }

        .btn-outline {
            border: 2px solid var(--white);
            color: var(--white);
        }

        .btn-outline:hover { background-color: rgba(255,255,255,0.1); }

        /* Placeholders */
        .placeholder-section {
            text-align: center;
            padding: 30px;
            border: 2px dashed #cbd5e1;
            color: #94a3b8;
            margin: 20px;
            border-radius: 12px;
        }

        @media (max-width: 992px) {
            .onboarding-grid { grid-template-columns: repeat(2, 1fr); }
            .support-grid { grid-template-columns: 1fr; }
            .feature-section { grid-template-columns: 1fr; gap: 40px; }
            .feature-image { order: -1; }
        }