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

        :root {
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --gray-300: #d1d5db;
            --gray-400: #9ca3af;
            --gray-500: #6b7280;
            --gray-600: #4b5563;
            --gray-700: #374151;
            --gray-800: #1f2937;
            --gray-900: #111827;
            --indigo-600: #4f46e5;
            --indigo-700: #4338ca;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--gray-900);
            line-height: 1.6;
            background: #fff;
            -webkit-font-smoothing: antialiased;
        }

        /* Animaciones */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-fade-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-fade-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-fade-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .animate-fade-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .delay-100 { transition-delay: 0.1s; }
        .delay-200 { transition-delay: 0.2s; }
        .delay-300 { transition-delay: 0.3s; }
        .delay-400 { transition-delay: 0.4s; }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--gray-100);
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-900);
            text-decoration: none;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: var(--gray-900);
        }

        .nav-links a.active {
            color: var(--indigo-600);
        }

        .nav-cta {
            background: var(--indigo-600);
            color: #fff;
            padding: 0.625rem 1.25rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 600;
            transition: background 0.2s;
        }

        .nav-cta:hover {
            background: var(--indigo-700);
        }

        .nav-login {
            color: var(--gray-600);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .nav-login:hover {
            color: var(--indigo-600);
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--gray-700);
        }

        /* Hero Section */
        .hero {
            padding: 10rem 2rem 6rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-label {
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--indigo-600);
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 1.5rem;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--gray-900);
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray-600);
            max-width: 600px;
            line-height: 1.7;
        }

        /* Stats Section */
        .stats-section {
            padding: 4rem 2rem;
            background: var(--gray-50);
            border-top: 1px solid var(--gray-100);
            border-bottom: 1px solid var(--gray-100);
        }

        .stats-inner {
            max-width: 900px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray-500);
            font-weight: 500;
        }

        /* Story Section */
        .story-section {
            padding: 6rem 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .story-section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 2rem;
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .story-content p {
            font-size: 1.1rem;
            color: var(--gray-600);
            line-height: 1.8;
        }

        /* Quote Section */
        .quote-section {
            padding: 6rem 2rem;
            background: var(--gray-900);
            color: #fff;
        }

        .quote-inner {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .quote-text {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 500;
            line-height: 1.5;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .quote-author {
            font-size: 0.9rem;
            color: var(--gray-400);
        }

        /* Approach Section */
        .approach-section {
            padding: 6rem 2rem;
            max-width: 900px;
            margin: 0 auto;
        }

        .approach-section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }

        .approach-subtitle {
            font-size: 1.1rem;
            color: var(--gray-500);
            margin-bottom: 3rem;
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .approach-item {
            padding: 2rem;
            border: 1px solid var(--gray-200);
            border-radius: 12px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }

        .approach-item:hover {
            border-color: var(--gray-300);
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        .approach-number {
            font-size: 0.875rem;
            font-weight: 700;
            color: var(--indigo-600);
            margin-bottom: 1rem;
        }

        .approach-item h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.75rem;
        }

        .approach-item p {
            font-size: 0.95rem;
            color: var(--gray-500);
            line-height: 1.6;
        }

        /* Team Section */
        .team-section {
            padding: 6rem 2rem;
            background: var(--gray-50);
            border-top: 1px solid var(--gray-100);
            border-bottom: 1px solid var(--gray-100);
        }

        .team-inner {
            max-width: 900px;
            margin: 0 auto;
        }

        .team-section h2 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }

        .team-subtitle {
            font-size: 1.1rem;
            color: var(--gray-500);
            margin-bottom: 3rem;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
        }

        .team-member {
            display: flex;
            flex-direction: column;
        }

        .team-photo {
            width: 100%;
            aspect-ratio: 1;
            object-fit: cover;
            border-radius: 12px;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
            margin-bottom: 1.5rem;
            background: var(--gray-200);
        }

        .team-member:hover .team-photo {
            filter: grayscale(0%);
        }

        .team-name {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: 0.25rem;
        }

        .team-role {
            font-size: 0.9rem;
            color: var(--indigo-600);
            font-weight: 500;
            margin-bottom: 1rem;
        }

        .team-bio {
            font-size: 0.95rem;
            color: var(--gray-500);
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .team-linkedin {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--gray-500);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: color 0.2s;
        }

        .team-linkedin:hover {
            color: #0077b5;
        }

        .team-linkedin i {
            font-size: 1.1rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 2rem;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 1rem;
        }

        .cta-subtitle {
            font-size: 1.1rem;
            color: var(--gray-500);
            margin-bottom: 2rem;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--indigo-600);
            color: #fff;
            padding: 1rem 2rem;
            border-radius: 0.5rem;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: background 0.2s, transform 0.2s;
            box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
        }

        .cta-button:hover {
            background: var(--indigo-700);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: #fff;
            padding: 4rem 2rem 2rem;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand .logo {
            color: #fff;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .footer-brand p {
            color: var(--gray-400);
            font-size: 0.875rem;
            line-height: 1.7;
        }

        .footer-title {
            font-weight: 600;
            margin-bottom: 1.25rem;
            font-size: 0.875rem;
            text-transform: uppercase;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: var(--gray-400);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.2s;
        }

        .footer-links a:hover {
            color: #fff;
        }

        .footer-links li:not(:has(a)) {
            color: var(--gray-400);
            font-size: 0.875rem;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid var(--gray-800);
            text-align: center;
        }

        .footer-bottom p {
            color: var(--gray-500);
            font-size: 0.8125rem;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header {
                position: relative;
                z-index: 1000;
            }

            .nav {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: var(--white);
                box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
                z-index: 999;
                flex-direction: column;
                padding: 1.5rem;
                transform: translateY(-100%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                max-height: calc(100vh - 80px);
                overflow-y: auto;
            }

            .nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-links {
                display: flex;
                flex-direction: column;
                gap: 0.5rem;
                width: 100%;
                margin-bottom: 1rem;
                list-style: none;
                padding: 0;
            }

            .nav-links li {
                width: 100%;
            }

            .nav-links a {
                display: block;
                padding: 0.75rem 1rem;
                width: 100%;
                border-radius: 0.5rem;
                transition: background 0.2s;
            }

            .nav-links a:hover {
                background: var(--gray-100);
            }

            .nav-cta, .nav-login {
                display: block;
                width: 100%;
                text-align: center;
                margin-top: 0.5rem;
            }

            .mobile-toggle {
                display: block;
                z-index: 1001;
                position: relative;
            }

            .hero {
                padding: 8rem 1.5rem 4rem;
            }

            .hero h1 {
                font-size: 2.25rem;
            }

            .stats-inner {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .story-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .approach-grid {
                grid-template-columns: 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
                gap: 2.5rem;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
        }
