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

        :root {
            /* Premium AI Platform Color Palette */
            --primary-500: #4F46E5;
            --primary-600: #4338CA;
            --primary-700: #3730A3;
            --primary-50: #EEF2FF;
            --primary-100: #E0E7FF;
            --primary-200: #C7D2FE;
            --primary-400: #818CF8;
            
            --secondary-500: #06B6D4;
            --secondary-600: #0891B2;
            --secondary-100: #CFFAFE;
            
            --gray-50: #F9FAFB;
            --gray-100: #F3F4F6;
            --gray-200: #E5E7EB;
            --gray-300: #D1D5DB;
            --gray-400: #9CA3AF;
            --gray-500: #6B7280;
            --gray-600: #4B5563;
            --gray-700: #374151;
            --gray-800: #1F2937;
            --gray-900: #111827;
            
            --success-500: #10B981;
            --success-200: #A7F3D0;
            --warning-500: #F59E0B;
            --error-500: #EF4444;
            --error-200: #FECACA;
            
            /* Typography */
            --font-sans: 'Inter', 'Vazir', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
            
            /* Spacing System */
            --space-unit: 4px;
            --space-xs: calc(var(--space-unit) * 2);
            --space-sm: calc(var(--space-unit) * 3);
            --space-md: calc(var(--space-unit) * 4);
            --space-lg: calc(var(--space-unit) * 6);
            --space-xl: calc(var(--space-unit) * 8);
            --space-2xl: calc(var(--space-unit) * 12);
            --space-3xl: calc(var(--space-unit) * 16);
            
            /* Shadows */
            --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
            --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
            --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
            --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
            
            /* Border Radius */
            --radius-sm: 0.25rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            --radius-xl: 1rem;
            --radius-2xl: 1.5rem;
        }

		

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 5rem;
        }

        body {
            font-family: var(--font-sans);
            line-height: 1.6;
            color: var(--gray-900);
            background: var(--gray-50);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            font-display: swap;
        }

        /* Container & Layout */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        .container-tight {
            max-width: 1024px;
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        /* Utility Classes */
        .text-center { text-align: center; }
        .text-sm { font-size: 0.875rem; }
        .text-base { font-size: 1rem; }
        .text-lg { font-size: 1.125rem; }
        .text-xl { font-size: 1.25rem; }
        .text-2xl { font-size: 1.5rem; }
        .text-3xl { font-size: 1.875rem; }
        .text-4xl { font-size: 2.25rem; }
        .text-5xl { font-size: 3rem; }
        .text-6xl { font-size: 3.75rem; }

        .font-light { font-weight: 300; }
        .font-normal { font-weight: 400; }
        .font-medium { font-weight: 500; }
        .font-semibold { font-weight: 600; }
        .font-bold { font-weight: 700; }
        .font-extrabold { font-weight: 800; }

        /* Button System */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-xs);
            padding: var(--space-sm) var(--space-lg);
            border: 1px solid transparent;
            border-radius: var(--radius-lg);
            font-size: 0.875rem;
            font-weight: 500;
            line-height: 1.5;
            text-decoration: none;
            cursor: pointer;
            transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
            user-select: none;
            white-space: nowrap;
        }

        .btn-primary {
            background: var(--primary-500);
            color: white;
            border-color: var(--primary-500);
            box-shadow: var(--shadow-sm);
        }

        .btn-primary:hover {
            background: var(--primary-600);
            border-color: var(--primary-600);
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }

        .btn-secondary {
            background: white;
            color: var(--gray-700);
            border-color: var(--gray-300);
            box-shadow: var(--shadow-sm);
        }

        .btn-secondary:hover {
            background: var(--gray-50);
            border-color: var(--gray-400);
            box-shadow: var(--shadow-md);
        }

        .btn-lg {
            padding: var(--space-md) var(--space-xl);
            font-size: 1rem;
            border-radius: var(--radius-xl);
        }

        .btn-white {
            background: white;
            color: var(--primary-600);
            border-color: white;
        }

        .btn-white:hover {
            background: var(--gray-50);
            transform: translateY(-1px);
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 50;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--gray-200);
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95);
            box-shadow: var(--shadow-lg);
        }

        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 4rem;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-900);
            text-decoration: none;
        }

        .nav-brand-icon {
            width: 2rem;
            height: 2rem;
            background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: var(--space-xl);
            list-style: none;
        }

        .nav-links a {
            color: var(--gray-600);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.2s ease;
            position: relative;
        }

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

        .nav-links a.active {
            color: var(--primary-500);
        }

        .nav-cta {
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }

        /* Hero Section */
        .hero {
            padding-top: 8rem;
            padding-bottom: 6rem;
            background: linear-gradient(135deg, var(--gray-50) 0%, var(--primary-50) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::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='%234F46E5' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: center;
            min-height: 75vh;
        }

        .hero-content {
            z-index: 1;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            padding: var(--space-xs) var(--space-md);
            background: var(--primary-100);
            color: var(--primary-700);
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: var(--space-lg);
        }

        .hero-title {
            font-size: clamp(2.5rem, 4vw, 4rem);
            font-weight: 800;
            line-height: 1.1;
            color: var(--gray-900);
            margin-bottom: var(--space-lg);
            letter-spacing: -0.02em;
        }

        .hero-title .highlight {
            background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-slogan {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-600);
            margin-bottom: var(--space-md);
            text-shadow: 0 2px 4px rgba(79, 70, 229, 0.1);
        }

        .hero-description {
            font-size: 1.125rem;
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: var(--space-2xl);
            max-width: 540px;
        }

        .connection-info {
            background: white;
            border: 1px solid var(--primary-200);
            border-radius: var(--radius-xl);
            padding: var(--space-lg);
            margin-bottom: var(--space-xl);
            box-shadow: var(--shadow-md);
        }

        .connection-info .info-header {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            margin-bottom: var(--space-md);
        }

        .connection-info .info-icon {
            width: 32px;
            height: 32px;
            background: var(--success-500);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
        }

        .connection-info .info-title {
            font-weight: 600;
            color: var(--gray-900);
            font-size: 1.125rem;
        }

        .connection-info .info-description {
            color: var(--gray-600);
            line-height: 1.6;
        }

        .hero-actions {
            display: flex;
            align-items: center;
            gap: var(--space-lg);
            margin-bottom: var(--space-2xl);
        }

        .hero-stats {
            display: flex;
            gap: var(--space-xl);
            padding-top: var(--space-xl);
            border-top: 1px solid var(--gray-200);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gray-900);
            line-height: 1.2;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--gray-500);
            margin-top: var(--space-xs);
        }

        /* Demo & Video Section */
        .demo-section {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .demo-tabs {
            display: flex;
            margin-bottom: var(--space-xl);
            background: white;
            border-radius: var(--radius-xl);
            padding: var(--space-xs);
            box-shadow: var(--shadow-md);
        }

        .demo-tab {
            flex: 1;
            padding: var(--space-sm) var(--space-md);
            border: none;
            background: transparent;
            border-radius: var(--radius-lg);
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease;
            color: var(--gray-600);
        }

        .demo-tab.active {
            background: var(--primary-500);
            color: white;
            box-shadow: var(--shadow-sm);
        }

        .demo-content {
            position: relative;
        }

        .demo-item {
            display: none;
        }

        .demo-item.active {
            display: block;
        }

        /* Video Demo */
        .video-demo {
            position: relative;
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-2xl);
            max-width: 500px;
            margin: 0 auto;
        }

        .video-demo video {
            width: 100%;
            height: auto;
            display: block;
        }

        .video-controls {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.7));
            padding: var(--space-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-md);
        }

        .video-play-btn {
            width: 48px;
            height: 48px;
            background: var(--primary-500);
            border: none;
            border-radius: 50%;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-play-btn:hover {
            background: var(--primary-600);
            transform: scale(1.1);
        }

        /* Phone Mockup */
        .phone-mockup {
            position: relative;
            max-width: 320px;
            margin: 0 auto;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
        }

        .phone-frame {
            width: 320px;
            height: 640px;
            background: #000;
            border-radius: 40px;
            padding: 8px;
            position: relative;
        }

        .phone-screen {
            width: 100%;
            height: 100%;
            background: #f0f2f5;
            border-radius: 32px;
            overflow: hidden;
            position: relative;
        }

        /* Telegram Interface */
        .telegram-interface {
            height: 100%;
            display: flex;
            flex-direction: column;
            background: #f0f2f5;
        }

        .telegram-header {
            background: var(--primary-500);
            padding: 3rem 1rem 1rem;
            color: white;
            position: relative;
        }

        .telegram-header::before {
            content: '';
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            width: 134px;
            height: 5px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2.5px;
        }

        .header-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .bot-avatar {
            width: 42px;
            height: 42px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .bot-info h4 {
            font-size: 16px;
            font-weight: 600;
            margin: 0;
        }

        .bot-info span {
            font-size: 13px;
            opacity: 0.8;
        }

        .chat-messages {
            flex: 1;
            padding: 16px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            overflow-y: auto;
        }

        .message {
            max-width: 80%;
            padding: 10px 14px;
            border-radius: 18px;
            font-size: 14px;
            line-height: 1.4;
            position: relative;
            word-wrap: break-word;
            animation: messageSlide 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .message.bot {
            align-self: flex-start;
            background: white;
            color: #333;
            border-bottom-left-radius: 4px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .message.user {
            align-self: flex-end;
            background: var(--primary-500);
            color: white;
            border-bottom-right-radius: 4px;
        }

        .message-time {
            font-size: 11px;
            opacity: 0.7;
            margin-top: 4px;
            text-align: left;
        }

        .message.user .message-time {
            text-align: right;
        }

        .typing-indicator {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 14px;
            background: white;
            border-radius: 18px;
            border-bottom-left-radius: 4px;
            max-width: 80px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        .typing-dots {
            display: flex;
            gap: 3px;
        }

        .typing-dot {
            width: 6px;
            height: 6px;
            background: var(--gray-400);
            border-radius: 50%;
            animation: typingBounce 1.4s infinite ease-in-out;
        }

        .typing-dot:nth-child(1) { animation-delay: -0.32s; }
        .typing-dot:nth-child(2) { animation-delay: -0.16s; }

        @keyframes typingBounce {
            0%, 80%, 100% { transform: scale(0.8); opacity: 0.5; }
            40% { transform: scale(1); opacity: 1; }
        }

        @keyframes messageSlide {
            from {
                opacity: 0;
                transform: translateY(15px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .chat-input {
            padding: 12px 16px;
            background: white;
            border-top: 1px solid #e1e8ed;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .input-field {
            flex: 1;
            background: #f7f9fa;
            border: none;
            border-radius: 20px;
            padding: 8px 16px;
            font-size: 14px;
            outline: none;
        }

        .send-button {
            width: 36px;
            height: 36px;
            background: var(--primary-500);
            border: none;
            border-radius: 50%;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
        }

        /* Screenshots Section */
        .screenshot-placeholder {
            background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
            border-radius: var(--radius-2xl);
            overflow: hidden;
            position: relative;
            aspect-ratio: 16 / 10;
            box-shadow: var(--shadow-2xl);
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: var(--primary-600);
            text-align: center;
            padding: 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .screenshot-placeholder:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-2xl);
        }

        .screenshot-placeholder i {
            font-size: 4rem;
            margin-bottom: 1rem;
        }

        .screenshot-placeholder h3 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .screenshot-placeholder p {
            opacity: 0.8;
            font-size: 1rem;
        }

        /* Problem Solution Section */
        .problem-solution {
            padding: 6rem 0;
            background: white;
        }

        .problem-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-3xl);
            align-items: flex-start;
            margin-bottom: var(--space-3xl);
        }

        .problem-side, .solution-side {
            padding: var(--space-2xl);
            border-radius: var(--radius-2xl);
            border: 2px solid;
        }

        .problem-side {
            border-color: var(--error-200);
            background: rgba(239, 68, 68, 0.05);
        }

        .solution-side {
            border-color: var(--success-200);
            background: rgba(16, 185, 129, 0.05);
        }

        .problem-side h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--error-500);
            margin-bottom: var(--space-lg);
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }

        .solution-side h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--success-500);
            margin-bottom: var(--space-lg);
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }

        .problem-list {
            list-style: none;
            margin-bottom: var(--space-xl);
        }

        .problem-list li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
            padding: var(--space-md) 0;
            color: var(--gray-700);
            font-size: 1.125rem;
            line-height: 1.6;
        }

        .problem-list i {
            color: var(--error-500);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .solution-list {
            list-style: none;
            margin-bottom: var(--space-xl);
        }

        .solution-list li {
            display: flex;
            align-items: flex-start;
            gap: var(--space-md);
            padding: var(--space-md) 0;
            color: var(--gray-700);
            font-size: 1.125rem;
            line-height: 1.6;
        }

        .solution-list i {
            color: var(--success-500);
            margin-top: 2px;
            flex-shrink: 0;
        }

        /* Screenshots Gallery */
        .screenshots-section {
            padding: 6rem 0;
            background: var(--gray-50);
        }

        .section-header {
            text-align: center;
            margin-bottom: var(--space-3xl);
        }

        .section-badge {
            display: inline-block;
            padding: var(--space-xs) var(--space-md);
            background: var(--primary-100);
            color: var(--primary-700);
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: var(--space-lg);
        }

        .section-title {
            font-size: clamp(2rem, 3vw, 3rem);
            font-weight: 800;
            color: var(--gray-900);
            margin-bottom: var(--space-lg);
            line-height: 1.2;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--gray-600);
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .screenshots-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--space-xl);
            max-width: 1200px;
            margin: 0 auto;
        }

        .screenshot-card {
            background: white;
            border-radius: var(--radius-2xl);
            overflow: hidden;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
            position: relative;
        }

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

        .screenshot-image {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, var(--primary-100), var(--secondary-100));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--primary-500);
            position: relative;
            overflow: hidden;
        }

        .screenshot-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .screenshot-card:hover .screenshot-image img {
            transform: scale(1.05);
        }

        .screenshot-content {
            padding: var(--space-xl);
        }

        .screenshot-title {
            font-size: 1.375rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: var(--space-md);
        }

        .screenshot-description {
            color: var(--gray-600);
            line-height: 1.6;
            font-size: 1rem;
        }

        /* Features Section - Fixed spacing */
        .features-section {
            padding: 6rem 0;
            background: white;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: var(--space-xl);
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background: white;
            padding: var(--space-xl);
            border-radius: var(--radius-2xl);
            border: 1px solid var(--gray-200);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

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

        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--primary-100);
            color: var(--primary-600);
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: var(--space-lg);
            flex-shrink: 0;
        }

        .feature-card h3 {
            font-size: 1.375rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: var(--space-md);
            flex-shrink: 0;
        }

        .feature-card p {
            color: var(--gray-600);
            line-height: 1.7;
            font-size: 1rem;
            flex-grow: 1;
        }

        /* Industries Section - Fixed spacing */
        .industries-section {
            padding: 6rem 0;
            background: var(--gray-50);
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-xl);
            max-width: 1200px;
            margin: 0 auto;
        }

        .industry-card {
            text-align: center;
            padding: var(--space-2xl);
            border-radius: var(--radius-2xl);
            border: 1px solid var(--gray-200);
            background: white;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .industry-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-200);
        }

        .industry-icon {
            width: 64px;
            height: 64px;
            background: var(--primary-100);
            color: var(--primary-600);
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: var(--space-lg);
            flex-shrink: 0;
        }

        .industry-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: var(--space-md);
            flex-shrink: 0;
        }

        .industry-card p {
            color: var(--gray-600);
            line-height: 1.6;
            flex-grow: 1;
        }

        /* Pricing Section */
        .pricing-section {
            padding: 6rem 0;
            background: white;
        }

        .pricing-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-grid {
            display: flex;
            justify-content: center;
            align-items: flex-start;
            gap: var(--space-xl);
            flex-wrap: wrap;
        }

        .pricing-card {
            background: white;
            border-radius: var(--radius-2xl);
            padding: var(--space-2xl);
            text-align: center;
            border: 1px solid var(--gray-200);
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            width: 320px;
            flex-shrink: 0;
        }

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

        .pricing-card.popular {
            border-color: var(--primary-500);
            transform: scale(1.05);
            box-shadow: var(--shadow-xl);
        }

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

        .pricing-card.popular::before {
            content: 'محبوب‌ترین';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-500);
            color: white;
            padding: var(--space-xs) var(--space-lg);
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .pricing-plan {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--gray-900);
            margin-bottom: var(--space-md);
        }

        .pricing-price {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--gray-900);
            line-height: 1;
            margin-bottom: var(--space-lg);
        }

        .pricing-price .currency {
            font-size: 1rem;
            color: var(--gray-500);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: var(--space-xl);
            text-align: right;
        }

        .pricing-features li {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-sm) 0;
            color: var(--gray-600);
        }

        .pricing-features i {
            color: var(--success-500);
            width: 20px;
            text-align: center;
            flex-shrink: 0;
        }

        .pricing-features i.fa-times {
            color: var(--gray-300);
        }

        /* E-commerce Integration Styles */
        .woocommerce-integration {
            background: var(--primary-50);
            border: 2px solid var(--primary-200);
            border-radius: var(--radius-2xl);
            padding: var(--space-2xl);
            margin: var(--space-2xl) 0;
        }

        .integration-badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-xs);
            background: var(--primary-500);
            color: white;
            padding: var(--space-xs) var(--space-md);
            border-radius: 9999px;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: var(--space-lg);
        }

        .purchase-flow {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: var(--space-xl);
            margin-top: var(--space-2xl);
        }

        .purchase-step {
            background: white;
            border: 1px solid var(--primary-200);
            border-radius: var(--radius-xl);
            padding: var(--space-xl);
            text-align: center;
            position: relative;
        }

        .purchase-step::before {
            content: attr(data-step);
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 24px;
            height: 24px;
            background: var(--primary-500);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* Testimonials */
        .testimonials-section {
            padding: 6rem 0;
            background: var(--gray-50);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: var(--space-xl);
        }

        .testimonial-card {
            background: white;
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-2xl);
            padding: var(--space-xl);
            position: relative;
            transition: all 0.3s ease;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-content {
            font-size: 1.125rem;
            line-height: 1.7;
            color: var(--gray-700);
            margin-bottom: var(--space-xl);
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: var(--space-md);
        }

        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        .author-info h4 {
            font-weight: 600;
            color: var(--gray-900);
            margin: 0;
        }

        .author-info span {
            color: var(--gray-500);
            font-size: 0.875rem;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--primary-500), var(--secondary-500));
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='20' cy='20' r='2'/%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .cta-content {
            max-width: 640px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: clamp(2rem, 3vw, 3rem);
            font-weight: 800;
            margin-bottom: var(--space-lg);
            line-height: 1.2;
        }

        .cta-slogan {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: var(--space-md);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .cta-description {
            font-size: 1.125rem;
            opacity: 0.9;
            margin-bottom: var(--space-2xl);
            line-height: 1.7;
        }

        .cta-actions {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-lg);
            flex-wrap: wrap;
        }

        /* Footer */
        .footer {
            background: var(--gray-900);
            color: var(--gray-300);
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-2xl);
            margin-bottom: var(--space-2xl);
        }

        .footer-brand h3 {
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: var(--space-lg);
        }

        .footer-brand p {
            line-height: 1.6;
            margin-bottom: var(--space-lg);
        }

        .footer-slogan {
            color: var(--primary-400);
            font-weight: 600;
            font-size: 1.125rem;
        }

        .footer-section h4 {
            color: white;
            font-weight: 600;
            margin-bottom: var(--space-lg);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: var(--space-sm);
        }

        .footer-links a {
            color: var(--gray-300);
            text-decoration: none;
            transition: color 0.2s ease;
        }

        .footer-links a:hover {
            color: var(--primary-400);
        }

        .footer-bottom {
            border-top: 1px solid var(--gray-700);
            padding-top: var(--space-lg);
            text-align: center;
            color: var(--gray-400);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .container {
                padding: 0 var(--space-md);
            }
            
            .nav-links {
                display: none;
            }
            
            .hero-grid {
                grid-template-columns: 1fr;
                gap: var(--space-2xl);
                text-align: center;
            }
            
            .problem-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            
            .hero-stats {
                justify-content: center;
                gap: var(--space-lg);
            }
            
            .pricing-grid {
                flex-direction: column;
                align-items: center;
            }
            
            .pricing-card.popular {
                transform: none;
            }
            
            .cta-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .features-grid,
            .industries-grid {
                grid-template-columns: 1fr;
            }

            .screenshots-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 480px) {
            .hero {
                padding-top: 6rem;
                padding-bottom: 4rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
        }

		/* FAQ Section */
.faq-section {
    padding: var(--space-3xl) 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-lg);
    overflow: hidden;
    background: white;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-200);
}

