     

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #e0f2fe 0%, #e9d5ff 50%, #d1fae5 100%);
            padding: 80px 20px;
        }

        /* Floating gradient dots */
        .hero::before {
            content: '';
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            top: 10%;
            right: 15%;
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '';
            position: absolute;
            width: 350px;
            height: 350px;
            background: radial-gradient(circle, rgba(56, 189, 248, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            bottom: 15%;
            left: 10%;
            animation: float 10s ease-in-out infinite reverse;
        }

        /* Grid texture overlay */
        .grid-texture {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(168, 85, 247, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(168, 85, 247, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(30px, -30px) scale(1.1); }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            max-width: 1000px;
            animation: fadeInUp 1.2s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        h1 {
            font-size: 5em;
            font-weight: 900;
            margin-bottom: 25px;
            color: #1e293b;
            line-height: 1.1;
            letter-spacing: -2px;
        }

        .hero-subline {
            font-size: 1.8em;
            font-weight: 600;
            background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #10b981 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 30px;
        }

        .hero-content > p {
            font-size: 1.25em;
            color: #475569;
            margin-bottom: 50px;
            line-height: 1.9;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 400;
        }

        .cta-btn {
            padding: 22px 55px;
            font-size: 1.2em;
            font-weight: 800;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
            color: white;
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
            position: relative;
            overflow: hidden;
            white-space: nowrap;      /* Prevent text from breaking */
    display: inline-flex;     /* Better alignment on mobile */
    align-items: center;
    justify-content: center;
    text-align: center;
        }

        .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.6s ease;
        }

        .cta-btn:hover::before {
            left: 100%;
        }

        .cta-btn:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
        }
        @media (max-width: 480px) {
    .cta-btn {
        padding: 16px 28px;
        font-size: 1rem;
    }
}


        .section {
            padding: 120px 20px;
        }

        .container {
            max-width: 1300px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3.5em;
            font-weight: 900;
            margin-bottom: 80px;
            color: #1e293b;
            position: relative;
            letter-spacing: -1px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 5px;
            background: linear-gradient(90deg, #8b5cf6, #3b82f6, #10b981);
            border-radius: 3px;
        }

        /* What Is Section */
        .what-is-section {
            background: white;
        }

        .what-is-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
            padding: 60px;
            border-radius: 30px;
            box-shadow: 0 20px 60px rgba(139, 92, 246, 0.1);
        }

        .what-is-left h3 {
            font-size: 2.2em;
            color: #1e293b;
            margin-bottom: 25px;
            font-weight: 900;
        }

        .what-is-left p {
            font-size: 1.15em;
            color: #475569;
            line-height: 1.9;
        }

        .what-is-right {
            background: white;
            padding: 40px;
            border-radius: 25px;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
            border-left: 5px solid #8b5cf6;
        }

        .what-is-right ul {
            list-style: none;
        }

        .what-is-right li {
            font-size: 1.15em;
            color: #1e293b;
            padding: 15px 0;
            border-bottom: 1px solid #e9d5ff;
            font-weight: 600;
        }

        .what-is-right li:last-child {
            border-bottom: none;
        }

        .what-is-right li::before {
            content: '✔️';
            margin-right: 15px;
            font-size: 1.2em;
        }

        /* Why Matters Section */
        .why-matters-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #f5f3ff 100%);
        }

        .horizontal-cards {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 80px;
        }

        .h-card {
            background: white;
            padding: 45px 35px;
            border-radius: 25px;
            text-align: center;
            transition: all 0.5s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            border: 3px solid transparent;
        }

        .h-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 60px rgba(139, 92, 246, 0.2);
            border-color: #8b5cf6;
        }

        .h-card-icon {
            font-size: 3.5em;
            margin-bottom: 25px;
            display: inline-block;
            transition: transform 0.5s ease;
        }

        .h-card:hover .h-card-icon {
            transform: scale(1.3) rotate(360deg);
        }

        .h-card h4 {
            font-size: 1.5em;
            color: #1e293b;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .h-card p {
            color: #64748b;
            line-height: 1.7;
            font-size: 1.05em;
        }

        /* Process Timeline */
        .process-section {
            background: white;
        }

        .timeline {
            max-width: 900px;
            margin: 80px auto 0;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #8b5cf6, #3b82f6, #10b981);
            border-radius: 2px;
        }

        .timeline-item {
            display: grid;
            grid-template-columns: 1fr 80px 1fr;
            gap: 40px;
            margin-bottom: 60px;
            align-items: center;
        }

        .timeline-item:nth-child(even) .timeline-content {
            order: 3;
        }

        .timeline-item:nth-child(even) .timeline-empty {
            order: 1;
        }

        .timeline-content {
            background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
            padding: 35px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
            transition: all 0.4s ease;
        }

        .timeline-content:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.2);
        }

        .timeline-content h4 {
            font-size: 1.5em;
            color: #1e293b;
            margin-bottom: 12px;
            font-weight: 800;
        }

        .timeline-content p {
            color: #64748b;
            line-height: 1.7;
            font-size: 1.05em;
        }

        .timeline-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            font-weight: 900;
            color: white;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
            position: relative;
            z-index: 2;
        }

        .timeline-empty {
            /* Empty space for alternating layout */
        }

        /* Services Grid */
        .services-section {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-top: 80px;
        }

        .service-card {
            background: white;
            padding: 50px 40px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
            transition: all 0.5s ease;
            border-top: 5px solid #10b981;
        }

        .service-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 60px rgba(16, 185, 129, 0.2);
            border-top-color: #8b5cf6;
        }

        .service-card h4 {
            font-size: 1.6em;
            color: #1e293b;
            margin-bottom: 15px;
            font-weight: 800;
        }

        .service-card p {
            color: #64748b;
            line-height: 1.8;
            font-size: 1.05em;
        }

        /* Who Needs Section */
        .who-needs-section {
            background: white;
        }

        .tag-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-top: 80px;
        }

        .tag-card {
            background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
            padding: 20px 40px;
            border-radius: 50px;
            font-size: 1.15em;
            font-weight: 700;
            color: #1e293b;
            border: 3px solid #e9d5ff;
            transition: all 0.4s ease;
            box-shadow: 0 5px 20px rgba(139, 92, 246, 0.1);
        }

        .tag-card:hover {
            background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
            color: white;
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
            border-color: transparent;
        }

        /* Benefits Section */
        .benefits-section {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 80px;
        }

        .benefit-card {
            background: white;
            padding: 45px 40px;
            border-radius: 25px;
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
            transition: all 0.4s ease;
            display: flex;
            align-items: start;
            gap: 25px;
            border-left: 5px solid #3b82f6;
        }

        .benefit-card:hover {
            transform: translateX(15px);
            box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2);
        }

        .benefit-icon {
            font-size: 3em;
            flex-shrink: 0;
        }

        .benefit-content h4 {
            font-size: 1.6em;
            color: #1e293b;
            margin-bottom: 12px;
            font-weight: 800;
        }

        .benefit-content p {
            color: #64748b;
            line-height: 1.8;
            font-size: 1.05em;
        }

        /* Trust Section */
        .trust-section {
            background: white;
        }

        .trust-items {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
            margin-top: 80px;
        }

        .trust-item {
            background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
            padding: 30px 45px;
            border-radius: 20px;
            font-size: 1.2em;
            font-weight: 700;
            color: #1e293b;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
            transition: all 0.4s ease;
            border: 2px solid #e9d5ff;
        }

        .trust-item:hover {
            background: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
            color: white;
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
            border-color: transparent;
        }

        /* Final CTA */
        .final-cta {
            background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 50%, #10b981 100%);
    color: white;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
   
        }
        .final-cta a {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 100%;
}

        .final-cta::before {
            content: '';
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            top: -300px;
            right: -200px;
            animation: float 12s ease-in-out infinite;
        }

        .final-cta::after {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            bottom: -250px;
            left: -200px;
            animation: float 15s ease-in-out infinite reverse;
        }

        .final-cta h2 {
            font-size: 3.8em;
            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: 850px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
        }
@media (max-width: 480px) {
    .final-cta a {
        padding: 16px 26px;
        font-size: 1rem;
    }
}

        .btn-white {
            background: white;
            color: #8b5cf6;
            padding: 22px 55px;
            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);
            position: relative;
            z-index: 2;
        }

        .btn-white:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
        }

        @media (max-width: 1024px) {
            .horizontal-cards {
                grid-template-columns: repeat(2, 1fr);
            }
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .timeline::before {
                left: 40px;
            }
            .timeline-item {
                grid-template-columns: 80px 1fr;
            }
            .timeline-item:nth-child(even) .timeline-content {
                order: 2;
            }
            .timeline-empty {
                display: none;
            }
        }

        @media (max-width: 768px) {
            h1 { font-size: 3em; }
            .hero-subline { font-size: 1.4em; }
            .section-title { font-size: 2.5em; }
            .what-is-content {
                grid-template-columns: 1fr;
            }
            .horizontal-cards {
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .benefits-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Scroll animations */
        .fade-in {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
    