:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-9f83b87 */:root {
            /* Ultra Modern Palette */
            --color-primary: #E65100; /* Vibrant Orange/Terracotta */
            --color-primary-light: #FFECE3;
            --color-secondary: #0F172A; /* Slate 900 */
            --color-secondary-light: #1E293B;
            --color-surface: #FFFFFF;
            --color-bg: #F8FAFC; /* Slate 50 */
            --color-bg-alt: #F1F5F9;
            --color-text-main: #1E293B;
            --color-text-muted: #64748B;
            --color-border: #E2E8F0;
            
            /* Typography */
            --font-main: 'Vazirmatn', system-ui, -apple-system, sans-serif;
            --step--1: clamp(0.875rem, 0.8533rem + 0.1087vw, 0.9375rem);
            --step-0: clamp(1rem, 0.9565rem + 0.2174vw, 1.125rem);
            --step-1: clamp(1.15rem, 1.0717rem + 0.3913vw, 1.375rem);
            --step-2: clamp(1.3225rem, 1.1989rem + 0.6178vw, 1.6775rem);
            --step-3: clamp(1.5206rem, 1.3397rem + 0.9048vw, 2.0406rem);
            --step-4: clamp(1.7488rem, 1.4961rem + 1.2633vw, 2.4744rem);
            --step-5: clamp(2.0113rem, 1.6698rem + 1.7073vw, 2.9931rem);

            /* Modern Styling */
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --radius-full: 9999px;
            --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.05), 0 2px 4px -2px rgb(0 0 0 / 0.05);
            --shadow-md: 0 10px 25px -3px rgb(0 0 0 / 0.05), 0 4px 6px -4px rgb(0 0 0 / 0.05);
            --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            
            --max-width: 1320px;
        }

        *, *::before, *::after { box-sizing: border-box; }
        html { scroll-behavior: smooth; }
        body {
            margin: 0;
            font-family: var(--font-main);
            background-color: var(--color-bg);
            color: var(--color-text-main);
            line-height: 1.7;
            -webkit-font-smoothing: antialiased;
        }

        img, svg { display: block; max-width: 100%; height: auto; }
        a { text-decoration: none; color: inherit; transition: var(--transition); }
        ul { list-style: none; padding: 0; margin: 0; }
        h1, h2, h3, h4 { line-height: 1.2; font-weight: 800; margin: 0; letter-spacing: -0.03em; }

        .container {
            width: 100%;
            max-width: var(--max-width);
            margin-inline: auto;
            padding-inline: 1.5rem;
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--color-secondary);
            color: #CBD5E1;
            font-size: 0.8rem;
            padding: 0.5rem 0;
            display: none;
        }
        @media (min-width: 768px) {
            .top-bar { display: block; }
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .top-bar-info { display: flex; gap: 1.5rem; }
        .top-bar-info div { display: flex; align-items: center; gap: 0.4rem; }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.875rem 2rem;
            font-size: var(--step--1);
            font-weight: 700;
            border-radius: var(--radius-full);
            border: 2px solid transparent;
            cursor: pointer;
            transition: var(--transition);
        }
        .btn-primary {
            background-color: var(--color-primary);
            color: white;
            box-shadow: 0 8px 20px rgba(230, 81, 0, 0.25);
        }
        .btn-primary:hover {
            background-color: #CC4800;
            transform: translateY(-2px);
            box-shadow: 0 12px 25px rgba(230, 81, 0, 0.35);
        }
        .btn-outline {
            background-color: transparent;
            color: var(--color-secondary);
            border-color: var(--color-border);
        }
        .btn-outline:hover {
            border-color: var(--color-secondary);
            background-color: var(--color-surface);
        }

        /* Glassmorphism Header */
        .site-header {
            position: sticky;
            top: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-bottom: 1px solid var(--color-border);
            z-index: 100;
            padding: 1rem 0;
            transition: var(--transition);
        }
        .site-header.scrolled {
            padding: 0.5rem 0;
            box-shadow: var(--shadow-sm);
        }
        .site-header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            font-size: var(--step-2);
            font-weight: 900;
            color: var(--color-primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .main-nav ul {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .main-nav > ul > li { position: relative; }
        .main-nav a {
            font-size: var(--step--1);
            font-weight: 600;
            color: var(--color-text-main);
            padding: 0.5rem;
        }
        .main-nav a:hover { color: var(--color-primary); }

        /* Dropdown */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            right: 0;
            background: var(--color-surface);
            min-width: 260px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--color-border);
            padding: 1rem;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: var(--transition);
        }
        .dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(15px); }
        .dropdown-menu li { margin-bottom: 0.5rem; }
        .dropdown-menu a { display: block; padding: 0.75rem 1rem; border-radius: var(--radius-sm); color: var(--color-text-muted); font-size: var(--step--1); font-weight: 500; }
        .dropdown-menu a:hover { background: var(--color-bg); color: var(--color-primary); }

        /* Shared Section Styles */
        .section-padding { padding-block: 6rem; }
        .section-padding-sm { padding-block: 4rem; }
        .section-header { text-align: center; margin-bottom: 4rem; }
        .section-title { font-size: var(--step-4); color: var(--color-secondary); margin-bottom: 1rem; }
        .section-subtitle { color: var(--color-text-muted); font-size: var(--step-0); max-width: 600px; margin-inline: auto; }
        .bg-alt { background-color: var(--color-bg-alt); }

        /* Hero Section */
        .hero {
            padding-top: 5rem;
            padding-bottom: 6rem;
            background: radial-gradient(circle at top right, var(--color-primary-light) 0%, var(--color-bg) 60%);
            overflow: hidden;
            position: relative;
        }
        .hero-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 4rem;
            align-items: center;
        }
        @media (min-width: 1024px) {
            .hero-grid { grid-template-columns: 1fr 1fr; }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            padding: 0.5rem 1rem;
            background: white;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-full);
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--color-primary);
            margin-bottom: 1.5rem;
            box-shadow: var(--shadow-sm);
        }

        .hero-title { font-size: var(--step-5); color: var(--color-secondary); margin-bottom: 1.5rem; }
        .hero-title span {
            color: var(--color-primary);
            background: linear-gradient(120deg, var(--color-primary), #FF8A65);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc { font-size: var(--step-0); color: var(--color-text-muted); margin-bottom: 2.5rem; max-width: 500px; }
        .hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

        /* Floating Elements in Hero */
        .hero-visual { position: relative; }
        .hero-visual-inner {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            z-index: 1;
        }
        .hero-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
        
        .floating-card {
            position: absolute;
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(8px);
            padding: 1rem 1.5rem;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 2;
            border: 1px solid rgba(255,255,255,0.5);
            animation: float 6s ease-in-out infinite;
        }
        .fc-1 { bottom: -20px; right: -20px; animation-delay: 0s; }
        .fc-2 { top: 40px; left: -30px; animation-delay: -3s; }
        .fc-icon { width: 40px; height: 40px; background: var(--color-primary-light); color: var(--color-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
        .fc-text h4 { font-size: 0.9rem; color: var(--color-secondary); margin: 0; }
        .fc-text p { font-size: 0.75rem; color: var(--color-text-muted); margin: 0; }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        /* Brands Marquee */
        .brands { padding-block: 3rem; border-bottom: 1px solid var(--color-border); background: white; overflow: hidden; }
        .brands-title { text-align: center; font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 1.5rem; text-transform: uppercase; letter-spacing: 1px;}
        .marquee-container { display: flex; overflow: hidden; width: 100%; position: relative; }
        .marquee-container::before, .marquee-container::after {
            content: ""; position: absolute; top: 0; width: 100px; height: 100%; z-index: 2;
        }
        .marquee-container::before { left: 0; background: linear-gradient(to right, white, transparent); }
        .marquee-container::after { right: 0; background: linear-gradient(to left, white, transparent); }
        .marquee-track {
            display: flex;
            gap: 4rem;
            animation: scroll 30s linear infinite;
            align-items: center;
            padding-inline: 2rem;
        }
        .marquee-track img { height: 40px; filter: grayscale(100%) opacity(0.6); transition: var(--transition); }
        .marquee-track img:hover { filter: grayscale(0%) opacity(1); }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(50%); /* Positive for RTL */ }
        }

        /* Features Section */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }
        .feature-box {
            text-align: center;
            padding: 2.5rem 1.5rem;
            background: white;
            border-radius: var(--radius-lg);
            border: 1px solid var(--color-border);
            transition: var(--transition);
        }
        .feature-box:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }
        .feature-icon {
            width: 70px; height: 70px; margin: 0 auto 1.5rem;
            background: var(--color-bg-alt); border-radius: 20px;
            display: flex; align-items: center; justify-content: center;
            color: var(--color-primary);
        }
        .feature-box h3 { font-size: var(--step-1); margin-bottom: 0.75rem; color: var(--color-secondary); }
        .feature-box p { font-size: var(--step--1); color: var(--color-text-muted); }

        /* Bento Grid (Products) - Enhanced */
        .bento-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        @media (min-width: 768px) {
            .bento-grid .card:nth-child(1) { grid-column: span 2; }
            .bento-grid .card:nth-child(4) { grid-column: span 2; }
        }

        .card {
            background: var(--color-surface);
            border-radius: var(--radius-lg);
            padding: 2.5rem;
            border: 1px solid var(--color-border);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }
        .card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--color-primary-light); }
        .card::before {
            content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 100%;
            background: radial-gradient(circle at top right, var(--color-primary-light) 0%, transparent 60%);
            opacity: 0; transition: var(--transition); z-index: 0;
        }
        .card:hover::before { opacity: 0.4; }
        
        .card-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column;}
        .card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
        .card-icon { width: 56px; height: 56px; background: var(--color-bg); border-radius: 16px; display: flex; align-items: center; justify-content: center; color: var(--color-primary); }
        .card-title { font-size: var(--step-2); color: var(--color-secondary); margin: 0;}
        .product-list { margin-top: 1rem; flex-grow: 1;}
        .product-list li { display: flex; align-items: center; gap: 0.5rem; color: var(--color-text-muted); font-size: var(--step--1); margin-bottom: 0.75rem; }
        .product-list li::before { content: ''; display: block; width: 6px; height: 6px; background: var(--color-primary); border-radius: 50%; }
        .card-link { margin-top: 1.5rem; color: var(--color-primary); font-weight: bold; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 0.3rem;}
        .card-link:hover { gap: 0.6rem; }

        /* Stats Section */
        .stats-section {
            background-color: var(--color-secondary);
            color: white;
            padding-block: 5rem;
            position: relative;
            overflow: hidden;
        }
        .stats-section::before {
            content: ''; position: absolute; inset: 0; opacity: 0.1;
            background-image: radial-gradient(var(--color-primary) 1px, transparent 1px); background-size: 30px 30px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            position: relative;
            z-index: 1;
        }
        @media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
        .stat-item { text-align: center; }
        .stat-number { font-size: var(--step-5); font-weight: 900; color: var(--color-primary); margin-bottom: 0.5rem; line-height: 1; }
        .stat-label { font-size: var(--step--1); color: #94A3B8; }

        /* FAQ Accordion */
        .faq-container { max-width: 800px; margin-inline: auto; }
        .faq-item {
            background: white; border: 1px solid var(--color-border); border-radius: var(--radius-md);
            margin-bottom: 1rem; overflow: hidden; transition: var(--transition);
        }
        .faq-item.active { border-color: var(--color-primary); box-shadow: var(--shadow-sm); }
        .faq-question {
            width: 100%; text-align: right; padding: 1.5rem; background: none; border: none;
            font-size: var(--step-0); font-weight: 700; color: var(--color-secondary);
            cursor: pointer; display: flex; justify-content: space-between; align-items: center;
            font-family: inherit;
        }
        .faq-icon { transition: transform 0.3s ease; color: var(--color-primary); }
        .faq-item.active .faq-icon { transform: rotate(180deg); }
        .faq-answer {
            padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: all 0.3s ease;
            color: var(--color-text-muted); font-size: var(--step--1);
        }
        .faq-item.active .faq-answer { padding: 0 1.5rem 1.5rem; max-height: 200px; }

        /* CTA Banner */
        .cta-banner {
            margin-block: 4rem;
        }
        .cta-inner {
            background: linear-gradient(135deg, var(--color-primary) 0%, #B84000 100%);
            border-radius: var(--radius-lg);
            padding: 4rem 2rem;
            text-align: center;
            color: white;
            box-shadow: 0 20px 40px rgba(230, 81, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        .cta-inner::before {
            content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
        }
        .cta-title { font-size: var(--step-3); margin-bottom: 1rem; position: relative; z-index: 1;}
        .cta-desc { font-size: var(--step-0); opacity: 0.9; margin-bottom: 2rem; max-width: 600px; margin-inline: auto; position: relative; z-index: 1;}
        .cta-inner .btn { background: white; color: var(--color-primary); position: relative; z-index: 1;}
        .cta-inner .btn:hover { background: var(--color-bg); transform: scale(1.05); }

        /* Footer */
        .site-footer {
            background-color: var(--color-secondary-light);
            color: var(--color-surface);
            padding-block: 5rem 2rem;
            content-visibility: auto; /* Performance optimization */
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }
        .footer-col h3 { font-size: var(--step-1); margin-bottom: 1.5rem; color: white; }
        .footer-col p, .footer-col li, .footer-col a {
            color: #94A3B8; font-size: var(--step--1); margin-bottom: 0.75rem;
        }
        .footer-col a:hover { color: white; }
        .footer-bottom {
            text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: #64748B; font-size: 0.85rem;
        }

        /* Scroll Animation Classes */
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
        .reveal.active { opacity: 1; transform: translateY(0); }
        .delay-1 { transition-delay: 0.1s; }
        .delay-2 { transition-delay: 0.2s; }/* End custom CSS */