.faq-question {
    padding: var(--space-lg) var(--space-xl);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-50);
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: var(--primary-50);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
    margin: 0;
    line-height: 1.5;
    flex: 1;
    padding-right: var(--space-md);
}

.faq-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-500);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--primary-600);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
    padding-top: var(--space-md);
}

/* FAQ Animation */
.faq-item.active .faq-question {
    background: var(--primary-100);
}

.faq-item.active .faq-question h3 {
    color: var(--primary-700);
}
/* ===============================================
   Simple Comparison Section Styles
   =============================================== */

/* Section Container */
.simple-comparison-section {
    padding: 4rem 0;
    background: #f8fafc;
}

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

/* Header Styles */
.simple-comparison-header {
    text-align: center;
    margin-bottom: 3rem;
}

.simple-comparison-badge {
    display: inline-block;
    background: #eff6ff;
    color: #3b82f6;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.simple-comparison-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}

/* Grid Layout */
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Card Styles */
.comparison-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comparison-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px -3px rgba(0, 0, 0, 0.1);
}

.problems-card {
    border-left: 4px solid #ef4444;
}

.solutions-card {
    border-left: 4px solid #10b981;
}

/* Card Header */
.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
}

.problems-card .card-header i {
    color: #ef4444;
    font-size: 1.5rem;
}

