/* ===== Hero Section Style 6 - Card-Based Hero ===== */

        .hero6-section {
            position: relative;
            min-height: 100vh;
            background: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-primary-800) 50%, var(--color-secondary-700) 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        /* Animated Background Grid */
        .hero6-bg-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* Floating Orbs */
        .hero6-orb {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            animation: orb-float 15s ease-in-out infinite;
        }

        .hero6-orb-1 {
            width: 400px;
            height: 400px;
            top: -100px;
            right: 10%;
            animation-delay: 0s;
        }

        .hero6-orb-2 {
            width: 300px;
            height: 300px;
            bottom: -50px;
            left: 5%;
            animation-delay: -5s;
        }

        .hero6-orb-3 {
            width: 200px;
            height: 200px;
            top: 40%;
            left: 30%;
            animation-delay: -10s;
        }

        @keyframes orb-float {

            0%,
            100% {
                transform: translate(0, 0);
            }

            25% {
                transform: translate(20px, -20px);
            }

            50% {
                transform: translate(-10px, 10px);
            }

            75% {
                transform: translate(15px, 15px);
            }
        }

        /* Container */
        .hero6-container {
            position: relative;
            z-index: 1;
            max-width: 1280px;
            margin: 0 auto;
            padding: 6rem 2rem;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .hero6-container {
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: center;
            }
        }

        /* Content Area */
        .hero6-content {
            color: white;
        }

        /* Badge */
        .hero6-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            color: white;
            margin-bottom: 1.5rem;
        }

        .hero6-badge-icon {
            width: 1.25rem;
            height: 1.25rem;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Title */
        .hero6-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.1;
            color: white;
            margin-bottom: 1.5rem;
        }

        @media (min-width: 640px) {
            .hero6-title {
                font-size: 3rem;
            }
        }

        @media (min-width: 1024px) {
            .hero6-title {
                font-size: 3.75rem;
            }
        }

        .hero6-subtitle {
            display: block;
            color: var(--color-secondary-300);
        }

        /* Description */
        .hero6-description {
            font-size: 1.125rem;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 2rem;
            max-width: 500px;
        }

        /* CTA Group */
        .hero6-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .hero6-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: white;
            color: var(--color-primary-700);
            font-weight: 700;
            font-size: 1rem;
            border-radius: 0.75rem;
            transition: all 0.3s ease;
        }

        .hero6-btn-primary:hover {
            background: var(--color-gray-100);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .hero6-btn-primary svg,
        .hero6-btn-secondary svg {
            color: inherit;
            flex-shrink: 0;
        }

        .hero6-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: transparent;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 0.75rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .hero6-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.5);
        }

        /* Stats Inline */
        .hero6-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .hero6-stat-item {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .hero6-stat-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.5rem;
            background: rgba(255, 255, 255, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero6-stat-icon svg {
            color: white;
        }

        .hero6-stat-value {
            font-family: var(--font-heading);
            font-size: 1.25rem;
            font-weight: 800;
            color: white;
        }

        .hero6-stat-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.7);
        }

        /* Card Stack Area */
        .hero6-card-stack {
            position: relative;
            display: flex;
            justify-content: center;
        }

        /* Main Card */
        .hero6-main-card {
            position: relative;
            width: 100%;
            max-width: 450px;
            background: white;
            border-radius: 1.5rem;
            padding: 1.5rem;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
        }

        .dark .hero6-main-card {
            background: var(--color-card-bg);
        }

        .hero6-card-image {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            margin-bottom: 1.5rem;
        }

        .hero6-card-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .hero6-card-badge {
            position: absolute;
            top: 1rem;
            left: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(10px);
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            color: white;
        }

        .hero6-card-content {
            text-align: center;
        }

        .hero6-card-title {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-gray-900);
            margin-bottom: 0.5rem;
        }

        .dark .hero6-card-title {
            color: var(--color-text-primary);
        }

        .hero6-card-subtitle {
            font-size: 1rem;
            color: var(--color-gray-500);
            margin-bottom: 1.5rem;
        }

        .dark .hero6-card-subtitle {
            color: var(--color-text-tertiary);
        }

        .hero6-card-features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .hero6-card-feature {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.875rem;
            color: var(--color-gray-600);
        }

        .dark .hero6-card-feature {
            color: var(--color-text-secondary);
        }

        .hero6-card-feature-icon {
            width: 1.25rem;
            height: 1.25rem;
            border-radius: 50%;
            background: var(--color-primary-100);
            color: var(--color-primary-600);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .dark .hero6-card-feature-icon {
            background: var(--color-primary-900);
            color: var(--color-primary-400);
        }

        .hero6-card-feature-icon svg {
            color: inherit;
        }

        /* Floating Mini Cards */
        .hero6-float-card {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.875rem 1rem;
            background: white;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .hero6-float-card-1 {
            top: 0;
            right: -1rem;
            transform: translateY(-50%);
        }

        @media (min-width: 640px) {
            .hero6-float-card-1 {
                right: -3rem;
            }
        }

        .hero6-float-card-2 {
            bottom: 2rem;
            left: -1rem;
        }

        @media (min-width: 640px) {
            .hero6-float-card-2 {
                left: -3rem;
            }
        }

        .hero6-float-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.625rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .hero6-float-icon svg {
            color: white;
        }

        .hero6-float-icon.green {
            background: linear-gradient(135deg, var(--color-success-500, #10b981), var(--color-success-600, #059669));
        }

        .hero6-float-icon.blue {
            background: linear-gradient(135deg, var(--color-primary-500), var(--color-primary-600));
        }

        .dark .hero6-float-icon.green {
            background: linear-gradient(135deg, var(--color-success-400, #34d399), var(--color-success-500, #10b981));
        }

        .dark .hero6-float-icon.blue {
            background: linear-gradient(135deg, var(--color-primary-400), var(--color-primary-500));
        }

        .hero6-float-title {
            font-weight: 700;
            font-size: 0.875rem;
            color: var(--color-gray-900);
        }

        .dark .hero6-float-title {
            color: var(--color-text-primary);
        }

        .hero6-float-subtitle {
            font-size: 0.75rem;
            color: var(--color-gray-500);
        }

        .dark .hero6-float-subtitle {
            color: var(--color-text-tertiary);
        }

        /* Dark mode for floating cards */
        .dark .hero6-float-card {
            background: var(--color-card-bg);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* Background Card Effect */
        .hero6-bg-card {
            position: absolute;
            width: 100%;
            max-width: 450px;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 1.5rem;
            top: 1rem;
            left: 50%;
            transform: translateX(-50%) rotate(3deg);
            z-index: -1;
        }

        /* Wave Bottom */
        .hero6-wave {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            line-height: 0;
        }

        .hero6-wave svg {
            width: 100%;
            height: 60px;
        }

        @media (min-width: 768px) {
            .hero6-wave svg {
                height: 100px;
            }
        }

        .hero6-wave-fill {
            fill: white;
        }

        .dark .hero6-wave-fill {
            fill: var(--color-bg-primary);
        }

        /* RTL Support */
        [dir="rtl"] .hero6-float-card-1 {
            right: auto;
            left: -1rem;
        }

        @media (min-width: 640px) {
            [dir="rtl"] .hero6-float-card-1 {
                left: -3rem;
            }
        }

        [dir="rtl"] .hero6-float-card-2 {
            left: auto;
            right: -1rem;
        }

        @media (min-width: 640px) {
            [dir="rtl"] .hero6-float-card-2 {
                right: -3rem;
            }
        }