<style>
    :root {
        --primary: #f59e0b;
        --secondary: #6366f1;
        --accent: #10b981;
        --purple: #8b5cf6;
        --pink: #ec4899;
        --success: #43a047;
        --bg-light: #fefce8;
        --bg-white: #fefce8;
        --bg-section: #fef3e2;
        --text-dark: #1a1a2e;
        --text-main: #1a1a2e;
        --text-light: #64748B;
        --text-muted: #6b7280;
        --border-light: #fde68a;
        --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
        --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
        --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
        --shadow-xl: 0 20px 40px rgba(0,0,0,0.15);
        --radius-sm: 8px;
        --radius-md: 12px;
        --radius-lg: 20px;
        --radius-xl: 28px;
        --radius-full: 9999px;
        --transition-fast: 0.2s ease;
        --transition-base: 0.3s ease;
        --transition-normal: 0.3s ease;
        --transition-slow: 0.5s ease;
        --font-heading: 'Cairo', sans-serif;
        --font-body: 'IBM Plex Sans', sans-serif;
        --glass: rgba(255, 255, 255, 0.9);
    }

    *, *::before, *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    html {
        scroll-behavior: smooth;
        -webkit-text-size-adjust: 100%;
    }

    body {
        font-family: var(--font-body);
        background: var(--bg-light);
        color: var(--text-dark);
        line-height: 1.6;
        overflow-x: hidden;
        min-height: 100vh;
        padding-bottom: env(safe-area-inset-bottom, 0);
    }

    body[dir="rtl"] {
        font-family: 'Cairo', 'Segoe UI', Tahoma, sans-serif;
    }

    /* Scroll Progress Bar */
    .scroll-progress {
        position: fixed;
        top: 0;
        left: 0;
        width: 0%;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--accent));
        z-index: 10000;
        transition: width 0.1s linear;
    }

    /* PWA Install Banner */
    .pwa-install-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        padding: 1rem 1.5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        z-index: 9998;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 0));
    }

    .pwa-install-banner.show {
        transform: translateY(0);
    }

    .pwa-install-content {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .pwa-install-icon {
        width: 48px;
        height: 48px;
        background: linear-gradient(135deg, var(--primary), var(--accent));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .pwa-install-icon i {
        font-size: 24px;
        color: white;
    }

    .pwa-install-text h4 {
        color: white;
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 2px;
    }

    .pwa-install-text p {
        color: rgba(255,255,255,0.7);
        font-size: 0.85rem;
    }

    .pwa-install-actions {
        display: flex;
        gap: 0.75rem;
        flex-shrink: 0;
    }

    .pwa-install-btn {
        padding: 0.6rem 1.2rem;
        border-radius: 10px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.2s ease;
        border: none;
    }

    .pwa-install-btn.primary {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: white;
    }

    .pwa-install-btn.primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(74, 144, 217, 0.4);
    }

    .pwa-install-btn.secondary {
        background: rgba(255,255,255,0.1);
        color: white;
        border: 1px solid rgba(255,255,255,0.2);
    }

    .pwa-install-btn.secondary:hover {
        background: rgba(255,255,255,0.2);
    }

    @media (max-width: 600px) {
        .pwa-install-banner {
            flex-direction: column;
            text-align: center;
            padding: 1.25rem 1rem;
        }
        .pwa-install-content {
            flex-direction: column;
        }
        .pwa-install-text {
            text-align: center;
        }
        .pwa-install-text p {
            display: none;
        }
        .pwa-install-actions {
            width: 100%;
        }
        .pwa-install-btn {
            flex: 1;
        }
    }

    /* Mobile Bottom Nav */
    .mobile-bottom-nav {
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9997;
        padding: 0.5rem 0.5rem calc(0.5rem + env(safe-area-inset-bottom, 0));
        box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .mobile-bottom-nav.show {
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 0.5rem;
        color: var(--text-muted);
        text-decoration: none;
        transition: all 0.2s ease;
        min-width: 60px;
    }

    .mobile-nav-item i {
        font-size: 1.4rem;
    }

    .mobile-nav-item span {
        font-size: 0.7rem;
        font-weight: 500;
    }

    .mobile-nav-item:hover,
    .mobile-nav-item.active {
        color: var(--primary);
    }

    .mobile-nav-item.active i {
        transform: scale(1.1);
    }

    .mobile-nav-item.home-btn {
        background: linear-gradient(135deg, var(--primary), var(--accent));
        color: white;
        border-radius: 50%;
        width: 56px;
        height: 56px;
        margin-top: -30px;
        box-shadow: 0 4px 15px rgba(74, 144, 217, 0.4);
        justify-content: center;
    }

    .mobile-nav-item.home-btn span {
        display: none;
    }

    .mobile-nav-item.home-btn i {
        font-size: 1.5rem;
    }

    .mobile-nav-divider {
        width: 1px;
        height: 30px;
        background: rgba(0,0,0,0.1);
    }

    @media (max-width: 768px) {
        .mobile-bottom-nav {
            display: none !important;
        }
        .mobile-bottom-nav.show {
            display: flex !important;
        }
        body {
            padding-bottom: 80px;
        }
        .pwa-install-banner.show ~ .mobile-bottom-nav {
            padding-bottom: calc(0.5rem + env(safe-area-inset-bottom, 0) + 70px);
        }
    }

    /* Navbar */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 9999;
        padding: 0.8rem 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: var(--transition-normal);
        border-bottom: 1px solid rgba(0,0,0,0.05);
        padding-top: calc(0.8rem + env(safe-area-inset-top, 0));
    }

    body[dir="rtl"] .navbar {
        font-family: 'Cairo', 'Tajawal', sans-serif;
    }

        [dir="rtl"] {
            --font-family: 'Cairo', 'Tajawal', sans-serif;
            text-align: right;
        }

        [dir="rtl"] .section-header,
        [dir="rtl"] .text-center {
            text-align: center;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Cairo', 'Tajawal', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            color: var(--text-main);
            background: var(--bg-white);
            line-height: 1.7;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            text-decoration: none;
            color: inherit;
        }
        
        a:focus-visible {
            outline: 2px solid var(--secondary);
            outline-offset: 2px;
        }
        
        button:focus-visible,
        .btn:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        .section {
            padding: 100px 0;
            position: relative;
        }

        .section-bg {
            background: var(--bg-section);
        }

        .section-header {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 60px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--primary);
            letter-spacing: -0.025em;
        }

        .section-header p {
            font-size: 1.125rem;
            color: var(--text-light);
            line-height: 1.6;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(99, 102, 241, 0.1);
            color: var(--secondary);
            padding: 0.5rem 1rem;
            border-radius: var(--radius-full);
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .section-badge i {
            font-size: 0.75rem;
        }

        /* Navigation */
        .nav-wrapper {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            transition: all var(--transition-base);
        }

        .nav-wrapper.scrolled {
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.95);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 72px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-size: 1.35rem;
            font-weight: 800;
            color: var(--primary);
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.125rem;
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 2rem;
            list-style: none;
        }

        .nav-links a {
            font-weight: 600;
            font-size: 0.925rem;
            color: #1e293b;
            transition: color var(--transition-fast);
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width var(--transition-base);
        }

        .nav-links a:hover {
            color: var(--secondary);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-btn-highlight {
            background: rgba(99, 102, 241, 0.08);
            color: #6366f1 !important;
            padding: 0.6rem 1.25rem;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: all var(--transition-base) !important;
        }

        .nav-btn-highlight:hover {
            background: #6366f1;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(99, 102, 241, 0.35);
        }

        .nav-btn-highlight:hover::after {
            display: none;
        }

        .nav-buttons {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        /* Language Switcher */
        .lang-switcher {
            display: flex;
            align-items: center;
            background: var(--bg-section);
            border-radius: var(--radius-md);
            padding: 0.25rem;
            border: 1px solid var(--border-light);
        }

        .lang-switcher a {
            display: flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.4rem 0.75rem;
            border-radius: var(--radius-sm);
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--text-muted);
            transition: all var(--transition-fast);
        }

        .lang-switcher a.active {
            background: white;
            color: var(--secondary);
            box-shadow: var(--shadow-sm);
        }

        .lang-switcher a:hover:not(.active) {
            color: var(--text-light);
        }

        .lang-flag {
            width: 20px;
            height: 14px;
            border-radius: 2px;
            object-fit: cover;
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius-md);
            font-weight: 600;
            font-size: 0.925rem;
            transition: all var(--transition-base);
            cursor: pointer;
            border: none;
            text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
            color: white;
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(245, 158, 11, 0.5);
        }

        .btn-secondary {
            background: white;
            color: #f59e0b;
            border: 2px solid #fde68a;
        }

        .btn-secondary:hover {
            border-color: #f59e0b;
            color: #f59e0b;
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--secondary) 0%, var(--purple) 100%);
            color: var(--primary);
            box-shadow: 0 4px 14px rgba(245, 158, 11, 0.35);
        }

        .btn-accent:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(245, 158, 11, 0.45);
        }

        .btn-lg {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .btn-sm {
            padding: 0.5rem 1rem;
            font-size: 0.85rem;
        }

        /* Hero Section */
        .hero {
            padding: 140px 0 100px;
            background: linear-gradient(135deg, #fef3e2 0%, #e0f5fe 50%, #f0fdf4 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .hero-shape {
            position: absolute;
            opacity: 0.6;
        }

        .hero-shape.circle-1 {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            border-radius: 50%;
            top: 15%;
            right: 10%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-shape.circle-2 {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #34d399, #10b981);
            border-radius: 50%;
            top: 60%;
            right: 20%;
            animation: float 8s ease-in-out infinite reverse;
        }

        .hero-shape.circle-3 {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #60a5fa, #3b82f6);
            border-radius: 50%;
            top: 30%;
            right: 30%;
            animation: float 7s ease-in-out infinite;
            animation-delay: 1s;
        }

        .hero-shape.star-1 {
            font-size: 40px;
            color: #fbbf24;
            top: 20%;
            right: 25%;
            animation: bounce 3s ease-in-out infinite;
        }

        .hero-shape.star-2 {
            font-size: 30px;
            color: #f472b6;
            top: 70%;
            right: 15%;
            animation: bounce 4s ease-in-out infinite;
            animation-delay: 0.5s;
        }

        .hero-shape.heart-1 {
            font-size: 35px;
            color: #f472b6;
            top: 45%;
            right: 8%;
            animation: pulse 2s ease-in-out infinite;
        }

        .hero-shape.cloud-1 {
            font-size: 60px;
            color: rgba(99, 102, 241, 0.2);
            top: 10%;
            right: 40%;
            animation: float 12s ease-in-out infinite;
        }

        .hero-shape.balloon-1 {
            width: 50px;
            height: 60px;
            background: linear-gradient(135deg, #f472b6, #ec4899);
            border-radius: 50% 50% 50% 50%;
            top: 25%;
            right: 5%;
            animation: balloon-float 5s ease-in-out infinite;
        }

        .hero-shape.balloon-1::before {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 2px;
            height: 15px;
            background: rgba(0,0,0,0.2);
        }

        .hero-shape.triangle-1 {
            width: 0;
            height: 0;
            border-left: 25px solid transparent;
            border-right: 25px solid transparent;
            border-bottom: 40px solid rgba(168, 85, 247, 0.4);
            top: 55%;
            right: 35%;
            animation: float 9s ease-in-out infinite;
        }

        .hero-shape.square-1 {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #a78bfa, #8b5cf6);
            border-radius: 12px;
            top: 75%;
            right: 30%;
            animation: rotate 10s linear infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        @keyframes balloon-float {
            0%, 100% { transform: translateY(0) rotate(-2deg); }
            50% { transform: translateY(-25px) rotate(2deg); }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -15%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
            pointer-events: none;
            z-index: 0;
        }

        [dir="rtl"] .hero::before {
            right: auto;
            left: -15%;
        }

        .hero::after {
            display: none;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        [dir="rtl"] .hero-content {
            direction: rtl;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
            padding: 0.5rem 1rem 0.5rem 0.75rem;
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 600;
            color: white;
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-md);
        }

        .hero-badge-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #10b981;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

        .hero-text h1 {
            font-size: 3.25rem;
            font-weight: 800;
            line-height: 1.1;
            color: var(--primary);
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }

        .hero-text h1 span {
            color: #6366f1;
        }

        .hero-text p {
            font-size: 1.125rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.75;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 2.5rem;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            gap: 2.5rem;
            padding-top: 2rem;
            border-top: 1px solid var(--border-light);
        }

        .hero-stat-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -0.025em;
        }

        .hero-stat-label {
            font-size: 0.8rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        .hero-visual {
            position: relative;
        }

        /* Dashboard Card */
        .dashboard-card {
            background: white;
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-xl);
            padding: 1.5rem;
            animation: float 6s ease-in-out infinite;
            border: 1px solid rgba(99, 102, 241, 0.08);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-12px) rotate(0.5deg); }
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.25rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-light);
        }

        .dashboard-title {
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary);
        }

        .dashboard-dots {
            display: flex;
            gap: 0.4rem;
        }

        .dashboard-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border-light);
        }

        .dashboard-dot:nth-child(1) { background: #ef4444; }
        .dashboard-dot:nth-child(2) { background: #f59e0b; }
        .dashboard-dot:nth-child(3) { background: #10b981; }

        .dashboard-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 0.875rem;
        }

        .dash-stat {
            background: var(--bg-section);
            border-radius: var(--radius-lg);
            padding: 1rem;
            transition: all var(--transition-base);
        }

        .dash-stat:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .dash-stat-icon {
            width: 38px;
            height: 38px;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 0.75rem;
            font-size: 1.125rem;
        }

        .dash-stat-value {
            font-size: 1.375rem;
            font-weight: 700;
            color: var(--primary);
        }

        .dash-stat-label {
            font-size: 0.7rem;
            color: var(--text-muted);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Icon Box Styles */
        .icon-box {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.375rem;
            margin-bottom: 1.25rem;
            transition: all var(--transition-base);
        }

        .icon-box-sm {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-md);
            font-size: 1rem;
            margin-bottom: 0.75rem;
        }

        .icon-box-primary { background: rgba(99, 102, 241, 0.1); color: var(--secondary); }
        .icon-box-success { background: rgba(16, 185, 129, 0.1); color: var(--success); }
        .icon-box-danger { background: rgba(239, 68, 68, 0.1); color: var(--danger); }
        .icon-box-warning { background: rgba(245, 158, 11, 0.1); color: var(--warning); }
        .icon-box-info { background: rgba(6, 182, 212, 0.1); color: var(--info); }
        .icon-box-purple { background: rgba(139, 92, 246, 0.1); color: var(--purple); }
        .icon-box-pink { background: rgba(236, 72, 153, 0.1); color: var(--pink); }

        /* Philosophy Grid */
        .philosophy-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 1.5rem;
            margin-top: 3rem;
        }

        .philosophy-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--radius-xl);
            padding: 2rem 1.5rem;
            text-align: center;
            transition: all var(--transition-slow);
            position: relative;
            overflow: hidden;
        }

        .philosophy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--icon-color, var(--accent)), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .philosophy-card:hover::before {
            opacity: 1;
        }

        .philosophy-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-8px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
        }

        .philosophy-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all var(--transition-slow);
            position: relative;
        }

        .philosophy-icon::after {
            content: '';
            position: absolute;
            inset: -3px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--icon-color, var(--accent)), transparent);
            opacity: 0.3;
            z-index: -1;
            filter: blur(8px);
        }

        .philosophy-icon i {
            font-size: 2rem;
            color: var(--icon-color, var(--accent));
            transition: all var(--transition-slow);
        }

        .philosophy-card:hover .philosophy-icon {
            background: var(--icon-color, var(--accent));
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .philosophy-card:hover .philosophy-icon i {
            color: white;
        }

        .philosophy-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            color: white;
        }

        .philosophy-card p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.6;
            margin: 0;
        }

        /* Enhanced Quote Container */
        .quote-container {
            background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.1));
            border: 1px solid rgba(99, 102, 241, 0.2);
            border-radius: 30px;
            padding: 3rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .quote-container::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 40px;
            font-size: 150px;
            color: rgba(99, 102, 241, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }

        [dir="rtl"] .quote-container::before {
            left: auto;
            right: 40px;
        }

        @media (max-width: 1200px) {
            .philosophy-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .philosophy-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .philosophy-card {
                padding: 1.5rem 1rem;
            }
        }

        @media (max-width: 480px) {
            .philosophy-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Features Section New */
        .features-section {
            position: relative;
            overflow: hidden;
        }

        .features-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .features-grid-new {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }

        .feature-card-new {
            background: white;
            border-radius: 24px;
            padding: 2.5rem 2rem 2rem;
            text-align: center;
            position: relative;
            border: 1px solid #e5e7eb;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .feature-card-new::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--accent), color-mix(in srgb, var(--accent) 70%, white));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card-new:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
            border-color: transparent;
        }

        .feature-card-new:hover::before {
            transform: scaleX(1);
        }

        .feature-icon-wrap {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 1.5rem;
        }

        .feature-icon-bg {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 60%, white));
            opacity: 0.15;
            animation: pulse-icon 3s ease-in-out infinite;
        }

        .feature-card-new:hover .feature-icon-bg {
            animation: pulse-icon-hover 1.5s ease-in-out infinite;
            opacity: 0.25;
        }

        @keyframes pulse-icon {
            0%, 100% { transform: scale(1); opacity: 0.15; }
            50% { transform: scale(1.1); opacity: 0.2; }
        }

        @keyframes pulse-icon-hover {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.15); }
        }

        .feature-icon-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent) 0%, color-mix(in srgb, var(--accent) 70%, white));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px -5px var(--accent);
            transition: all 0.4s ease;
        }

        .feature-card-new:hover .feature-icon-circle {
            width: 90px;
            height: 90px;
            box-shadow: 0 15px 40px -5px var(--accent);
        }

        .feature-icon-circle i {
            font-size: 2.5rem;
            color: white;
            transition: all 0.4s ease;
        }

        .feature-card-new:hover .feature-icon-circle i {
            font-size: 2.8rem;
            animation: bounce-icon 0.6s ease;
        }

        @keyframes bounce-icon {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .feature-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: var(--accent);
            filter: blur(30px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .feature-card-new:hover .feature-glow {
            opacity: 0.3;
            animation: glow-pulse 2s ease-in-out infinite;
        }

        @keyframes glow-pulse {
            0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.2); }
        }

        .feature-card-new h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .feature-card-new:hover h3 {
            color: var(--accent);
        }

        .feature-card-new p {
            font-size: 0.95rem;
            color: #6b7280;
            line-height: 1.7;
            margin: 0;
        }

        .feature-arrow {
            position: absolute;
            bottom: 1.5rem;
            right: 1.5rem;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .feature-arrow i {
            font-size: 1rem;
            color: var(--accent);
        }

        .feature-card-new:hover .feature-arrow {
            opacity: 1;
            transform: translateX(0);
        }

        @media (max-width: 1024px) {
            .features-grid-new {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 640px) {
            .features-grid-new {
                grid-template-columns: 1fr;
            }
            .feature-card-new {
                padding: 2rem 1.5rem 1.5rem;
            }
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
        }

        .feature-card {
            background: white;
            border-radius: var(--radius-xl);
            padding: 2rem;
            border: 1px solid var(--border-light);
            transition: all var(--transition-slow);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--purple));
            transform: scaleX(0);
            transition: transform var(--transition-slow);
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-xl);
            border-color: transparent;
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-card:hover .icon-box {
            transform: scale(1.1);
        }

        .feature-card h3 {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.75rem;
        }

        .feature-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin: 0;
            line-height: 1.65;
        }

        /* Dark Section */
        .dark-section {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .dark-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 50%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(245, 158, 11, 0.15) 0%, transparent 60%);
        }

        [dir="rtl"] .dark-section::before {
            right: auto;
            left: -10%;
        }

        .dark-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        [dir="rtl"] .dark-grid {
            direction: rtl;
        }

        .dark-content h2 {
            font-size: 2.25rem;
            font-weight: 800;
            margin-bottom: 1.25rem;
            letter-spacing: -0.025em;
        }

        .dark-content p {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .dark-list {
            list-style: none;
        }

        .dark-list li {
            display: flex;
            align-items: flex-start;
            gap: 0.875rem;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .dark-list li i {
            color: var(--success);
            font-size: 1.125rem;
            margin-top: 0.125rem;
            flex-shrink: 0;
        }

        .dark-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: var(--radius-2xl);
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
        }

        .dark-card-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1.25rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .dark-card-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            border-radius: var(--radius-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.375rem;
        }

        .dark-card-title {
            font-size: 1.125rem;
            font-weight: 700;
        }

        .dark-card-subtitle {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.5);
        }

        .dark-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }

        .dark-stat {
            background: rgba(255, 255, 255, 0.04);
            border-radius: var(--radius-lg);
            padding: 1.25rem;
            transition: all var(--transition-base);
        }

        .dark-stat:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }

        .dark-stat-value {
            font-size: 1.75rem;
            font-weight: 800;
            margin-bottom: 0.25rem;
        }

        .dark-stat-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

        /* Security Section */
        .security-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            color: white;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .security-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .security-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        [dir="rtl"] .security-grid {
            direction: rtl;
        }

        .security-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(99, 102, 241, 0.15);
            color: #818cf8;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(99, 102, 241, 0.3);
        }

        .security-badge i {
            font-size: 1.1rem;
        }

        .security-content h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.25rem;
            letter-spacing: -0.025em;
            background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .security-content > p {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2.5rem;
            line-height: 1.8;
        }

        .security-list {
            list-style: none;
        }

        .security-list li {
            display: flex;
            align-items: flex-start;
            gap: 1.25rem;
            margin-bottom: 1.75rem;
            padding: 1.25rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            transition: all 0.3s ease;
        }

        .security-list li:hover {
            background: rgba(255, 255, 255, 0.06);
            transform: translateX(8px);
            border-color: rgba(99, 102, 241, 0.3);
        }

        [dir="rtl"] .security-list li:hover {
            transform: translateX(-8px);
        }

        .security-list-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
        }

        .security-list h4 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 0.4rem;
        }

        .security-list p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
            margin: 0;
            line-height: 1.5;
        }

        .security-visual {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
        }

        .phone-mockup {
            position: relative;
        }

        .phone-frame {
            width: 280px;
            background: #1e293b;
            border-radius: 40px;
            padding: 12px;
            border: 3px solid #374151;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.1);
            animation: phone-float 4s ease-in-out infinite;
        }

        @keyframes phone-float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .phone-notch {
            width: 120px;
            height: 28px;
            background: #1e293b;
            border-radius: 20px;
            margin: 0 auto 8px;
        }

        .phone-screen {
            background: linear-gradient(180deg, #1e3a5f 0%, #0f172a 100%);
            border-radius: 28px;
            padding: 20px 16px;
            min-height: 420px;
        }

        .qr-display {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .qr-code-container {
            width: 180px;
            height: 180px;
            background: white;
            border-radius: 20px;
            padding: 12px;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
        }

        .qr-pattern {
            width: 100%;
            height: 100%;
            position: relative;
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            grid-template-rows: repeat(7, 1fr);
            gap: 2px;
            background: white;
        }

        .qr-corner {
            width: 100%;
            height: 100%;
            border: 3px solid #1e293b;
            border-radius: 4px;
        }

        .qr-corner.tl { grid-column: 1 / 4; grid-row: 1 / 4; }
        .qr-corner.tr { grid-column: 5 / 8; grid-row: 1 / 4; }
        .qr-corner.bl { grid-column: 1 / 4; grid-row: 5 / 8; }

        .qr-modules {
            position: absolute;
            inset: 0;
            background: 
                linear-gradient(90deg, #1e293b 2px, transparent 2px) 0 0 / 10px 10px,
                linear-gradient(#1e293b 2px, transparent 2px) 0 0 / 10px 10px;
            opacity: 0.3;
        }

        .qr-timer {
            text-align: center;
        }

        .timer-ring {
            width: 70px;
            height: 70px;
            position: relative;
            margin: 0 auto 0.5rem;
        }

        .timer-ring svg {
            transform: rotate(-90deg);
        }

        .timer-ring circle {
            fill: none;
            stroke-width: 6;
            stroke-linecap: round;
        }

        .timer-ring circle:first-child {
            stroke: rgba(255, 255, 255, 0.1);
        }

        .timer-ring circle:last-child {
            stroke: #22c55e;
            stroke-dashoffset: 0;
            animation: timer-countdown 300s linear forwards;
        }

        @keyframes timer-countdown {
            from { stroke-dashoffset: 0; }
            to { stroke-dashoffset: 283; }
        }

        .timer-ring span {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1rem;
            font-weight: 700;
            color: #22c55e;
        }

        .timer-ring p {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            margin: 0;
        }

        .qr-footer {
            margin-top: 1.5rem;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .nursery-info {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .nursery-avatar {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .nursery-text {
            display: flex;
            flex-direction: column;
        }

        .nursery-name {
            font-size: 0.85rem;
            font-weight: 600;
        }

        .child-name {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.6);
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .child-name i {
            font-size: 0.9rem;
        }

        .verified-status {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
            padding: 0.4rem 0.8rem;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .verified-status i {
            font-size: 1rem;
        }

        .phone-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
            filter: blur(40px);
            z-index: -1;
            animation: glow-pulse 3s ease-in-out infinite;
        }

        .security-stats {
            display: flex;
            gap: 2rem;
        }

        .stat-item {
            text-align: center;
            padding: 1rem 1.5rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .stat-number {
            display: block;
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #818cf8, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .stat-label {
            font-size: 0.75rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        @media (max-width: 1024px) {
            .security-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            .security-content {
                text-align: center;
            }
            .security-list li {
                text-align: left;
            }
        }

        @media (max-width: 640px) {
            .security-content h2 {
                font-size: 2rem;
            }
            .security-stats {
                flex-direction: column;
                gap: 1rem;
                width: 100%;
            }
            .stat-item {
                width: 100%;
            }
        }

        /* How It Works Section */
        .how-it-works-section {
            background: linear-gradient(180deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .how-it-works-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
            pointer-events: none;
        }

        .how-it-works-section .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            color: #6366f1;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(99, 102, 241, 0.2);
        }

        .how-it-works-section .section-badge i {
            font-size: 1rem;
        }

        .process-timeline {
            position: relative;
            max-width: 1100px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .timeline-line {
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #3b82f6, #8b5cf6, #22c55e, #f59e0b);
            border-radius: 4px;
            opacity: 0.2;
        }

        .step-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            margin-bottom: 5rem;
            position: relative;
        }

        .step-item:nth-child(even) {
            direction: rtl;
        }

        .step-item:nth-child(even) > * {
            direction: ltr;
        }

        .step-item:nth-child(even) .step-connector {
            left: 0;
            right: auto;
            transform: translateX(-50%) rotate(180deg);
        }

        .step-visual {
            display: flex;
            justify-content: center;
            position: relative;
        }

        .step-icon-wrap {
            position: relative;
            width: 160px;
            height: 160px;
        }

        .step-icon-bg {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--step-color), color-mix(in srgb, var(--step-color) 60%, white));
            opacity: 0.15;
            animation: step-pulse 3s ease-in-out infinite;
        }

        @keyframes step-pulse {
            0%, 100% { transform: scale(1); opacity: 0.15; }
            50% { transform: scale(1.08); opacity: 0.2; }
        }

        .step-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--step-color), color-mix(in srgb, var(--step-color) 70%, white));
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 35px -8px var(--step-color);
            transition: all 0.4s ease;
        }

        .step-icon i {
            font-size: 2.8rem;
            color: white;
        }

        .step-item:hover .step-icon {
            transform: translate(-50%, -50%) scale(1.1);
            box-shadow: 0 20px 45px -10px var(--step-color);
        }

        .step-item:hover .step-icon i {
            animation: icon-bounce 0.6s ease;
        }

        @keyframes icon-bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .step-particles {
            position: absolute;
            inset: 0;
            pointer-events: none;
        }

        .step-particles span {
            position: absolute;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--step-color);
            opacity: 0;
        }

        .step-particles span:nth-child(1) { top: 10%; left: 20%; animation: particle-float 3s ease-in-out infinite; }
        .step-particles span:nth-child(2) { top: 20%; right: 15%; animation: particle-float 3s ease-in-out 0.3s infinite; }
        .step-particles span:nth-child(3) { bottom: 15%; left: 10%; animation: particle-float 3s ease-in-out 0.6s infinite; }
        .step-particles span:nth-child(4) { bottom: 25%; right: 20%; animation: particle-float 3s ease-in-out 0.9s infinite; }
        .step-particles span:nth-child(5) { top: 50%; left: 5%; animation: particle-float 3s ease-in-out 1.2s infinite; }

        @keyframes particle-float {
            0%, 100% { opacity: 0; transform: translateY(0); }
            50% { opacity: 0.6; transform: translateY(-10px); }
        }

        .step-content {
            position: relative;
        }

        .step-number-badge {
            display: inline-block;
            font-size: 3.5rem;
            font-weight: 900;
            color: var(--step-color);
            opacity: 0.1;
            position: absolute;
            top: -2rem;
            left: -1rem;
            line-height: 1;
        }

        .step-item:nth-child(even) .step-number-badge {
            left: auto;
            right: -1rem;
        }

        .step-content h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: #1e293b;
            position: relative;
        }

        .step-content p {
            font-size: 1.05rem;
            color: #64748b;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .step-features {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .step-features span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: #475569;
            font-weight: 500;
        }

        .step-features i {
            color: #22c55e;
            font-size: 1.1rem;
        }

        .step-connector {
            position: absolute;
            right: -2.5rem;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            border: 3px solid #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #94a3b8;
            font-size: 1.2rem;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .step-item:last-child .step-connector {
            display: none;
        }

        .step-item:hover .step-connector {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-color: transparent;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .process-summary {
            display: flex;
            justify-content: center;
            gap: 4rem;
            margin-top: 4rem;
            padding-top: 4rem;
            border-top: 1px solid #e2e8f0;
        }

        .summary-item {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .summary-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #6366f1;
            transition: all 0.3s ease;
        }

        .summary-item:hover .summary-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: white;
        }

        .summary-text {
            display: flex;
            flex-direction: column;
        }

        .summary-number {
            font-size: 1.75rem;
            font-weight: 800;
            color: #1e293b;
            line-height: 1.2;
        }

        .summary-label {
            font-size: 0.9rem;
            color: #64748b;
        }

        @media (max-width: 1024px) {
            .timeline-line {
                display: none;
            }
            
            .step-item,
            .step-item:nth-child(even) {
                grid-template-columns: 1fr;
                gap: 2rem;
                direction: ltr;
                text-align: center;
            }

            .step-connector {
                display: none;
            }

            .step-number-badge {
                position: static;
                font-size: 2rem;
                opacity: 0.15;
                margin-bottom: -1rem;
            }

            .step-features {
                justify-content: center;
            }

            .process-summary {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {
            .how-it-works-section {
                padding: 60px 0;
            }
            
            .step-icon-wrap {
                width: 120px;
                height: 120px;
            }

            .step-icon {
                width: 80px;
                height: 80px;
            }

            .step-icon i {
                font-size: 2rem;
            }

            .step-content h3 {
                font-size: 1.5rem;
            }

            .summary-number {
                font-size: 1.5rem;
            }
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            max-width: 1050px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border-radius: var(--radius-2xl);
            padding: 2rem;
            border: 1px solid var(--border-light);
            text-align: center;
            position: relative;
            transition: all var(--transition-slow);
        }

        .pricing-card.popular {
            border: 2px solid var(--secondary);
            transform: scale(1.05);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .pricing-card.popular:hover {
            transform: scale(1.05) translateY(-8px);
        }

        .pricing-popular {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--secondary), var(--purple));
            color: white;
            padding: 0.4rem 1.25rem;
            border-radius: var(--radius-full);
            font-size: 0.7rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
        }

        .pricing-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .pricing-desc {
            font-size: 0.875rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .pricing-price {
            font-size: 2.75rem;
            font-weight: 800;
            color: var(--primary);
        }

        .pricing-price span {
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-light);
        }

        .pricing-features {
            list-style: none;
            margin: 1.5rem 0;
            text-align: left;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 0.625rem;
            font-size: 0.875rem;
            color: var(--text-light);
        }

        .pricing-features li i {
            color: var(--success);
            font-size: 0.875rem;
        }

        /* Modern Pricing Section */
        .pricing-kids-section {
            position: relative;
            overflow: hidden;
            background: linear-gradient(180deg, #fefce8 0%, #f0fdf4 50%, #fef9c3 100%);
        }

        .pricing-decor {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .pricing-decor .decor-heart {
            position: absolute;
            color: #f472b6;
            opacity: 0.3;
            animation: heart-float 4s ease-in-out infinite;
        }

        .pricing-decor .decor-heart-1 { top: 10%; left: 5%; font-size: 2rem; }
        .pricing-decor .decor-heart-2 { top: 60%; right: 8%; font-size: 1.2rem; animation-delay: 0.5s; }

        .pricing-decor .decor-balloon {
            position: absolute;
            opacity: 0.4;
            animation: balloon-float 6s ease-in-out infinite;
        }

        .pricing-decor .decor-balloon-1 { top: 5%; right: 20%; font-size: 2rem; color: #eab308; }
        .pricing-decor .decor-balloon-2 { top: 15%; left: 10%; font-size: 1.5rem; color: #8b5cf6; animation-delay: 1s; }

        .pricing-decor .decor-cloud {
            position: absolute;
            color: #bae6fd;
            font-size: 2.5rem;
            opacity: 0.5;
            animation: cloud-float 8s ease-in-out infinite;
        }

        .pricing-decor .decor-cloud-1 { top: 8%; right: 5%; }
        .pricing-decor .decor-cloud-2 { top: 50%; left: 3%; font-size: 2rem; animation-delay: 2s; }

        .pricing-modern-wrapper {
            position: relative;
            z-index: 1;
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-modern-header {
            text-align: center;
            margin-bottom: 3.5rem;
        }

        .pricing-modern-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(59, 130, 246, 0.15));
            color: #10b981;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 2px solid rgba(34, 197, 94, 0.2);
        }

        .pricing-modern-header h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .pricing-modern-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 500px;
            margin: 0 auto;
        }

        .pricing-modern-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            align-items: start;
        }

        .pricing-modern-card {
            background: white;
            border-radius: 24px;
            padding: 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            border: 2px solid transparent;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .pricing-modern-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #10b981, #3b82f6);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .pricing-modern-card.popular {
            border-color: #10b981;
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
            z-index: 2;
        }

        .pricing-modern-card.popular::before {
            transform: scaleX(1);
        }

        .pricing-modern-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
        }

        .pricing-modern-card.popular:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-modern-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .pricing-modern-header-card h3 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .pricing-modern-header-card p {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-bottom: 1.5rem;
        }

        .pricing-modern-price {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px dashed #e5e7eb;
        }

        .pricing-modern-price .currency {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary);
            vertical-align: top;
        }

        .pricing-modern-price .amount {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
        }

        .pricing-modern-price .period {
            font-size: 0.9rem;
            color: var(--text-light);
            font-weight: 500;
        }

        .pricing-modern-features {
            list-style: none;
            margin: 0 0 1.5rem 0;
            padding: 0;
            text-align: left;
        }

        .pricing-modern-features li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.875rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .pricing-modern-features li i {
            color: #10b981;
            font-size: 1rem;
            margin-top: 0.125rem;
            flex-shrink: 0;
        }

        .pricing-modern-features li span {
            line-height: 1.5;
        }

        .pricing-modern-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            width: 100%;
            padding: 1rem;
            border-radius: 12px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .pricing-modern-btn.primary {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
        }

        .pricing-modern-btn.primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
        }

        .pricing-modern-btn.secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid #e5e7eb;
        }

        .pricing-modern-btn.secondary:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }

        .pricing-trust {
            text-align: center;
            margin-top: 2rem;
            padding: 1rem;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 12px;
            display: inline-block;
            width: 100%;
        }

        .pricing-trust p {
            color: #059669;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .pricing-trust i {
            font-size: 1.25rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 50%;
            height: 150%;
            background: radial-gradient(ellipse, rgba(99, 102, 241, 0.2) 0%, transparent 60%);
        }

        [dir="rtl"] .cta-section::before {
            right: auto;
            left: -10%;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-content h2 {
            font-size: 2.75rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1rem;
            letter-spacing: -0.025em;
        }

        .cta-content p {
            font-size: 1.125rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2rem;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: linear-gradient(180deg, #fefce8 0%, #fef9c3 50%, #ecfccb 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .testimonials-bg {
            position: absolute;
            inset: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .testimonial-shape {
            position: absolute;
            border-radius: 50%;
            opacity: 0.15;
        }

        .testimonial-shape.shape-1 {
            width: 500px;
            height: 500px;
            background: #f59e0b;
            top: -200px;
            right: -100px;
            animation: shape-float 8s ease-in-out infinite;
        }

        .testimonial-shape.shape-2 {
            width: 300px;
            height: 300px;
            background: #ec4899;
            bottom: -100px;
            left: -50px;
            animation: shape-float 10s ease-in-out infinite reverse;
        }

        .testimonial-shape.shape-3 {
            width: 200px;
            height: 200px;
            background: #22c55e;
            top: 50%;
            left: 10%;
            animation: shape-float 6s ease-in-out infinite;
        }

        @keyframes shape-float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(20px, -30px) rotate(10deg); }
        }

        .testimonials-section .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(236, 72, 153, 0.1));
            color: #f59e0b;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
            margin-bottom: 4rem;
        }

        .testimonial-card {
            position: relative;
            background: white;
            border-radius: 24px;
            padding: 2rem;
            border: 1px solid #e5e7eb;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--card-accent, #6366f1), color-mix(in srgb, var(--card-accent, #6366f1) 60%, white));
        }

        .testimonial-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100%;
            background: linear-gradient(180deg, transparent 50%, var(--card-accent, #6366f1));
            opacity: 0;
            transition: opacity 0.4s;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            border-color: transparent;
        }

        .testimonial-card:hover::after {
            opacity: 0.03;
        }

        .testimonial-card-inner {
            position: relative;
            z-index: 1;
        }

        .testimonial-quote-icon {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-size: 4rem;
            color: var(--card-accent);
            opacity: 0.1;
            line-height: 1;
        }

        .testimonial-card:hover .testimonial-quote-icon {
            opacity: 0.2;
            animation: quote-bounce 0.6s ease;
        }

        @keyframes quote-bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .testimonial-stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1.25rem;
        }

        .testimonial-stars i {
            font-size: 1.1rem;
            color: #fbbf24;
            animation: star-pop 0.3s ease forwards;
            opacity: 0;
        }

        .testimonial-card:nth-child(1) .testimonial-stars i:nth-child(1) { animation-delay: 0.1s; }
        .testimonial-card:nth-child(1) .testimonial-stars i:nth-child(2) { animation-delay: 0.15s; }
        .testimonial-card:nth-child(1) .testimonial-stars i:nth-child(3) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(1) .testimonial-stars i:nth-child(4) { animation-delay: 0.25s; }
        .testimonial-card:nth-child(1) .testimonial-stars i:nth-child(5) { animation-delay: 0.3s; }

        .testimonial-card:nth-child(2) .testimonial-stars i:nth-child(1) { animation-delay: 0.2s; }
        .testimonial-card:nth-child(2) .testimonial-stars i:nth-child(2) { animation-delay: 0.25s; }
        .testimonial-card:nth-child(2) .testimonial-stars i:nth-child(3) { animation-delay: 0.3s; }
        .testimonial-card:nth-child(2) .testimonial-stars i:nth-child(4) { animation-delay: 0.35s; }
        .testimonial-card:nth-child(2) .testimonial-stars i:nth-child(5) { animation-delay: 0.4s; }

        .testimonial-card:nth-child(3) .testimonial-stars i:nth-child(1) { animation-delay: 0.3s; }
        .testimonial-card:nth-child(3) .testimonial-stars i:nth-child(2) { animation-delay: 0.35s; }
        .testimonial-card:nth-child(3) .testimonial-stars i:nth-child(3) { animation-delay: 0.4s; }
        .testimonial-card:nth-child(3) .testimonial-stars i:nth-child(4) { animation-delay: 0.45s; }
        .testimonial-card:nth-child(3) .testimonial-stars i:nth-child(5) { animation-delay: 0.5s; }

        @keyframes star-pop {
            0% { opacity: 0; transform: scale(0); }
            50% { transform: scale(1.3); }
            100% { opacity: 1; transform: scale(1); }
        }

        .testimonial-text {
            font-size: 1rem;
            color: #475569;
            line-height: 1.8;
            margin-bottom: 1.75rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
        }

        .testimonial-avatar {
            position: relative;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--card-accent), color-mix(in srgb, var(--card-accent) 70%, white));
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .testimonial-avatar span {
            font-size: 1.1rem;
            font-weight: 700;
            color: white;
        }

        .avatar-ring {
            position: absolute;
            inset: -4px;
            border: 2px solid var(--card-accent);
            border-radius: 50%;
            opacity: 0.3;
            animation: avatar-pulse 2s ease-in-out infinite;
        }

        @keyframes avatar-pulse {
            0%, 100% { transform: scale(1); opacity: 0.3; }
            50% { transform: scale(1.1); opacity: 0.1; }
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-info h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 0.25rem;
        }

        .testimonial-info span {
            font-size: 0.85rem;
            color: #64748b;
        }

        .testimonial-badge {
            position: absolute;
            top: 0;
            right: 0;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            font-size: 0.75rem;
            color: #22c55e;
            font-weight: 600;
        }

        .testimonial-badge i {
            font-size: 1rem;
        }

        .testimonial-card-decoration {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(180deg, transparent, rgba(var(--card-accent-rgb, 59, 130, 246), 0.03));
            pointer-events: none;
        }

        .testimonials-stats {
            display: flex;
            justify-content: center;
            gap: 4rem;
            padding: 3rem;
            background: white;
            border-radius: 24px;
            box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
            position: relative;
            z-index: 1;
        }

        .testimonial-stat {
            display: flex;
            align-items: center;
            gap: 1.25rem;
        }

        .testimonial-stat .stat-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #6366f1;
            transition: all 0.3s ease;
        }

        .testimonial-stat:hover .stat-icon {
            transform: scale(1.1) rotate(5deg);
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            color: white;
        }

        .testimonial-stat .stat-content {
            display: flex;
            flex-direction: column;
        }

        .testimonial-stat .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #1e293b;
            line-height: 1.2;
        }

        .testimonial-stat .stat-label {
            font-size: 0.9rem;
            color: #64748b;
        }

        @media (max-width: 1024px) {
            .testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }

            .testimonials-stats {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
        }

        @media (max-width: 640px) {
            .testimonials-section {
                padding: 60px 0;
            }

            .testimonial-card {
                padding: 1.5rem;
            }

            .testimonials-stats {
                padding: 2rem 1.5rem;
            }

            .testimonial-stat .stat-number {
                font-size: 1.5rem;
            }
        }

        /* CTA Section Enhanced */
        .cta-section {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-bg-effects {
            position: absolute;
            inset: 0;
            overflow: hidden;
        }

        .cta-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.5;
            animation: cta-orb-float 8s ease-in-out infinite;
        }

        .cta-orb-1 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #3b82f6, #6366f1);
            top: -100px;
            left: -100px;
            animation-delay: 0s;
        }

        .cta-orb-2 {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
            bottom: -50px;
            right: -50px;
            animation-delay: 2s;
        }

        .cta-orb-3 {
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, #22c55e, #10b981);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: 4s;
        }

        @keyframes cta-orb-float {
            0%, 100% { transform: translate(0, 0) scale(1); }
            25% { transform: translate(20px, -20px) scale(1.05); }
            50% { transform: translate(-10px, 10px) scale(0.95); }
            75% { transform: translate(-20px, -10px) scale(1.02); }
        }

        .cta-orb-3 {
            animation-name: cta-orb-pulse;
        }

        @keyframes cta-orb-pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
            50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.5; }
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-icon-wrap {
            position: relative;
            width: 120px;
            height: 120px;
            margin: 0 auto 2rem;
        }

        .cta-icon-glow {
            position: absolute;
            inset: -20px;
            background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
            animation: cta-glow-pulse 2s ease-in-out infinite;
        }

        @keyframes cta-glow-pulse {
            0%, 100% { opacity: 0.5; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.1); }
        }

        .cta-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 40px rgba(99, 102, 241, 0.4);
            animation: cta-icon-float 3s ease-in-out infinite;
        }

        @keyframes cta-icon-float {
            0%, 100% { transform: translate(-50%, -50%) translateY(0); }
            50% { transform: translate(-50%, -50%) translateY(-10px); }
        }

        .cta-icon i {
            font-size: 3rem;
            color: white;
        }

        .cta-icon-ring {
            position: absolute;
            inset: 0;
            border: 2px solid rgba(99, 102, 241, 0.3);
            border-radius: 50%;
            animation: cta-ring-expand 2s ease-out infinite;
        }

        @keyframes cta-ring-expand {
            0% { transform: scale(1); opacity: 0.8; }
            100% { transform: scale(1.5); opacity: 0; }
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: rgba(99, 102, 241, 0.15);
            color: #a5b4fc;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            border: 1px solid rgba(99, 102, 241, 0.3);
        }

        .cta-content h2 {
            font-size: 3rem;
            font-weight: 900;
            color: white;
            margin-bottom: 1rem;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, #ffffff 0%, #c7d2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .cta-content > p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.25rem;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .cta-btn-primary {
            position: relative;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: linear-gradient(135deg, #3b82f6, #6366f1);
            color: white;
            padding: 1rem 2rem;
            border-radius: 16px;
            font-size: 1.1rem;
            font-weight: 700;
            text-decoration: none;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .cta-btn-primary:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
        }

        .cta-btn-primary i {
            font-size: 1.3rem;
            transition: transform 0.3s ease;
        }

        .cta-btn-primary:hover i {
            transform: translateX(4px);
        }

        .cta-btn-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: cta-shine 3s ease-in-out infinite;
        }

        @keyframes cta-shine {
            0%, 100% { left: -100%; }
            50% { left: 100%; }
        }

        .cta-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            color: white;
            padding: 1rem 2rem;
            border-radius: 16px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid rgba(255, 255, 255, 0.15);
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .cta-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.3);
            transform: translateY(-4px);
        }

        .cta-btn-secondary i {
            font-size: 1.2rem;
        }

        .cta-trust {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .cta-trust span {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.6);
        }

        .cta-trust i {
            font-size: 1.1rem;
            color: #22c55e;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 80px 0;
            }
            
            .cta-content h2 {
                font-size: 2rem;
            }
            
            .cta-content > p {
                font-size: 1rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-btn-primary,
            .cta-btn-secondary {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .cta-trust {
                flex-direction: column;
                gap: 1rem;
            }
            
            .cta-icon-wrap {
                width: 100px;
                height: 100px;
            }
            
            .cta-icon {
                width: 80px;
                height: 80px;
            }
            
            .cta-icon i {
                font-size: 2.5rem;
            }
        }

        /* Footer Modern */
        .footer {
            background: #0f172a;
            color: white;
        }

        .footer-top {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            padding: 60px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .newsletter-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 3rem;
            flex-wrap: wrap;
        }

        .newsletter-text h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
        }

        .newsletter-text p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }

        .newsletter-form {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .newsletter-form input {
            padding: 0.875rem 1.25rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
            color: white;
            font-size: 0.95rem;
            min-width: 280px;
            transition: all 0.3s ease;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: #3b82f6;
            background: rgba(255, 255, 255, 0.08);
        }

        .newsletter-form button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.875rem 1.5rem;
            border-radius: 12px;
            border: none;
            background: linear-gradient(135deg, #3b82f6, #6366f1);
            color: white;
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
        }

        .footer-main {
            padding: 80px 0 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
            gap: 3rem;
        }

        .footer-brand .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: white;
            margin-bottom: 1.25rem;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 800;
        }

        .footer-brand .logo .logo-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

        .footer-brand p {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .footer-contact a {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-contact a:hover {
            color: #3b82f6;
        }

        .footer-contact a i {
            font-size: 1.1rem;
        }

        .footer-links-group h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-links-group h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border-radius: 2px;
        }

        .footer-links-group ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links-group li {
            margin-bottom: 0.75rem;
        }

        .footer-links-group a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .footer-links-group a:hover {
            color: white;
            transform: translateX(5px);
        }

        .footer-social-section h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: white;
            position: relative;
            padding-bottom: 0.75rem;
        }

        .footer-social-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            border-radius: 2px;
        }

        .footer-social {
            display: flex;
            gap: 0.75rem;
            margin-bottom: 1.5rem;
        }

        .social-link {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #3b82f6, #8b5cf6);
            border-color: transparent;
            color: white;
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 10px 25px rgba(99, 102, 241, 0.3);
        }

        .footer-app-links {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        .app-link {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem 1rem;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .app-link i {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.8);
        }

        .app-link span {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        .app-link:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: rgba(255, 255, 255, 0.15);
            transform: translateX(5px);
        }

        .footer-bottom {
            background: #0a0f1a;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .footer-bottom-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .footer-copyright p {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            margin: 0;
        }

        .footer-badges {
            display: flex;
            gap: 2rem;
        }

        .badge-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
        }

        .badge-item i {
            font-size: 1rem;
            color: #22c55e;
        }

        @media (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-brand {
                grid-column: 1 / -1;
            }
        }

        @media (max-width: 768px) {
            .newsletter-content {
                flex-direction: column;
                text-align: center;
            }
            .newsletter-form {
                width: 100%;
                justify-content: center;
            }
            .newsletter-form input {
                width: 100%;
                min-width: auto;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }
            .footer-badges {
                justify-content: center;
                flex-wrap: wrap;
                gap: 1rem;
            }
        }

        .footer-bottom a {
            color: var(--accent-light);
        }

        /* Floating Buttons */
        .floating-whatsapp {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 9999;
            width: 56px;
            height: 56px;
            background: #25d366;
            color: white !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.625rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all var(--transition-bounce);
            text-decoration: none;
        }

        [dir="rtl"] .floating-whatsapp {
            right: auto;
            left: 28px;
        }

        .floating-whatsapp:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
        }

        .back-to-top {
            position: fixed;
            bottom: 100px;
            right: 32px;
            z-index: 9998;
            width: 48px;
            height: 48px;
            background: var(--primary);
            color: white !important;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-base);
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            border: none;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }

        [dir="rtl"] .back-to-top {
            right: auto;
            left: 32px;
        }

        .back-to-top:hover {
            background: var(--secondary);
            transform: translateY(-4px);
        }

        /* Scroll Progress */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--secondary), var(--purple));
            z-index: 10001;
            width: 0;
        }

        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                        transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-1 { transition-delay: 0.08s; }
        .stagger-2 { transition-delay: 0.16s; }
        .stagger-3 { transition-delay: 0.24s; }
        .stagger-4 { transition-delay: 0.32s; }

        @media (prefers-reduced-motion: reduce) {
            .fade-in { opacity: 1; transform: none; transition: none; }
            .floating-whatsapp, .back-to-top, .dashboard-card { transition: none; }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content, .dark-grid { grid-template-columns: 1fr; text-align: center; }
            .hero-buttons, .hero-stats, .dark-list { justify-content: center; }
            .hero-stats { flex-wrap: wrap; gap: 2rem; }
            .features-grid, .pricing-grid, .pricing-modern-grid, .footer-grid { grid-template-columns: repeat(2, 1fr); }
            .pricing-card.popular, .pricing-modern-card.popular { transform: none; }
            .pricing-card.popular:hover, .pricing-modern-card.popular:hover { transform: translateY(-8px); }
        }

        @media (max-width: 768px) {
            .nav-links { display: none; }
            .hero { padding: 120px 0 80px; }
            .hero-text h1 { font-size: 2.25rem; }
            .section { padding: 70px 0; }
            .section-header h2 { font-size: 1.875rem; }
            .features-grid, .pricing-grid, .pricing-modern-grid, .footer-grid { grid-template-columns: 1fr; }
            .hero-stats { flex-direction: column; gap: 1.5rem; }
            .dashboard-card { animation: none; }
            .cta-content h2 { font-size: 2rem; }
            .floating-whatsapp { width: 50px; height: 50px; font-size: 1.375rem; bottom: 20px; right: 20px; }
            [dir="rtl"] .floating-whatsapp { right: auto; left: 20px; }
            .back-to-top { width: 44px; height: 44px; bottom: 85px; right: 24px; }
            [dir="rtl"] .back-to-top { right: auto; left: 86px; }
            .pricing-modern-header h2 { font-size: 1.75rem; }
        }

        /* PWA Safe Areas - Mobile Notch Support */
        @supports (padding: env(safe-area-inset-top)) {
            body {
                padding-top: env(safe-area-inset-top);
                padding-bottom: env(safe-area-inset-bottom);
                padding-left: env(safe-area-inset-left);
                padding-right: env(safe-area-inset-right);
            }
            
            .nav-wrapper {
                padding-top: env(safe-area-inset-top);
            }
            
            .floating-whatsapp {
                bottom: calc(20px + env(safe-area-inset-bottom));
            }
            
            .back-to-top {
                bottom: calc(85px + env(safe-area-inset-bottom));
            }
            
            .scroll-progress {
                top: env(safe-area-inset-top);
            }
        }

        /* iPhone X and newer notch support */
        @media only screen and (min-width: 375px) and (max-width: 812px) and (-webkit-device-pixel-ratio: 3) {
            .nav-wrapper {
                padding-top: env(safe-area-inset-top);
            }
        }

        /* Prevent horizontal scroll on mobile */
        html, body {
            overflow-x: hidden;
            -webkit-overflow-scrolling: touch;
        }

        /* Improve touch targets on mobile */
        @media (max-width: 768px) {
            a, button {
                min-height: 44px;
                min-width: 44px;
            }
            
            .btn {
                padding: 14px 24px;
                font-size: 1rem;
            }
            
            .nav-btn-highlight {
                padding: 12px 20px;
            }
        }

        /* Smooth scroll behavior */
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        /* Disable tap highlight on mobile */
        * {
            -webkit-tap-highlight-color: transparent;
        }

        /* Better font rendering on mobile */
        body {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            text-rendering: optimizeLegibility;
        }

        /* PWA Install Banner styles (if shown) */
        .pwa-install-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #0B1F3A, #1e293b);
            color: white;
            padding: 16px 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            z-index: 10000;
            box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
        }

        @media print {
            .nav-wrapper, .floating-whatsapp, .back-to-top, .scroll-progress { display: none !important; }
            .section { page-break-inside: avoid; }
        }
    </style>
