        :root {
            --primary-color: #0066ff;
            --primary-dark: #0052cc;
            --primary-light: #3385ff;
            --primary-deep: #001233;
            --secondary-color: #00d4aa;
            --accent-color: #ff6b6b;
            --text-dark: #12141c;
            --text-light: #5c6270;
            --text-lighter: #97a0ae;
            --bg-light: #f6f8fc;
            --bg-white: #ffffff;
            --font-display: 'Space Grotesk', 'Inter', sans-serif;
            --ease: cubic-bezier(0.16, 1, 0.3, 1);
            --shadow-light: 0 4px 24px rgba(0, 18, 51, 0.06);
            --shadow-medium: 0 12px 40px rgba(0, 18, 51, 0.1);
            --shadow-dark: 0 24px 60px rgba(0, 18, 51, 0.16);
        }

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

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

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

        .container-wide {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(14px) saturate(140%);
            -webkit-backdrop-filter: blur(14px) saturate(140%);
            z-index: 1000;
            transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
            border-bottom: 1px solid rgba(0,0,0,0.02);
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: blur(24px) saturate(180%);
            -webkit-backdrop-filter: blur(24px) saturate(180%);
            border-bottom-color: rgba(0, 18, 51, 0.06);
            box-shadow: 0 8px 32px rgba(0, 18, 51, 0.06);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            text-decoration: none;
        }

        .logo img {
            height: 50px;
            width: auto;
        }

        .logo-icon { height: 38px; }
        .logo-text { color: var(--text-dark); }
        .logo-io { color: var(--primary-color); }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 13px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            letter-spacing: 0.01em;
            transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s var(--ease);
            cursor: pointer;
            border: none;
            position: relative;
            overflow: hidden;
        }

        .btn:active {
            transform: translateY(0) scale(0.97);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: white;
            box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(0, 102, 255, 0.35);
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

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

        .btn-outline {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background:
                radial-gradient(circle at 82% 18%, rgba(0, 212, 170, 0.35) 0%, transparent 55%),
                radial-gradient(circle at 8% 92%, rgba(51, 133, 255, 0.4) 0%, transparent 50%),
                linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 55%, var(--primary-color) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding-top: 80px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: 0.05;
            mix-blend-mode: overlay;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-text h1 {
            font-family: var(--font-display);
            font-size: clamp(2.5rem, 5vw, 4.25rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.05;
            margin-bottom: 1.5rem;
            color: white;
            opacity: 0;
            animation: slideInUp 1s var(--ease) 0.2s forwards;
        }

        .hero-text .highlight {
            background: linear-gradient(135deg, #00d4aa, #00b8d4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-text p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            opacity: 0;
            animation: slideInUp 1s var(--ease) 0.4s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            opacity: 0;
            animation: slideInUp 1s var(--ease) 0.6s forwards;
        }

        .hero-visual {
            position: relative;
            opacity: 0;
            animation: slideInRight 1s var(--ease) 0.8s forwards;
        }

        .floating-card {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(24px) saturate(160%);
            border: 1px solid rgba(255, 255, 255, 0.16);
            border-top-color: rgba(255, 255, 255, 0.32);
            border-radius: 18px;
            padding: 1.75rem 2rem;
            margin: 1rem;
            transition: all 0.3s ease;
            animation: float 6s ease-in-out infinite;
        }

        .floating-card:nth-child(1) { animation-delay: 0s; }
        .floating-card:nth-child(2) { animation-delay: 2s; }
        .floating-card:nth-child(3) { animation-delay: 4s; }

        .floating-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 8, 30, 0.35);
        }

        .card-icon svg,
        .feature-icon svg {
            width: 1em;
            height: 1em;
        }

        .card-icon {
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            background: rgba(0, 212, 170, 0.16);
            font-size: 1.15rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .card-title {
            color: white;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .card-description {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
        }

        /* Features Section */
        .features {
            background: var(--bg-light);
            padding: 6rem 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .section-header.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .section-header h2 {
            font-family: var(--font-display);
            font-size: clamp(2.1rem, 4vw, 2.9rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: var(--bg-white);
            border: 1px solid rgba(0, 18, 51, 0.06);
            border-radius: 20px;
            padding: 2.75rem 2.25rem;
            box-shadow: var(--shadow-light);
            transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
            opacity: 0;
            transform: translateY(30px);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-dark);
            border-color: rgba(0, 102, 255, 0.14);
        }

        .feature-icon {
            width: 68px;
            height: 68px;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 170, 0.12));
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.55rem;
            color: var(--primary-color);
            margin: 0 auto 1.5rem;
        }

        .feature-card h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Projects Section */
        .projects {
            background: var(--bg-white);
            padding: 6rem 0;
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
        }

        @media (min-width: 860px) {
            .projects-grid { grid-template-columns: repeat(2, 1fr); }
        }

        .project-card {
            background: var(--bg-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-light);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .project-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .project-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-dark);
        }

        .project-image {
            position: relative;
            width: 100%;
            height: 250px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.05), rgba(0, 212, 170, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.1);
        }

        .project-icon-placeholder {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.25rem;
            color: white;
            box-shadow: 0 16px 32px -12px rgba(0, 82, 204, 0.55);
        }

        .project-overlay {
            position: absolute;
            top: 1rem;
            right: 1rem;
        }

        .project-mark {
            position: absolute;
            top: 1rem;
            left: 1rem;
            width: 40px;
            height: 40px;
            border-radius: 11px;
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 18px rgba(0, 18, 51, 0.18);
            color: var(--primary-color);
            font-size: 1.15rem;
        }

        .project-mark svg { width: 1.1em; height: 1.1em; }

        .project-badge {
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        .project-content {
            padding: 2rem;
        }

        .project-content h3 {
            font-family: var(--font-display);
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .project-content p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .project-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .project-card:hover .project-link {
            gap: 1rem;
            color: var(--primary-dark);
        }

        /* Industries Section */
        .industries {
            background: var(--bg-light);
            padding: 6rem 0;
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
        }

        .industry-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-light);
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .industry-card.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-dark);
        }

        .industry-icon {
            width: 120px;
            height: 120px;
            margin: 0 auto 1.5rem;
            padding: 1.5rem;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 212, 170, 0.1));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .industry-card:hover .industry-icon {
            transform: scale(1.1);
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.2), rgba(0, 212, 170, 0.2));
        }

        .industry-icon img {
            width: 100%;
            height: auto;
        }

        .industry-card h3 {
            font-family: var(--font-display);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .industry-card p {
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .industry-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .industry-link:hover {
            gap: 1rem;
            color: var(--primary-dark);
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary-deep) 0%, #001a4d 55%, var(--primary-dark) 100%);
            padding: 6rem 0;
            text-align: center;
            color: white;
            position: relative;
        }

        .cta-content h2 {
            font-family: var(--font-display);
            font-size: clamp(2.1rem, 4vw, 2.9rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .cta-content.animate h2 {
            opacity: 1;
            transform: translateY(0);
        }

        .cta-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.2s;
        }

        .cta-content.animate p {
            opacity: 0.9;
            transform: translateY(0);
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease 0.4s;
        }

        .cta-content.animate .cta-buttons {
            opacity: 1;
            transform: translateY(0);
        }

        /* Footer */
        footer {
            background: var(--primary-deep);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h4 {
            font-family: var(--font-display);
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--secondary-color);
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-2px);
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            border-radius: 50%;
            text-align: center;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
        }

        .whatsapp-float img {
            width: 32px;
            height: 32px;
        }

        /* Mobile menu */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            margin: 2px 0;
            transition: 0.3s;
            border-radius: 1px;
        }

        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

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

        @keyframes moveBackground {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(50px, 50px);
            }
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            }
            50% {
                box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
            }
            100% {
                box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
            }
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: white;
                flex-direction: column;
                padding: 1rem;
                box-shadow: var(--shadow-medium);
            }

            .nav-menu.active {
                display: flex;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 2.5rem;
            }

            .section-header h2 {
                font-size: 2rem;
            }

            .cta-content h2 {
                font-size: 2rem;
            }

            .hero-buttons,
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        /* --- Shared inner-page hero (Contacto, Quiénes somos, industrias, soluciones) --- */
        .page-hero {
            min-height: 42vh;
            background:
                radial-gradient(circle at 82% 18%, rgba(0, 212, 170, 0.35) 0%, transparent 55%),
                radial-gradient(circle at 8% 92%, rgba(51, 133, 255, 0.4) 0%, transparent 50%),
                linear-gradient(135deg, var(--primary-deep) 0%, var(--primary-dark) 55%, var(--primary-color) 100%);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 140px 0 3rem;
        }
        .page-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: moveBackground 20s linear infinite;
        }
        .page-hero .container { position: relative; z-index: 2; text-align: center; }
        .page-hero .eyebrow-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(255,255,255,0.12);
            border: 1px solid rgba(255,255,255,0.2);
            color: #fff;
            padding: 0.4rem 0.9rem;
            border-radius: 50px;
            font-size: 0.78rem;
            font-weight: 600;
            letter-spacing: 0.02em;
            margin-bottom: 1.25rem;
        }
        .page-hero h1 {
            font-family: var(--font-display);
            font-size: clamp(2.25rem, 5vw, 3.25rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            color: white;
            margin-bottom: 1rem;
        }
        .page-hero p {
            font-size: 1.1rem;
            color: rgba(255,255,255,0.85);
            max-width: 52ch;
            margin: 0 auto;
        }

        /* --- Generic content section on light bg, used across industry/solution pages --- */
        .page-section { padding: 5rem 0; }
        .page-section.alt { background: var(--bg-light); }
        .page-section h2 {
            font-family: var(--font-display);
            font-size: clamp(1.75rem, 3vw, 2.25rem);
            font-weight: 700;
            letter-spacing: -0.01em;
        }
        .page-section .lede {
            color: var(--text-light);
            font-size: 1.05rem;
            max-width: 60ch;
        }
        .page-section .lede.center { margin: 0 auto; text-align: center; }

        .pasos-lista {
            counter-reset: paso;
            max-width: 640px;
            margin: 2rem auto 0;
            display: grid;
            gap: 1rem;
        }
        .pasos-lista li {
            counter-increment: paso;
            list-style: none;
            display: flex;
            align-items: center;
            gap: 1rem;
            background: var(--bg-white);
            border-radius: 14px;
            padding: 1rem 1.3rem;
            box-shadow: var(--shadow-light);
        }
        .trust-strip {
            display: grid;
            gap: 1.25rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }
        @media (min-width: 700px) { .trust-strip { grid-template-columns: repeat(3, 1fr); } }
        .trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
        .trust-icon {
            width: 46px; height: 46px; border-radius: 12px;
            background: linear-gradient(135deg, rgba(0,102,255,0.1), rgba(0,212,170,0.12));
            color: var(--primary-color);
            display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
        }
        .trust-item strong { font-family: var(--font-display); font-size: 0.98rem; }
        .trust-item p { margin: 0; font-size: 0.86rem; color: var(--text-light); max-width: 24ch; }

        .pasos-lista li::before {
            content: counter(paso);
            flex-shrink: 0;
            width: 34px; height: 34px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
            color: white;
            display: flex; align-items: center; justify-content: center;
            font-weight: 700; font-size: 0.95rem;
            font-family: var(--font-display);
        }
