        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #1a4d6d;
            --secondary-blue: #2596be;
            --accent-cyan: #00bcd4;
            --accent-green: #4CAF50;
            --light-bg: #f5f9fc;
            --white: #ffffff;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
        }

        body {
            font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* Header */
        .header {
            background: rgba(26, 77, 109, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }

        .header.scrolled {
            background: rgba(26, 77, 109, 1);
            box-shadow: 0 2px 30px rgba(0,0,0,0.2);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--white);
            text-decoration: none;
            letter-spacing: 2px;
        }

        .logo span {
            color: var(--accent-cyan);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2.5rem;
        }

        .nav-menu a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
            border-radius: 5px;
        }

        .nav-menu a:hover {
            background: rgba(255,255,255,0.1);
            color: var(--accent-cyan);
        }

        .nav-cta {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
            padding: 0.7rem 1.8rem !important;
            border-radius: 50px;
            font-weight: bold;
        }

        .nav-cta:hover {
            background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,188,212,0.4);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 50%, var(--accent-cyan) 100%);
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 80px;
            overflow: hidden;
            padding-bottom: 50px;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            color: var(--white);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero-content .highlight {
            color: var(--accent-cyan);
            background: linear-gradient(45deg, var(--accent-cyan), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content p {
            font-size: 1.3rem;
            color: rgba(255,255,255,0.95);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-stats {
            display: flex;
            gap: 3rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: bold;
            color: var(--accent-cyan);
            display: block;
        }

        .stat-label {
            color: rgba(255,255,255,0.9);
            font-size: 1rem;
            margin-top: 0.5rem;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .btn {
            padding: 1.2rem 2.5rem;
            font-size: 1.1rem;
            font-weight: bold;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
            color: var(--white);
            box-shadow: 0 5px 25px rgba(0,188,212,0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 35px rgba(0,188,212,0.5);
        }

        .btn-secondary {
            background: rgba(255,255,255,0.15);
            color: var(--white);
            border: 2px solid rgba(255,255,255,0.5);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.25);
            border-color: var(--white);
        }

        .hero-visual {
            position: relative;
        }

        .puzzle-container {
            
            position: relative;
            width: 100%;
            height: 500px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, 1fr);
            gap: 1rem;
            animation: floatAnimation 6s ease-in-out infinite;
        }

        @keyframes floatAnimation {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .puzzle-piece {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .puzzle-piece:hover {
            background: rgba(255,255,255,0.2);
            transform: scale(1.05);
            border-color: var(--accent-cyan);
        }

        .puzzle-piece .icon {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
        }

        .puzzle-piece .label {
            color: var(--white);
            font-weight: 600;
            font-size: 0.9rem;
            text-align: center;
        }

        /* Trust Section */
        .trust-section {
            background: var(--white);
            padding: 3rem 0;
            text-align: center;
            border-bottom: 1px solid #e0e0e0;
        }

        .trust-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .trust-text {
            color: var(--text-light);
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 4rem;
            flex-wrap: wrap;
        }

        .trust-badge {
            display: flex;
            align-items: center;
            gap: 1rem;
            font-size: 1.1rem;
            color: var(--text-dark);
        }

        .trust-badge .icon {
            font-size: 2rem;
            color: var(--accent-green);
        }

        /* Solutions Preview */
        .solutions-preview {
            padding-bottom: 50px;
            padding-top: 50px;
            padding: 0 auto;
            background: linear-gradient(180deg, var(--light-bg) 0%, var(--white) 100%);
        }

        .section-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-header {
            text-align: center;
            line-height: 1.4;
            margin-bottom: 4rem;
        }

        .section-header .label {
            color: var(--accent-cyan);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .section-header h2 {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .section-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            
        }
        .text-format {

            text-align: left;  
        }

        .solution-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2.5rem;
            box-shadow: 0 5px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            border: 2px solid transparent;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            line-height: 1;
            text-align: center;
            padding-left: 25px;
            padding-right: 25px;
            line-height: 1;
           
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--accent-cyan), var(--accent-green));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .solution-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.15);
            border-color: var(--accent-cyan);
        }

        .solution-card:hover::before {
            transform: scaleX(1);
        }

        .solution-card .icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .solution-card h3 {
            font-size: 1.8rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .solution-card p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }


        .solution-card .learn-more {
            position: absolute;
            top: 0;
           left: 0;
            transform: translateY(-3%) translateX(-3%);
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
            color: var(--white);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.7rem 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,188,212,0.15);
            text-decoration: none;
            border: none;
            transition: background 0.3s, box-shadow 0.3s, gap 0.3s, opacity 0.3s;
            z-index: 2;
            /* opacity: 0;
            pointer-events: none; */
        }

        .solution-card .learn-more:hover {
            background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
            box-shadow: 0 4px 18px rgba(0,188,212,0.25);
            gap: 1rem;
        }

        .solution-card:hover .learn-more {
            opacity: 1;
            pointer-events: auto;
            gap: 1rem;
        }

        /* Navigation Overview */
        .navigation-overview {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
        }

        .nav-overview-container {
            text-align: center;
        }

        .nav-overview-title {
            font-size: 2.5rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }

        .nav-overview-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 3rem;
        }

        .nav-overview-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .nav-overview-card {
            background: linear-gradient(135deg, #f5f9fc 0%, #ffffff 100%);
            border: 2px solid #e0e0e0;
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
            text-align: left;
            position: relative;
        }

        .nav-overview-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            border-color: var(--accent-cyan);
        }

        .nav-overview-card .icon {
            font-size: 3rem;
            display: block;
            margin-bottom: 1rem;
        }

        .nav-overview-card h3 {
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
            font-size: 1.6rem;
        }

        .nav-overview-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        .nav-overview-badge {
            display: inline-block;
            background: var(--accent-cyan);
            color: var(--white);
            padding: 0.3rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .nav-overview-badge.primary {
            background: var(--accent-green);
        }

        .nav-info-box {
            background: #f0f7ff;
            border-left: 4px solid var(--secondary-blue);
            padding: 1.8rem;
            border-radius: 15px;
            text-align: left;
            margin-bottom: 2rem;
        }

        .nav-info-box.highlight {
            background: #fff3e0;
            border-left-color: #ff9800;
        }

        .nav-info-box h3 {
            color: var(--primary-blue);
            margin-bottom: 0.8rem;
        }

        .nav-info-box p {
            color: var(--text-light);
            margin-bottom: 0.8rem;
        }

        .nav-info-box ul {
            margin-left: 1.5rem;
            color: var(--text-light);
        }

        .nav-info-box li {
            margin-bottom: 0.5rem;
        }

        /* Featured Facturación Section */
        .featured-solution {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
            padding: 6rem 0;
            color: var(--white);
        }

        .featured-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 4rem;
            align-items: start;
        }

        .featured-badge {
            display: inline-block;
            background:  #fff3e0;
            color: #1a1a1a;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: bold;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            box-shadow: 0 4px 15px rgba(255,215,0,0.3);
        }

        .featured-content h2 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            color: var(--white);
        }

        .featured-content h3 {
            font-size: 1.5rem;
            color: rgba(255,255,255,0.9);
            margin-bottom: 1.5rem;
            font-weight: 400;
        }

        .lead {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            color: rgba(255,255,255,0.95);
        }

        .featured-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            margin: 3rem 0;
        }

        .option-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 15px;
            padding: 2rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .option-card.highlighted {
            background: rgba(255,255,255,0.15);
            border-color: var(--accent-cyan);
            box-shadow: 0 8px 30px rgba(0,188,212,0.3);
        }

        .option-card:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.18);
        }

        .option-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .option-card h4 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--white);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--accent-green);
            color: var(--white);
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(76,175,80,0.4);
        }

        .check-list {
            list-style: none;
            margin-top: 1rem;
        }

        .check-list li {
            padding: 0.6rem 0;
            padding-left: 2rem;
            position: relative;
            color: rgba(255,255,255,0.95);
            line-height: 1.6;
        }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-green);
            font-weight: bold;
            font-size: 1.2rem;
        }

        .cta-inline {
            margin-top: 1.5rem;
        }

        .btn-feature {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0,188,212,0.3);
        }

        .btn-feature:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0,188,212,0.5);
        }

        .stats-inline {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            padding-top: 2rem;
            border-top: 1px solid rgba(255,255,255,0.2);
            flex-wrap: wrap;
        }

        .stat-inline {
            text-align: center;
        }

        .stat-inline strong {
            display: block;
            font-size: 2.5rem;
            color: var(--accent-cyan);
            margin-bottom: 0.5rem;
        }

        .stat-inline span {
            color: rgba(255,255,255,0.9);
            font-size: 0.95rem;
        }

        .featured-visual {
            position: relative;
        }

        .process-flow {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.2);
            border-radius: 20px;
            padding: 2.5rem;
        }

        .flow-step {
            background: rgba(255,255,255,0.15);
            border-radius: 15px;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .flow-step:hover {
            background: rgba(255,255,255,0.2);
            transform: translateX(5px);
        }

        .flow-step.success {
            background: rgba(76,175,80,0.3);
            border: 2px solid var(--accent-green);
        }

        .step-number {
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
            color: var(--white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            flex-shrink: 0;
        }

        .step-content h5 {
            margin: 0 0 0.3rem 0;
            font-size: 1.2rem;
            color: var(--white);
        }

        .step-content p {
            margin: 0;
            color: rgba(255,255,255,0.8);
            font-size: 0.9rem;
        }

        .flow-arrow {
            text-align: center;
            font-size: 2rem;
            color: var(--accent-cyan);
            margin: 0.5rem 0;
        }

        /* Detailed Solutions Catalog */
        .detailed-solutions {
            padding: 5rem 0;
            background: var(--light-bg);
        }

        .detailed-solutions .section-header {
            margin-bottom: 2.5rem;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .product-card {
            background: var(--white);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 5px 25px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
            border-color: var(--accent-cyan);
        }

        .product-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            display: inline-block;
        }

        .product-card h3 {
            font-size: 1.8rem;
            margin-bottom: 0.8rem;
            color: var(--primary-blue);
        }

        .product-tagline {
            font-style: italic;
            color: var(--secondary-blue);
            margin-bottom: 1rem;
            font-size: 1.05rem;
        }

        .product-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 1rem;
        }

        .product-features {
            list-style: none;
            margin-top: 1rem;
            text-align: left;
        }

        .product-features li {
            padding: 0.5rem 0;
            padding-left: 1.5rem;
            position: relative;
            color: var(--text-dark);
        }

        .product-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent-cyan);
            font-weight: bold;
        }

        .product-card.quickfact { border-left: 4px solid #4CAF50; }
        .product-card.provy { border-left: 4px solid #2196F3; }
        .product-card.haztucita { border-left: 4px solid #FF9800; }
        .product-card.contpre { border-left: 4px solid #F44336; }
        .product-card.planpre { border-left: 4px solid #FFC107; }
        .product-card.bancoopre { border-left: 4px solid #9C27B0; }

        /* Benefits Section */
        .benefits {
            padding: 6rem 0;
            background: var(--primary-blue);
            color: var(--white);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .benefit-item {
            text-align: center;
            padding: 2rem;
        }

        .benefit-item .icon {
            font-size: 4rem;
            margin-bottom: 1.5rem;
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-cyan), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .benefit-item h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .benefit-item p {
            color: rgba(255,255,255,0.9);
            line-height: 1.8;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--accent-green) 100%);
            text-align: center;
            color: var(--white);
        }

        .cta-content h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
        }

        .cta-content p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-white {
            background: var(--white);
            color: var(--primary-blue);
        }

        .btn-white:hover {
            background: var(--light-bg);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 3px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary-blue);
        }

        /* Footer */
        .footer {
            background: #1a1a1a;
            color: rgba(255,255,255,0.8);
            padding: 4rem 0 2rem;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-brand h3 {
            color: var(--white);
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .footer-brand p {
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .footer-section h4 {
            color: var(--white);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            display: block;
            padding: 0.5rem 0;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--accent-cyan);
            padding-left: 0.5rem;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 2rem;
            text-align: center;
        }

        /* WhatsApp FAB */
        .whatsapp-fab {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            z-index: 1010;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .whatsapp-fab:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
        }

        .whatsapp-fab svg {
            width: 32px;
            height: 32px;
            fill: var(--white);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-content h1 {
                font-size: 2.5rem;
                            text-align: left;
            padding-left: 25px;
            padding-right: 25px;
            line-height: 0.5;
            }

            .hero-visual {
                display: none;
            }

            .nav-menu {
                display: none;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .solutions-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons {
                justify-content: center;
                flex-direction: column;
            }

            .nav-overview-grid {
                grid-template-columns: 1fr;
            }

            .featured-grid {
                grid-template-columns: 1fr;
            }

            .featured-options {
                grid-template-columns: 1fr;
            }

            .stats-inline {
                gap: 1.5rem;
                justify-content: center;
            }
        }

        @media (max-width: 768px) {
            .process-flow {
                padding: 2rem;
            }

            .flow-step {
                flex-direction: column;
                align-items: flex-start;
            }

            .flow-arrow {
                display: none;
            }

            .nav-info-box {
                padding: 1.5rem;
            }
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .solution-card {
            animation: fadeInUp 0.6s ease-out both;
        }

        .solution-card:nth-child(1) { animation-delay: 0.1s; }
        .solution-card:nth-child(2) { animation-delay: 0.2s; }
        .solution-card:nth-child(3) { animation-delay: 0.3s; }
        .solution-card:nth-child(4) { animation-delay: 0.4s; }

        html {
            scroll-behavior: smooth;
        }