  .hero {
            text-align: center;
            padding: 120px 20px 60px;
            position: relative;
            min-height: 100vh;
            /* Ensures full height on large screens */
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

    
        .sparkle-svg {
            position: absolute;
            top: 10%;
            left: 0;
            width: 100%;
            height: 80%;
            z-index: 0;
            pointer-events: none;
            opacity: 0.6;
        }

        .hero-float-img {
            position: absolute;
            z-index: 5;
            object-fit: cover;
            box-shadow: 20px 20px 60px rgba(123, 139, 255, 0.15);
            transition: transform 0.5s ease;
            filter: brightness(1.05) contrast(1.05);
            display: block;
            /* Visible by default */
        }

        .hero-float-img:hover {
            transform: scale(1.02);
        }

        .hero-float-img.left {
            top: 15%;
            left: 5%;
            width: 240px;
            height: 340px;
            border-radius: 40% 60% 70% 30% / 50% 60% 40% 50%;
        }

        .hero-float-img.right {
            top: 25%;
            right: 5%;
            width: 280px;
            height: 380px;
            border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        }

        /* TEXT CONTENT */
        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            margin: 0 auto;
        }

        .pill {
            background: #fff;
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 3px;
            text-transform: uppercase;
            border: 1px solid rgba(123, 139, 255, 0.2);
            box-shadow: 0 5px 20px rgba(123, 139, 255, 0.1);
            margin-bottom: 25px;
            display: inline-block;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.5rem, 6vw, 5.5rem);
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--primary);
        }

        h1 span {
            font-style: italic;
            background: linear-gradient(120deg, var(--accent) 0%, #a2adff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .subtext {
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
            font-weight: 300;
            padding: 0 20px;
        }

        /* --- CARDS CONTAINER --- */
        .cards-container {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 60px;
            position: relative;
            z-index: 10;
            /* No fixed height to allow wrapping */
        }

        .card {
            position: relative;
            border-radius: 24px;
            padding: 25px;
            width: 190px;
            height: 240px;
            text-align: center;
            transition: 0.4s;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            border: 2px solid transparent;
            background: linear-gradient(white, white) padding-box,
                linear-gradient(90deg, #b0b8ff, #ffffff, #ffd19a, #b0b8ff) border-box;
            background-size: 300% 300%;
            animation: borderGlow 6s linear infinite;
            box-shadow: var(--shadow-soft);
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card h3 {
            font-family: 'Playfair Display';
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .card p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.4;
        }

        .card-icon {
            font-size: 2rem;
            margin-bottom: 15px;
            display: block;
        }

        @keyframes borderGlow {
            0% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }

            100% {
                background-position: 0% 50%;
            }
        }
        