
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: #0a0e27;
            overflow-x: hidden;
        }

        .animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
        }

        .animated-bg::before {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: 
                radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
            animation: bgShift 20s ease infinite;
        }

        @keyframes bgShift {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-50px, -50px); }
        }

        .grain-texture {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
        }

        header {
            background: rgba(10, 14, 39, 0.8);
            backdrop-filter: blur(10px);
            padding: 1.5rem 5%;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(99, 102, 241, 0.2);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .cta-btn {
            padding: 0.8rem 2rem;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: white;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .hero {
            max-width: 1400px;
            margin: 0 auto;
            padding: 6rem 5% 4rem;
            text-align: center;
            position: relative;
        }

        .hero-banner {
            position: absolute;
            top: -50px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            height: 400px;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
            border-radius: 30px;
            filter: blur(60px);
            animation: heroFloat 8s ease-in-out infinite;
            z-index: 0;
        }

        @keyframes heroFloat {
            0%, 100% {
                transform: translateX(-50%) translateY(0) scale(1);
            }
            50% {
                transform: translateX(-50%) translateY(-20px) scale(1.05);
            }
        }

        .hero-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.6;
            animation: orbFloat 10s ease-in-out infinite;
            z-index: 0;
        }

        .hero-gradient-orb:nth-child(1) {
            top: 10%;
            left: 10%;
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            animation-delay: 0s;
        }

        .hero-gradient-orb:nth-child(2) {
            top: 60%;
            right: 10%;
            width: 250px;
            height: 250px;
            background: linear-gradient(135deg, #8b5cf6, #3b82f6);
            animation-delay: 2s;
        }

        .hero-gradient-orb:nth-child(3) {
            bottom: 10%;
            left: 50%;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #3b82f6, #6366f1);
            animation-delay: 4s;
        }

        @keyframes orbFloat {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            33% {
                transform: translate(30px, -30px) scale(1.1);
            }
            66% {
                transform: translate(-30px, 30px) scale(0.9);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .meta-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
            font-size: 0.9rem;
            color: #a0aec0;
        }

        .meta-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .rating {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .stars {
            color: #fbbf24;
            font-size: 1.2rem;
        }

        h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, #ffffff, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .subtitle {
            font-size: 1.3rem;
            color: #a0aec0;
            margin-bottom: 2rem;
        }

        .trust-badge {
            display: inline-block;
            padding: 0.5rem 1.5rem;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50px;
            margin-bottom: 2rem;
            color: #8b5cf6;
            font-weight: 600;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 5%;
        }

        .stat-card {
            background: rgba(99, 102, 241, 0.05);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: rgba(99, 102, 241, 0.5);
            box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            color: #a0aec0;
            margin-top: 0.5rem;
        }

        section {
            max-width: 1400px;
            margin: 0 auto;
            padding: 4rem 5%;
        }

        h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 3rem;
            text-align: center;
            background: linear-gradient(135deg, #ffffff, #8b5cf6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .case-study {
            background: rgba(99, 102, 241, 0.05);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
        }

        .case-study h3 {
            color: #8b5cf6;
            margin-bottom: 1rem;
            font-size: 1.8rem;
        }

        .case-metrics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .metric {
            text-align: center;
        }

        .metric-value {
            font-size: 2rem;
            font-weight: 800;
            color: #6366f1;
        }

        .table-container {
            overflow-x: auto;
            margin: 2rem 0;
            background: rgba(99, 102, 241, 0.05);
            border-radius: 15px;
            padding: 1.5rem;
        }

        table {
            width: 100%;
            border-collapse: collapse;
        }

        th, td {
            padding: 1rem;
            text-align: left;
            border-bottom: 1px solid rgba(99, 102, 241, 0.2);
        }

        th {
            color: #8b5cf6;
            font-weight: 700;
        }

        .highlight-row {
            background: linear-gradient(90deg, rgba(99, 102, 241, 0.3), rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
            background-size: 200% 100%;
            font-weight: 700;
            color: #ffffff;
            border-left: 4px solid #8b5cf6;
            animation: gradientShift 3s ease infinite, rowPulse 2s ease-in-out infinite;
            position: relative;
            overflow: hidden;
        }

        @keyframes gradientShift {
            0%, 100% {
                background-position: 0% 50%;
            }
            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes rowPulse {
            0%, 100% {
                box-shadow: 0 0 0 rgba(139, 92, 246, 0);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
                transform: scale(1.02);
            }
        }

        .highlight-row::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            animation: shimmer 3s infinite;
        }

        @keyframes shimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        .highlight-row td {
            color: #ffffff;
            font-weight: 700;
            padding: 1.2rem 1rem;
            position: relative;
            z-index: 1;
        }

        .highlight-row td:first-child {
            color: #fbbf24;
            font-size: 1.1rem;
            text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
        }

        .testimonial-scroll {
            overflow: hidden;
            position: relative;
            padding: 2rem 0;
        }

        .testimonial-track {
            display: flex;
            gap: 2rem;
            animation: scroll 30s linear infinite;
        }

        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .testimonial-card {
            min-width: 350px;
            background: rgba(99, 102, 241, 0.05);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            padding: 2rem;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
            animation: cardShimmer 4s infinite;
        }

        @keyframes cardShimmer {
            0% {
                left: -100%;
            }
            100% {
                left: 100%;
            }
        }

        .testimonial-card:hover {
            transform: translateY(-10px) scale(1.05);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
        }

        .testimonial-card:hover .client-avatar {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
        }

        .testimonial-card:hover .testimonial-stars {
            animation: starGlow 1s ease-in-out;
        }

        @keyframes starGlow {
            0%, 100% {
                text-shadow: 0 0 5px rgba(251, 191, 36, 0.5);
            }
            50% {
                text-shadow: 0 0 20px rgba(251, 191, 36, 1);
            }
        }

        .client-info {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .client-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            transition: all 0.6s ease;
            box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
        }

        .client-details h4 {
            color: #ffffff;
            margin-bottom: 0.2rem;
        }

        .client-details p {
            color: #a0aec0;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .testimonial-card:hover .client-details h4 {
            color: #8b5cf6;
        }

        .testimonial-card:hover .client-details p {
            color: #e0e0e0;
        }

        .testimonial-card p:last-child {
            position: relative;
            z-index: 1;
        }

        .testimonial-stars {
            color: #fbbf24;
            margin-bottom: 1rem;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .faq-section {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(99, 102, 241, 0.05);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 15px;
            margin-bottom: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 1.5rem;
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 1.5rem 1.5rem;
            color: #a0aec0;
            line-height: 1.8;
        }

        .cta-section {
            text-align: center;
            padding: 5rem 5%;
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
            border-radius: 30px;
            margin: 4rem auto;
            max-width: 1200px;
        }

        .cta-section h2 {
            margin-bottom: 1rem;
            text-align: center;
        }

        .cta-section p {
            text-align: center;
        }

        .cta-section .cta-btn {
            padding: 1.2rem 3rem;
            font-size: 1.1rem;
            margin-top: 2rem;
        }

        .call-now-section {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
            border: 2px solid rgba(99, 102, 241, 0.3);
            border-radius: 30px;
            padding: 4rem 2rem;
            text-align: center;
            margin: 4rem auto;
            max-width: 800px;
            position: relative;
            overflow: hidden;
        }

        .call-now-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            animation: rotateGradient 10s linear infinite;
        }

        @keyframes rotateGradient {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .call-now-container {
            position: relative;
            z-index: 1;
        }

        .call-now-icon {
            font-size: 4rem;
            margin-bottom: 1rem;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .call-now-section h2 {
            font-size: 2.2rem;
            margin-bottom: 1rem;
        }

        .call-now-section p {
            color: #a0aec0;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }

        .phone-number {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            font-size: 2.5rem;
            font-weight: 800;
            color: #ffffff;
            text-decoration: none;
            padding: 1.5rem 3rem;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 60px;
            position: relative;
            transition: all 0.3s ease;
            margin: 1rem 0;
        }

        .phone-number:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 60px rgba(99, 102, 241, 0.5);
        }

        .phone-pulse {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100%;
            height: 100%;
            border-radius: 60px;
            border: 2px solid #6366f1;
            animation: pulse 2s ease-out infinite;
        }

        @keyframes pulse {
            0% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
            100% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(1.3);
            }
        }

        .call-hours {
            font-size: 0.95rem;
            color: #8b5cf6;
            font-weight: 600;
            margin-top: 1rem;
        }

        .disclaimer-section {
            background: rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.2);
            border-radius: 20px;
            padding: 3rem;
            margin: 4rem auto;
            max-width: 1200px;
        }

        .disclaimer-section h3 {
            color: #8b5cf6;
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .disclaimer-section p {
            color: #a0aec0;
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .disclaimer-section strong {
            color: #ffffff;
        }

        footer {
            background: rgba(10, 14, 39, 0.95);
            backdrop-filter: blur(10px);
            padding: 4rem 5% 2rem;
            border-top: 1px solid rgba(99, 102, 241, 0.3);
            color: #a0aec0;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-column h4 {
            color: #ffffff;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 0.8rem;
        }

        .footer-column a {
            color: #a0aec0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-column a:hover {
            color: #8b5cf6;
            transform: translateX(5px);
        }

        .footer-contact {
            text-align: center;
            margin: 3rem 0;
            padding: 2rem;
            background: rgba(99, 102, 241, 0.05);
            border-radius: 15px;
        }

        .footer-contact h4 {
            color: #ffffff;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .footer-contact p {
            margin: 0.5rem 0;
            font-size: 1rem;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin: 2rem 0;
        }

        .footer-social a {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(99, 102, 241, 0.1);
            border: 1px solid rgba(99, 102, 241, 0.3);
            border-radius: 50%;
            color: #8b5cf6;
            text-decoration: none;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            color: #ffffff;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(99, 102, 241, 0.2);
            margin-top: 2rem;
        }

        .footer-bottom p {
            margin: 0.3rem 0;
        }

        .expertise-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 4rem 5%;
            background: rgba(99, 102, 241, 0.05);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 30px;
            position: relative;
            overflow: hidden;
        }

        .expertise-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-20px, -20px); }
        }

        .expertise-section h2 {
            text-align: center;
            margin-bottom: 3rem;
            font-size: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .expertise-content {
            display: flex;
            flex-direction: column;
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .expertise-paragraph {
            background: rgba(10, 14, 39, 0.4);
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 20px;
            padding: 2.5rem;
            transition: all 0.4s ease;
        }

        .expertise-paragraph:hover {
            transform: translateX(10px);
            border-color: rgba(139, 92, 246, 0.5);
            box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
        }

        .expertise-paragraph h3 {
            color: #8b5cf6;
            font-size: 1.5rem;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .expertise-paragraph p {
            color: #e0e0e0;
            line-height: 1.9;
            font-size: 1.05rem;
            text-align: justify;
        }

        @media (max-width: 768px) {
            .expertise-section {
                padding: 2rem 5%;
            }
            
            .expertise-paragraph {
                padding: 1.5rem;
            }
            
            .expertise-paragraph h3 {
                font-size: 1.2rem;
            }
            
            .expertise-paragraph p {
                font-size: 1rem;
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            h2 { font-size: 1.8rem; }
            .hero { padding: 3rem 5%; }
            .meta-info { font-size: 0.8rem; }
            .phone-number { font-size: 1.8rem; padding: 1rem 2rem; }
            .call-now-icon { font-size: 3rem; }
        }
    