.solutions-card .card-header i {
    color: #10b981;
    font-size: 1.5rem;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    color: #1f2937;
}

/* Items Container */
.items-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Individual Items */
.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease;
}

.problems-card .comparison-item {
    background: #fef2f2;
}

.problems-card .comparison-item:hover {
    background: #fecaca;
}

.problems-card .comparison-item i {
    color: #ef4444;
    margin-top: 2px;
    font-size: 1rem;
    flex-shrink: 0;
}

.solutions-card .comparison-item {
    background: #f0fdf4;
}

.solutions-card .comparison-item:hover {
    background: #bbf7d0;
}

.solutions-card .comparison-item i {
    color: #10b981;
    margin-top: 2px;
    font-size: 1rem;
    flex-shrink: 0;
}

.comparison-item span {
    line-height: 1.6;
    color: #374151;
    font-weight: 500;
}

/* ===============================================
   Responsive Design
   =============================================== */

/* Tablet */
@media (max-width: 1024px) {
    .simple-comparison-container {
        padding: 0 1.5rem;
    }
    
    .simple-comparison-title {
        font-size: 2.25rem;
    }
    
    .comparison-grid {
        gap: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .simple-comparison-section {
        padding: 3rem 0;
    }
    
    .simple-comparison-container {
        padding: 0 1rem;
    }
    
    .simple-comparison-header {
        margin-bottom: 2rem;
    }
    
    .simple-comparison-title {
        font-size: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .comparison-card {
        padding: 1.5rem;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .comparison-item {
        padding: 0.75rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .simple-comparison-section {
        padding: 2rem 0;
    }
    
    .simple-comparison-container {
        padding: 0 0.5rem;
    }
    
    .simple-comparison-title {
        font-size: 1.75rem;
    }
    
    .comparison-card {
        margin: 0 0.5rem;
        padding: 1rem;
    }
    
    .card-header h3 {
        font-size: 1.125rem;
    }
    
    .comparison-item {
        padding: 0.5rem;
        gap: 0.75rem;
    }
    
    .comparison-item span {
        font-size: 0.9rem;
    }
}
/* ========================================
   ACCESSIBILITY ENHANCEMENTS
   ======================================== */

/* Focus indicators */
.focus-visible,
*:focus-visible {
    outline: 2px solid var(--primary-500);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Remove outline for mouse users */
.js-focus-visible *:focus:not(.focus-visible) {
    outline: none;
}

/* High contrast focus for better visibility */
@media (prefers-contrast: high) {
    .focus-visible,
    *:focus-visible {
        outline: 3px solid var(--primary-600);
        outline-offset: 3px;
    }
}

/* Skip navigation link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-600);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    border-radius: var(--radius-sm);
    z-index: 10000;
    font-weight: 600;
}

.skip-link:focus {
    top: 6px;
}

[dir="rtl"] .skip-link {
    left: auto;
    right: 6px;
}

[dir="rtl"] .skip-link:focus {
    right: 6px;
}

/* Screen reader only content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Enhanced button accessibility */
.btn {
    position: relative;
    overflow: hidden;
}

.btn:focus {
    box-shadow: 0 0 0 3px rgba(var(--primary-500-rgb), 0.25);
}

.btn:disabled,
.btn[aria-disabled="true"] {
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

/* Loading state accessibility */
.btn[aria-busy="true"] {
    color: transparent;
}

.btn[aria-busy="true"]::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Form accessibility */
.form-input:invalid {
    border-color: var(--error-500);
}

.form-input:invalid:focus {
    box-shadow: 0 0 0 3px rgba(var(--error-500-rgb), 0.25);
}

.form-error {
    color: var(--error-600);
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.form-error::before {
    content: "⚠";
    flex-shrink: 0;
}

.form-success {
    color: var(--success-600);
    font-size: 0.875rem;
    margin-top: var(--space-xs);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.form-success::before {
    content: "✓";
    flex-shrink: 0;
}

/* Required field indicators */
.required::after {
    content: " *";
    color: var(--error-500);
    font-weight: bold;
}

/* Checkbox and radio accessibility */
.checkbox-input,
.radio-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkbox-label,
.radio-label {
    position: relative;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
}

.checkbox-label::before,
.radio-label::before {
    content: "";
    width: 18px;
    height: 18px;
    border: 2px solid var(--gray-400);
    margin-right: var(--space-sm);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.checkbox-label::before {
    border-radius: var(--radius-sm);
}

.radio-label::before {
    border-radius: 50%;
}

.checkbox-input:checked + .checkbox-label::before {
    background: var(--primary-500);
    border-color: var(--primary-500);
}

.checkbox-input:checked + .checkbox-label::after {
    content: "✓";
    position: absolute;
    left: 4px;
    top: 1px;
    color: var(--white);
    font-size: 12px;
    font-weight: bold;
}

.radio-input:checked + .radio-label::before {
    border-color: var(--primary-500);
}

.radio-input:checked + .radio-label::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 5px;
    width: 8px;
    height: 8px;
    background: var(--primary-500);
    border-radius: 50%;
}

.checkbox-input:focus + .checkbox-label::before,
.radio-input:focus + .radio-label::before {
    box-shadow: 0 0 0 3px rgba(var(--primary-500-rgb), 0.25);
}

/* Navigation accessibility */
.nav-link {
    position: relative;
}

.nav-link[aria-current="page"]::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-500);
}

/* Modal accessibility */
.modal[aria-hidden="true"] {
    display: none;
}

.modal[aria-hidden="false"] {
    display: flex;
}

/* Tooltip accessibility */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 1000;
}

[data-tooltip]:hover::after,
[data-tooltip]:focus::after {
    opacity: 1;
}

/* Alert and notification accessibility */
.alert {
    border-left: 4px solid;
    padding: var(--space-md);
    margin-bottom: var(--space-md);
    border-radius: var(--radius-md);
}

.alert-info {
    background: var(--info-50);
    border-color: var(--info-500);
    color: var(--info-800);
}

.alert-success {
    background: var(--success-50);
    border-color: var(--success-500);
    color: var(--success-800);
}

.alert-warning {
    background: var(--warning-50);
    border-color: var(--warning-500);
    color: var(--warning-800);
}

.alert-error {
    background: var(--error-50);
    border-color: var(--error-500);
    color: var(--error-800);
}

/* Table accessibility */
.table {
    border-collapse: collapse;
    width: 100%;
}

.table th,
.table td {
    padding: var(--space-sm) var(--space-md);
    text-align: right;
    border-bottom: 1px solid var(--gray-200);
}

.table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--gray-700);
}

.table tr:hover {
    background: var(--gray-50);
}

.table caption {
    padding: var(--space-md);
    color: var(--gray-600);
    text-align: right;
    caption-side: top;
}

/* Progress bar accessibility */
.progress {
    background: var(--gray-200);
    border-radius: var(--radius-full);
    height: 8px;
    overflow: hidden;
}

.progress-bar {
    background: var(--primary-500);
    height: 100%;
    border-radius: var(--radius-full);
    transition: width 0.3s ease;
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    border-top-color: var(--primary-500);
    animation: spin 1s ease-in-out infinite;
}

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

/* Print accessibility */
@media print {
    .sr-only {
        position: static;
        width: auto;
        height: auto;
        overflow: visible;
        clip: auto;
        white-space: normal;
    }
    
    [data-tooltip]::after {
        content: " (" attr(data-tooltip) ")";
        position: static;
        transform: none;
        background: none;
        color: inherit;
        padding: 0;
        opacity: 1;
        font-size: inherit;
    }
    
    .btn::after {
        content: " [" attr(aria-label) "]";
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .btn,
    .form-input,
    .nav-link,
    .checkbox-label::before,
    .radio-label::before,
    .progress-bar {
        transition: none;
    }
    
    .loading-spinner {
        animation: none;
        border-top-color: var(--primary-500);
    }
}

/* Dark mode accessibility */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #1a1a1a;
        --black: #ffffff;
        --gray-50: #262626;
        --gray-100: #404040;
        --gray-900: #f5f5f5;
    }
    
    .skip-link {
        background: var(--white);
        color: var(--black);
    }
    
    .form-error::before,
    .form-success::before {
        filter: invert(1);
    }
}
/* ===============================================
   Animation Improvements (Optional)
   =============================================== */

@media (prefers-reduced-motion: no-preference) {
    .comparison-item {
        transition: all 0.2s ease;
    }
    
    .comparison-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}
/* =============================================
   Intersection Observer Animation Styles
   ============================================= */

/* 
  By default, all animated elements are transparent and shifted down.
  We use [data-aos] to target elements that previously used the AOS library.
*/
.feature-card,
.industry-card,
.pricing-card,
.screenshot-card,
[data-aos] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 
  When the 'is-visible' class is added by our JavaScript, 
  the element fades in and moves to its original position.
*/
.feature-card.is-visible,
.industry-card.is-visible,
.pricing-card.is-visible,
.screenshot-card.is-visible,
[data-aos].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* End of Simple Comparison Section */
