/* ===== Hero Section Style 2 - Split Screen ===== */

        .hero2-section {
            min-height: 100vh;
            background: var(--color-bg-primary);
        }

        .hero2-container {
            display: flex;
            max-width: 1280px;
            margin: 0 auto;
            min-height: 100vh;
            padding: 6rem 1rem 0;
        }

        @media (min-width: 640px) {
            .hero2-container {
                padding: 6rem 1.5rem 0;
            }
        }

        @media (min-width: 1024px) {
            .hero2-container {
                padding: 6rem 2rem 0;
            }
        }

        .hero2-content-side {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 4rem 0;
            background: var(--color-bg-primary);
        }

        @media (min-width: 1024px) {
            .hero2-content-side {
                padding: 4rem 2rem 4rem 0;
            }
        }

        .dark .hero2-content-side {
            background: var(--color-bg-primary);
        }

        .hero2-image-side {
            display: none;
            flex: 1;
            position: relative;
            overflow: hidden;
        }

        @media (min-width: 1024px) {
            .hero2-image-side {
                display: block;
            }
        }

        .hero2-image-side img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero2-image-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, var(--color-primary-600) 0%, var(--color-secondary-600) 100%);
            opacity: 0.3;
        }

        .hero2-content-inner {
            max-width: 540px;
        }

        @media (min-width: 1024px) {
            .hero2-content-inner {
                margin-left: auto;
                padding-right: 3rem;
            }
        }

        /* Badge */
        .hero2-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.625rem 1.25rem;
            background: linear-gradient(135deg, var(--color-primary-100), var(--color-secondary-100));
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--color-primary-700);
            margin-bottom: 1.5rem;
        }

        .dark .hero2-badge {
            background: linear-gradient(135deg, var(--color-primary-900), var(--color-secondary-900));
            color: var(--color-primary-300);
        }

        /* Title */
        .hero2-title {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--color-gray-900);
            margin-bottom: 0.5rem;
        }

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

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

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

        .hero2-subtitle {
            font-family: var(--font-heading);
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.1;
            background: linear-gradient(135deg, var(--color-primary-600), var(--color-secondary-500));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.5rem;
        }

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

        @media (min-width: 1024px) {
            .hero2-subtitle {
                font-size: 3.5rem;
            }
        }

        /* Description */
        .hero2-description {
            font-size: 1.125rem;
            line-height: 1.75;
            color: var(--color-gray-600);
            margin-bottom: 2rem;
        }

        .dark .hero2-description {
            color: var(--color-text-tertiary);
        }

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

        .hero2-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: linear-gradient(135deg, var(--color-primary-600), var(--color-primary-700));
            color: white;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 9999px;
            box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
            transition: all 0.3s ease;
        }

        .hero2-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5);
        }

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

        .hero2-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: transparent;
            color: var(--color-gray-700);
            font-weight: 600;
            font-size: 1rem;
            border-radius: 9999px;
            border: 2px solid var(--color-gray-300);
            transition: all 0.3s ease;
        }

        .hero2-btn-secondary:hover {
            border-color: var(--color-primary-500);
            color: var(--color-primary-600);
        }

        .dark .hero2-btn-secondary {
            color: var(--color-text-secondary);
            border-color: var(--color-border);
        }

        .dark .hero2-btn-secondary:hover {
            border-color: var(--color-primary-500);
            color: var(--color-primary-400);
        }

        /* Stats */
        .hero2-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .hero2-stats {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        .hero2-stat-item {
            text-align: center;
            padding: 1rem;
            background: var(--color-gray-50);
            border-radius: 1rem;
        }

        .dark .hero2-stat-item {
            background: var(--color-bg-secondary);
        }

        .hero2-stat-icon {
            display: flex;
            justify-content: center;
            margin-bottom: 0.5rem;
            color: var(--color-primary-500);
        }

        .dark .hero2-stat-icon {
            color: var(--color-primary-400);
        }

        .hero2-stat-value {
            font-family: var(--font-heading);
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--color-primary-600);
            margin-bottom: 0.25rem;
        }

        .dark .hero2-stat-value {
            color: var(--color-primary-400);
        }

        .hero2-stat-label {
            font-size: 0.75rem;
            color: var(--color-gray-500);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .dark .hero2-stat-label {
            color: var(--color-text-tertiary);
        }

        /* Floating Card on Image */
        .hero2-float-card {
            position: absolute;
            display: flex;
            align-items: center;
            gap: 0.875rem;
            padding: 1rem 1.25rem;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 1rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }

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

        .hero2-float-card-2 {
            top: 2rem;
            right: 2rem;
        }

        .hero2-float-icon {
            width: 3rem;
            height: 3rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

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

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

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

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

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

        .hero2-float-title {
            font-weight: 700;
            font-size: 0.9375rem;
            color: var(--color-gray-900);
            line-height: 1.3;
        }

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

        /* Dark mode for floating cards */
        .dark .hero2-float-card {
            background: rgba(30, 41, 59, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

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

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

        /* RTL Support for floating cards */
        [dir="rtl"] .hero2-float-card-1 {
            left: auto;
            right: 2rem;
        }

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

        /* Decorative Elements */
        .hero2-deco-dots {
            position: absolute;
            top: 2rem;
            right: 2rem;
            width: 100px;
            height: 100px;
            background-image: radial-gradient(white 2px, transparent 2px);
            background-size: 15px 15px;
            opacity: 0.5;
        }

        /* RTL Support */
        [dir="rtl"] .hero2-content-inner {
            margin-left: 0;
            margin-right: auto;
            padding-right: 0;
            padding-left: 3rem;
        }

        @media (min-width: 1024px) {
            [dir="rtl"] .hero2-content-side {
                padding: 4rem 0 4rem 2rem;
            }
        }