﻿/* * ==========================================
         * VARIABLES & RESET
         * ==========================================
         */
        :root {
            /* Palette */
            --orange-primary: #FF6B35;
            --orange-glow: rgba(255, 107, 53, 0.3);
            --orange-dark: #E85D2A;
            --dark-bg: #f8fafc;
            --dark-card: #ffffff;
            --text-white: #0f172a;
            --text-gray: #475569;
            
            /* Glassmorphism */
            --glass-bg: rgba(255, 255, 255, 0.72);
            --glass-border: rgba(15, 23, 42, 0.08);
            --glass-blur: blur(16px);
            --glass-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);

            /* Typography */
            --font-main: 'Vazirmatn', sans-serif;
            
            /* Spacing */
            --container-padding: 5%;
            --section-spacing: 120px;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--dark-bg);
            color: var(--text-white);
            overflow-x: hidden;
            line-height: 1.8;
            position: relative;
        }

        a:focus-visible,
        button:focus-visible {
            outline: 2px solid var(--orange-primary);
            outline-offset: 3px;
        }

        .content-section {
            content-visibility: auto;
            contain-intrinsic-size: 1px 760px;
        }

        /* اسکرول بار سفارشی */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: var(--dark-bg);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--orange-primary);
            border-radius: 4px;
        }

        /* * ==========================================
         * BACKGROUND FX (Moving Blobs)
         * ==========================================
         */
        .bg-glow {
            position: fixed;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
            border-radius: 50%;
            z-index: -1;
            filter: blur(80px);
            animation: moveBlob 20s infinite alternate;
        }
        .blob-1 { top: -100px; right: -200px; }
        .blob-2 { bottom: -100px; left: -200px; background: radial-gradient(circle, rgba(14, 165, 233, 0.16) 0%, transparent 70%); animation-duration: 25s; }

        @keyframes moveBlob {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(50px, 50px) scale(1.1); }
        }

        /* * ==========================================
         * PRELOADER
         * ==========================================
         */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--dark-bg);
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            transition: opacity 0.5s ease;
        }

        .loader-logo {
            width: 180px;
            height: auto;
            object-fit: contain;
            animation: pulseChair 1.5s infinite;
        }

        .loader-text {
            margin-top: 15px;
            font-weight: bold;
            letter-spacing: 2px;
            color: var(--text-gray);
            opacity: 0.9;
        }

        @keyframes pulseChair {
            0% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.2); opacity: 0.5; }
            100% { transform: scale(1); opacity: 1; }
        }

        /* * ==========================================
         * GLASS NAVBAR
         * ==========================================
         */
        nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1200px;
            padding: 15px 30px;
            background: rgba(255, 255, 255, 0.78);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            border-radius: 100px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            transition: 0.3s;
        }

        nav.scrolled {
            background: rgba(255, 255, 255, 0.94);
            box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
            width: 95%;
            top: 10px;
        }

        .logo {
            color: var(--text-white);
            display: flex;
            align-items: center;
            gap: 0;
        }
        .logo-image {
            width: 86px;
            height: auto;
            object-fit: contain;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 28px;
            flex: 1;
            justify-content: space-between;
            margin-right: 20px;
        }
        .nav-links { display: flex; gap: 30px; }
        .nav-links a {
            text-decoration: none;
            color: var(--text-gray);
            font-weight: 500;
            transition: 0.3s;
            position: relative;
        }
        .nav-links a:hover { color: var(--text-white); }
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            right: 0;
            width: 0;
            height: 2px;
            background: var(--orange-primary);
            transition: 0.3s;
        }
        .nav-links a:hover::after { width: 100%; }

        .btn-nav {
            padding: 10px 24px;
            background: var(--orange-primary);
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px var(--orange-glow);
            transition: 0.3s;
        }
        .btn-nav:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px var(--orange-glow);
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 1px solid var(--glass-border);
            border-radius: 12px;
            background: rgba(255, 255, 255, 0.78);
            color: var(--text-white);
            cursor: pointer;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: 0.3s;
        }
        .menu-toggle:hover { background: rgba(255, 255, 255, 1); }

        /* * ==========================================
         * HERO SECTION
         * ==========================================
         */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 160px var(--container-padding) 80px;
            position: relative;
            overflow: hidden;
        }

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

        .badge-new {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 6px 16px;
            background: rgba(255, 107, 53, 0.1);
            border: 1px solid var(--orange-glow);
            color: var(--orange-primary);
            border-radius: 50px;
            font-size: 0.85rem;
            margin-bottom: 25px;
            backdrop-filter: blur(5px);
        }

        .hero h1 {
            font-size: clamp(2rem, 5vw, 4rem);
            line-height: 1.2;
            margin-bottom: 20px;
            font-weight: 800;
        }
        .hero h1 span {
            background: linear-gradient(135deg, #0f172a 0%, #475569 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero h1 .highlight {
            background: linear-gradient(135deg, var(--orange-primary) 0%, #FF9F1C 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero p {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 550px;
            margin-bottom: 40px;
        }

        .cta-group {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn-primary {
            padding: 16px 36px;
            background: var(--orange-primary);
            color: white;
            border-radius: 16px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: 0.3s;
            position: relative;
            overflow: hidden;
        }
        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0; left: -100%; width: 100%; height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        .btn-primary:hover::before { left: 100%; }
        .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px var(--orange-glow); }

        .btn-glass {
            padding: 16px 36px;
            background: rgba(255, 255, 255, 0.78);
            border: 1px solid var(--glass-border);
            color: var(--text-white);
            border-radius: 16px;
            text-decoration: none;
            font-weight: bold;
            backdrop-filter: blur(10px);
            transition: 0.3s;
        }
        .btn-glass:hover { background: #ffffff; border-color: rgba(15, 23, 42, 0.22); }

        /* Hero Visual (CSS Only Illustrations) */
        .hero-visual {
            flex: 1;
            position: relative;
            height: 600px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .glass-card {
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: var(--glass-blur);
            -webkit-backdrop-filter: var(--glass-blur);
            border: 1px solid var(--glass-border);
            padding: 25px;
            border-radius: 24px;
            box-shadow: var(--glass-shadow);
            animation: float 6s ease-in-out infinite;
        }

        .card-main {
            width: 320px;
            height: 200px;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .card-secondary {
            width: 260px;
            height: 150px;
            top: 10%;
            right: 5%;
            z-index: 1;
            animation-delay: -2s;
            opacity: 0.8;
            transform: rotate(5deg);
        }
        .card-tertiary {
            width: 200px;
            bottom: 15%;
            left: 10%;
            z-index: 3;
            animation-delay: -4s;
            background: rgba(255, 255, 255, 0.9);
            border: 1px solid var(--orange-primary);
        }

        .ui-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }
        .ui-dot { width: 12px; height: 12px; border-radius: 50%; background: #EF4444; }
        .ui-dot.green { background: #10B981; }
        .ui-line { height: 8px; background: rgba(15, 23, 42, 0.12); border-radius: 4px; margin-bottom: 8px; }
        .ui-line.w-50 { width: 50%; }
        .ui-line.w-80 { width: 80%; }
        .ui-meta { font-size: 0.8rem; font-weight: bold; }
        .ui-card-title { font-size: 1.2rem; margin-bottom: 5px; }
        .ui-card-subtitle { font-size: 0.9rem; color: #475569; }
        .ui-sync-row {
            background: rgba(15, 23, 42, 0.06);
            padding: 10px;
            border-radius: 12px;
            display: flex;
            gap: 10px;
            align-items: center;
        }
        .ui-sync-icon { color: var(--orange-primary); }
        .ui-sync-text { font-size: 0.8rem; }
        .ui-warning { font-size: 0.8rem; color: #EF4444; }
        .ui-note { margin-top: 15px; font-size: 0.8rem; opacity: 0.7; }
        .ui-center { text-align: center; }
        .ui-score { font-size: 2rem; font-weight: bold; color: var(--orange-primary); }
        .ui-score-label { font-size: 0.8rem; }

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

        /* * ==========================================
         * MARQUEE (Scrolling Text)
         * ==========================================
         */
        .marquee-container {
            width: 100%;
            overflow: hidden;
            background: var(--glass-bg);
            border-top: 1px solid var(--glass-border);
            border-bottom: 1px solid var(--glass-border);
            padding: 20px 0;
            margin-top: 50px;
            transform: none;
        }
        .marquee-content {
            display: flex;
            gap: 50px;
            white-space: nowrap;
            animation: scrollText 20s linear infinite;
        }
        .marquee-item {
            font-size: 1.5rem;
            font-weight: 900;
            color: rgba(15, 23, 42, 0.2);
            text-transform: uppercase;
        }
        .marquee-item.highlight { color: var(--orange-primary); opacity: 0.9; }

        @keyframes scrollText {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        /* * ==========================================
         * VALUE PROPOSITION (Story)
         * ==========================================
         */
        .story-section {
            padding: var(--section-spacing) var(--container-padding);
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .section-header h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            margin-bottom: 20px;
        }
        .section-header p { color: var(--text-gray); font-size: 1.1rem; }

        .story-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-box {
            background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
            border: 1px solid var(--glass-border);
            padding: 40px;
            border-radius: 30px;
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }

        .feature-box:hover {
            border-color: var(--orange-primary);
            transform: translateY(-10px);
            background: #ffffff;
        }

        .icon-large {
            font-size: 3rem;
            color: var(--orange-primary);
            margin-bottom: 30px;
            background: rgba(255, 107, 53, 0.1);
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 20px;
            transition: 0.4s;
        }

        .feature-box:hover .icon-large {
            background: var(--orange-primary);
            color: white;
            transform: rotateY(180deg);
        }

        .feature-box h3 { font-size: 1.5rem; margin-bottom: 15px; }
        .feature-box p { color: var(--text-gray); }

        /* * ==========================================
         * MOCKUP UI (Interactive CSS Only)
         * ==========================================
         */
        .mockup-section {
            padding: var(--section-spacing) var(--container-padding);
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .mockup-text { flex: 1; }
        .mockup-title { font-size: clamp(1.9rem, 3.4vw, 2.5rem); margin-bottom: 20px; }
        .mockup-desc { color: var(--text-gray); margin-bottom: 30px; }
        .mockup-points { list-style: none; margin-bottom: 30px; }
        .mockup-points li { margin-bottom: 15px; }
        .mockup-check { color: var(--orange-primary); margin-left: 10px; }
        .app-title-group { display: flex; align-items: center; gap: 10px; }
        .app-title { font-weight: bold; font-size: 0.9rem; }
        
        .mockup-container {
            flex: 1.5;
            background: #1E293B;
            border-radius: 20px;
            padding: 20px;
            border: 8px solid #334155;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
            position: relative;
        }

        /* ساختار داخلی ماک‌آپ */
        .app-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        .app-logo { width: 30px; height: 30px; background: var(--orange-primary); border-radius: 8px; }
        .app-user { width: 30px; height: 30px; background: #64748B; border-radius: 50%; }

        .app-grid {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 15px;
        }
        .time-col div { height: 60px; color: #64748B; font-size: 0.8rem; text-align: center; padding-top: 10px; }
        
        .room-col { display: grid; grid-template-rows: repeat(4, 60px); gap: 10px; position: relative; }
        
        .meeting-block {
            background: rgba(255, 107, 53, 0.2);
            border-left: 3px solid var(--orange-primary);
            border-radius: 8px;
            padding: 10px;
            font-size: 0.8rem;
            color: white;
            position: absolute;
            width: 90%;
            transition: 0.3s;
            cursor: pointer;
        }
        .meeting-block:hover { transform: scale(1.02); background: rgba(255, 107, 53, 0.4); }
        
        .m-1 { top: 0; height: 110px; } /* جلسه طولانی */
        .m-2 { top: 130px; height: 50px; background: rgba(16, 185, 129, 0.2); border-color: #10B981; } /* جلسه سبز */

        .quick-add {
            position: absolute;
            top: 190px;
            height: 50px;
            width: 90%;
            border: 2px dashed rgba(255,255,255,0.2);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: #aaa;
        }

        /* * ==========================================
         * STATS SECTION
         * ==========================================
         */
        .stats-bar {
            background: linear-gradient(90deg, #ffffff 0%, #f1f5f9 100%);
            padding: 60px var(--container-padding);
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            border-top: 1px solid rgba(15, 23, 42, 0.08);
            border-bottom: 1px solid rgba(15, 23, 42, 0.08);
        }
        .stat-item { text-align: center; margin: 20px; }
        .stat-num { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 900; color: var(--orange-primary); display: block; }
        .stat-desc { color: var(--text-gray); font-size: 1.1rem; }

        /* * ==========================================
         * PRICING
         * ==========================================
         */
        .pricing-section {
            padding: var(--section-spacing) var(--container-padding);
        }
        
        .pricing-grid {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .price-card {
            background: var(--dark-card);
            padding: 50px 30px;
            border-radius: 30px;
            width: min(100%, 350px);
            border: 1px solid rgba(15, 23, 42, 0.08);
            text-align: center;
            position: relative;
            transition: 0.4s;
        }

        .price-card.featured {
            background: linear-gradient(180deg, #fff7ed 0%, #fffbeb 100%);
            border: 2px solid var(--orange-primary);
            transform: scale(1.05);
            z-index: 2;
        }
        .plan-badge {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--orange-primary);
            color: white;
            padding: 5px;
            font-size: 0.8rem;
            border-radius: 28px 28px 0 0;
        }
        .plan-title-offset { margin-top: 15px; }

        .price-card:hover { transform: translateY(-10px) scale(1.02); }
        .price-card.featured:hover { transform: translateY(-10px) scale(1.08); }

        .price-tag { font-size: 3rem; font-weight: bold; margin: 20px 0; color: var(--text-white); }
        .price-tag span { font-size: 1rem; color: var(--text-gray); font-weight: normal; }

        .features-list { list-style: none; margin: 30px 0; text-align: right; padding-right: 20px; }
        .features-list li { margin-bottom: 15px; color: var(--text-gray); }
        .features-list i { color: var(--orange-primary); margin-left: 10px; }
        .btn-block {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* * ==========================================
         * FAQ SECTION (Accordion)
         * ==========================================
         */
        .faq-section {
            padding: 80px var(--container-padding);
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion-item {
            background: #ffffff;
            border: 1px solid rgba(15, 23, 42, 0.08);
            margin-bottom: 15px;
            border-radius: 16px;
            overflow: hidden;
            transition: 0.3s;
        }
        
        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: bold;
        }
        
        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease-out;
            padding: 0 20px;
            color: var(--text-gray);
        }

        .accordion-item.active { background: rgba(255, 107, 53, 0.05); border-color: var(--orange-primary); }
        .accordion-item.active .accordion-content { max-height: 200px; padding-bottom: 20px; }
        .accordion-item.active i { transform: rotate(180deg); }

        /* * ==========================================
         * FINAL CTA
         * ==========================================
         */
        .final-cta {
            margin: 100px var(--container-padding);
            background: linear-gradient(135deg, var(--orange-primary) 0%, #FF9F1C 100%);
            border-radius: 40px;
            padding: 80px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .final-cta h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 30px; color: white; position: relative; z-index: 2;}
        .final-cta p { color: rgba(255,255,255,0.9); font-size: clamp(1rem, 2.5vw, 1.2rem); margin-bottom: 40px; position: relative; z-index: 2;}
        
        .btn-white {
            background: white;
            color: var(--orange-primary);
            padding: 18px 45px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 900;
            font-size: 1.2rem;
            display: inline-block;
            transition: 0.3s;
            position: relative;
            z-index: 2;
        }
        .btn-white:hover { transform: scale(1.05); box-shadow: 0 20px 40px rgba(0,0,0,0.2); }

        .final-cta::after {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
        }

        /* * ==========================================
         * FOOTER
         * ==========================================
         */
        footer {
            background: #ffffff;
            padding: 80px 5% 40px;
            color: var(--text-gray);
            border-top: 1px solid rgba(15, 23, 42, 0.08);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-logo { width: 220px; height: auto; object-fit: contain; display: block; }
        .footer-brand h3 { color: var(--text-white); font-size: 1.5rem; margin-bottom: 20px; }
        .footer-links h4 { color: var(--text-white); margin-bottom: 20px; }
        .footer-links ul { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { text-decoration: none; color: var(--text-gray); transition: 0.3s; }
        .footer-links a:hover { color: var(--orange-primary); }

        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(15, 23, 42, 0.08);
            padding-top: 30px;
            font-size: 0.9rem;
        }

        @media (prefers-reduced-motion: reduce) {
            html { scroll-behavior: auto; }
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
            .bg-glow,
            .glass-card,
            .marquee-content {
                animation: none !important;
            }
        }

        @media (max-width: 1200px) {
            :root {
                --section-spacing: 100px;
            }
            .hero-visual { height: 500px; }
        }

        @media (max-width: 992px) {
            :root {
                --container-padding: 6%;
                --section-spacing: 85px;
            }

            nav {
                width: calc(100% - 24px);
                top: 12px;
                padding: 12px 16px;
                border-radius: 22px;
            }
            nav.scrolled {
                width: calc(100% - 24px);
                top: 8px;
            }

            .logo {
                font-size: 1.25rem;
                gap: 8px;
            }
            .menu-toggle { display: inline-flex; }

            .nav-menu {
                position: absolute;
                top: calc(100% + 12px);
                right: 0;
                width: 100%;
                padding: 16px;
                border-radius: 18px;
                border: 1px solid var(--glass-border);
                background: rgba(255, 255, 255, 0.97);
                backdrop-filter: var(--glass-blur);
                -webkit-backdrop-filter: var(--glass-blur);
                flex-direction: column;
                align-items: stretch;
                gap: 14px;
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transform: translateY(-10px);
                transition: 0.25s ease;
            }

            nav.menu-open .nav-menu {
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
                transform: translateY(0);
            }

            .nav-links {
                flex-direction: column;
                gap: 10px;
            }
            .nav-links a {
                display: block;
                padding: 10px 12px;
                border-radius: 10px;
                background: rgba(15, 23, 42, 0.04);
            }
            .nav-links a::after { display: none; }

            .btn-nav {
                display: block;
                width: 100%;
                text-align: center;
                padding: 12px 20px;
            }

            .hero {
                flex-direction: column;
                text-align: center;
                min-height: auto;
                padding: 130px var(--container-padding) 40px;
            }
            .hero-content,
            .hero p { max-width: 100%; }
            .hero p { margin-bottom: 30px; }
            .cta-group { justify-content: center; }
            .btn-primary,
            .btn-glass {
                width: 100%;
                justify-content: center;
                font-size: 1rem;
                padding: 14px 24px;
            }

            .hero-visual {
                width: 100%;
                margin-top: 35px;
                height: 360px;
            }
            .card-main {
                width: min(100%, 320px);
                min-height: 190px;
                height: auto;
            }
            .card-secondary {
                width: 230px;
                right: 2%;
            }
            .card-tertiary {
                left: 4%;
                bottom: 10%;
            }

            .marquee-container {
                transform: none;
                margin-top: 25px;
            }

            .section-header { margin-bottom: 50px; }
            .story-grid {
                grid-template-columns: 1fr;
                gap: 22px;
            }
            .feature-box { padding: 26px; }
            .mockup-section {
                flex-direction: column;
                gap: 32px;
            }
            .mockup-container { width: 100%; }

            .stats-bar {
                padding: 40px var(--container-padding);
                justify-content: center;
            }
            .stat-item {
                margin: 12px 10px;
                flex: 1 1 140px;
            }

            .pricing-grid { gap: 20px; }
            .price-card {
                width: 100%;
                max-width: 500px;
                padding: 38px 22px;
            }
            .price-card.featured { transform: none; }
            .price-card:hover,
            .price-card.featured:hover { transform: none; }

            .faq-section { padding: 60px var(--container-padding); }
            .final-cta {
                margin: 70px var(--container-padding);
                border-radius: 28px;
                padding: 56px 24px;
            }
            .btn-white {
                width: 100%;
                max-width: 320px;
                padding: 15px 20px;
                font-size: 1rem;
            }

            footer { padding: 64px var(--container-padding) 32px; }
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
                margin-bottom: 40px;
            }
        }

        @media (max-width: 768px) {
            :root {
                --container-padding: 18px;
                --section-spacing: 72px;
            }

            .bg-glow {
                width: 340px;
                height: 340px;
                filter: blur(60px);
            }

            .badge-new { font-size: 0.75rem; }
            .hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
            .hero p { font-size: 1rem; }

            .hero-visual { height: 300px; }
            .card-main {
                padding: 20px;
                border-radius: 18px;
            }
            .card-secondary { display: none; }
            .card-tertiary {
                width: 150px;
                left: 0;
                bottom: 0;
            }

            .marquee-item { font-size: 1rem; }

            .section-header p { font-size: 1rem; }
            .icon-large {
                width: 66px;
                height: 66px;
                font-size: 2rem;
                margin-bottom: 20px;
            }

            .mockup-container {
                border-width: 5px;
                padding: 14px;
            }
            .app-grid {
                grid-template-columns: 58px 1fr;
                gap: 10px;
            }
            .time-col div {
                height: 52px;
                font-size: 0.72rem;
                padding-top: 8px;
            }
            .room-col {
                grid-template-rows: repeat(4, 52px);
                gap: 8px;
            }
            .meeting-block {
                width: 95%;
                font-size: 0.72rem;
                padding: 8px;
            }
            .m-1 { height: 94px; }
            .m-2 {
                top: 112px;
                height: 44px;
            }
            .quick-add {
                width: 95%;
                top: 166px;
                height: 44px;
                font-size: 0.72rem;
            }

            .price-tag { font-size: 2.2rem; }
            .features-list { padding-right: 0; }
            .footer-content { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .logo {
                gap: 7px;
            }
            .logo-image {
                width: 72px;
                height: auto;
            }
            .menu-toggle {
                width: 40px;
                height: 40px;
            }

            .hero h1 { font-size: 1.8rem; }
            .hero p { font-size: 0.95rem; }
            .stat-item { flex-basis: 100%; }

            .accordion-header {
                font-size: 0.95rem;
                line-height: 1.7;
            }
            .final-cta { padding: 46px 18px; }
        }
