
      

        .hero {
            margin-top: 35px;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            padding: 60px 20px;
        }

        .hero::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: -200px;
            right: -200px;
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -150px;
            left: -150px;
            animation: float 10s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.05); }
        }

        .hero-content {
            text-align: center;
            color: white;
            z-index: 2;
            max-width: 1000px;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .badges {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .badge {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            padding: 12px 28px;
            border-radius: 30px;
            font-size: 15px;
            font-weight: 700;
            border: 2px solid rgba(255, 255, 255, 0.4);
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        }

        .badge:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        h1 {
            font-size: 4em;
            font-weight: 900;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow: 2px 4px 30px rgba(0, 0, 0, 0.2);
            letter-spacing: -1px;
        }

        .hero-content > p {
            font-size: 1.25em;
            margin-bottom: 50px;
            opacity: 0.98;
            line-height: 1.8;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }

        .cta-btn {
            padding: 20px 50px;
            font-size: 1.2em;
            font-weight: 800;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
            background: white;
            color: #4facfe;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .section {
            padding: 120px 20px;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3.2em;
            font-weight: 900;
            margin-bottom: 70px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            letter-spacing: -1px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 3px;
        }

        .why-section {
            background: white;
        }

        .why-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .why-text {
            font-size: 1.2em;
            line-height: 2;
            color: #4a5568;
            text-align: justify;
        }

        .why-image {
            height: 500px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5em;
            box-shadow: 0 25px 70px rgba(102, 126, 234, 0.4);
            position: relative;
            overflow: hidden;
            transition: transform 0.5s ease;
        }

        .why-image:hover {
            transform: scale(1.03) rotate(1deg);
        }

        .why-image::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .highlights-section {
            background: linear-gradient(135deg, #e0f7ff 0%, #f5f0ff 100%);
        }

        .cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 35px;
            margin-top: 70px;
        }

        .card {
            background: white;
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 3px solid transparent;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s ease;
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .card-icon {
            font-size: 4em;
            margin-bottom: 25px;
            display: inline-block;
            transition: all 0.5s ease;
        }

        .card:hover .card-icon {
            transform: scale(1.3) rotate(10deg);
        }

        .card h3 {
            font-size: 1.6em;
            margin-bottom: 18px;
            color: #2d3748;
            font-weight: 800;
        }

        .card p {
            color: #718096;
            line-height: 1.8;
            font-size: 1.05em;
        }

        .services-grid-section {
            background: white;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 70px;
        }

        .service-card {
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            padding: 45px 35px;
            border-radius: 25px;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 3px solid transparent;
        }

        .service-card::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .service-card:hover::after {
            opacity: 1;
        }

        .service-card:hover {
            background: white;
            border-color: #667eea;
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
        }

        .service-number {
            font-size: 2.5em;
            font-weight: 900;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 20px;
        }

        .service-card h4 {
            font-size: 1.4em;
            margin-bottom: 15px;
            color: #2d3748;
            font-weight: 800;
        }

        .service-card p {
            color: #718096;
            line-height: 1.7;
            font-size: 1.05em;
        }

        .benefits-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        .benefits-section .section-title {
            background: white;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .benefits-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 40px;
            margin-top: 70px;
        }

        .benefit-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 40px 35px;
            border-radius: 20px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-item::before {
            content: '✓';
            position: absolute;
            font-size: 8em;
            font-weight: bold;
            color: rgba(255, 255, 255, 0.05);
            top: -20px;
            right: -20px;
            transition: all 0.4s ease;
        }

        .benefit-item:hover::before {
            transform: rotate(360deg) scale(1.2);
            color: rgba(255, 255, 255, 0.1);
        }

        .benefit-item:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .benefit-item h4 {
            font-size: 1.5em;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .benefit-item p {
            line-height: 1.8;
            opacity: 0.95;
            font-size: 1.05em;
        }

        .features-section {
            background: linear-gradient(135deg, #e8fff5 0%, #e0f7ff 100%);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 70px;
        }

        .feature-card {
            background: white;
            padding: 50px 45px;
            border-radius: 25px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border-left: 6px solid #667eea;
        }

        .feature-card:nth-child(2) {
            border-left-color: #764ba2;
        }

        .feature-card:nth-child(3) {
            border-left-color: #f093fb;
        }

        .feature-card:nth-child(4) {
            border-left-color: #4ade80;
        }

        .feature-card:hover {
            transform: translateX(15px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
        }

        .feature-icon {
            font-size: 3.5em;
            margin-bottom: 25px;
            display: inline-block;
            transition: transform 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.2) rotate(-10deg);
        }

        .feature-card h4 {
            font-size: 1.7em;
            margin-bottom: 18px;
            color: #2d3748;
            font-weight: 800;
        }

        .feature-card p {
            color: #718096;
            line-height: 1.8;
            font-size: 1.1em;
        }

        .final-cta {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            color: white;
            text-align: center;
            padding: 120px 20px;
            position: relative;
            overflow: hidden;
        }

        .final-cta::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -250px;
            left: -250px;
            animation: float 10s ease-in-out infinite;
        }

        .final-cta h2 {
            font-size: 3.5em;
            margin-bottom: 25px;
            font-weight: 900;
            position: relative;
            z-index: 2;
        }

        .final-cta p {
            font-size: 1.4em;
            margin-bottom: 50px;
            opacity: 0.98;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
        }

        .cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }

        .btn-white {
            background: white;
            color: #4facfe;
            padding: 20px 50px;
            font-size: 1.2em;
            font-weight: 800;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .btn-white:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: white;
            padding: 20px 50px;
            font-size: 1.2em;
            font-weight: 800;
            border: 3px solid white;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .btn-outline:hover {
            background: white;
            color: #4facfe;
            transform: translateY(-8px);
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5em; }
            .section-title { font-size: 2.2em; }
            .why-content {
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .features-grid {
                grid-template-columns: 1fr;
            }
            .benefits-list {
                grid-template-columns: 1fr;
            }
            .cards {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(40px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
    