        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            padding: 30px 20px;
            background: linear-gradient(135deg, #FF6584 0%, #6C63FF 100%);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }

        .stat-item {
            text-align: center;
            color: white;
        }

        .stat-number {
            font-size: 1.2rem;
            font-weight: 900;
            line-height: 1;
        }

        .stat-label {
            font-size: 0.9rem;
            font-weight: 500;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .stat-number {
                font-size: 2.5rem;
            }
        }

        /* ==================== HERO & FEATURES (MINOR CLEANUP) ==================== */
        .hero {
            min-height: 50vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 80px 0 50px;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 100px 0 50px;
            }
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.2;
            background: linear-gradient(135deg, var(--dark) 30%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .btn-primary {
            background: var(--gradient);
            border: none;
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            color: white;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .btn-secondary {
            background: transparent;
            border: 3px solid var(--primary);
            padding: 15px 35px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Floating Collage Container */
        .floating {
            position: relative;
            width: 100%;
            height: 500px;
            max-width: 600px;
            margin: 0 auto;
            animation: gentleFloat 8s ease-in-out infinite;
        }

        .floating img {
            position: absolute;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.2);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            object-fit: cover;
        }

        .floating img:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.3);
            z-index: 10;
        }

        /* Individual image positions */
        .floating img:nth-child(1) {
            top: 50px;
            left: 50px;
            width: 70%;
            z-index: 5;
            transform: rotate(-10deg);
        }

        .floating img:nth-child(2) {
            top: 150px;
            right: 30px;
            width: 60%;
            z-index: 4;
            transform: rotate(8deg);
        }

        .floating img:nth-child(3) {
            bottom: 80px;
            left: 20px;
            width: 65%;
            z-index: 3;
            transform: rotate(-5deg);
        }

        .floating img:nth-child(4) {
            top: 20px;
            right: 80px;
            width: 55%;
            z-index: 2;
            transform: rotate(15deg);
        }

        .floating img:nth-child(5) {
            bottom: 20px;
            right: 100px;
            width: 50%;
            z-index: 1;
            transform: rotate(-12deg);
        }

        @keyframes gentleFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }
        }

        @media (max-width: 992px) {
            .floating {
                height: 500px;
            }

            .floating img {
                width: 60% !important;
            }
        }

        @media (max-width: 768px) {
            .floating {
                height: 400px;
            }

            .floating img {
                position: relative;
                display: block;
                margin: 20px auto;
                transform: none !important;
                width: 80% !important;
            }
        }

        /* Features section */
        .features {
            padding: 50px 0;
            background: white;
        }

        .section-title h2 {
            font-size: 2rem;
            background: linear-gradient(135deg, var(--dark) 30%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }

        .feature-card h4 {
            font-size: 1rem;
        }

        .feature-card p {
            font-size: 0.8rem;
        }

        .feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-size: 1.5rem;
            color: white;
        }