@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Tajawal:wght@300;400;500;700;800;900&family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root { --primary: #2563EB; --primary-dark: #1D4ED8; --primary-light: #3B82F6; --accent: #60A5FA; --bg-dark: #0F172A; --bg-darker: #0B1120; --bg-card: #111827; --text-white: #FFFFFF; --text-light: #F8FAFC; --text-muted: #94A3B8; --text-dim: #64748B; --border-color: rgba(255, 255, 255, 0.08); --border-light: rgba(255, 255, 255, 0.04); --gradient-primary: linear-gradient(135deg, #2563EB, #3B82F6); --glass-bg: rgba(17, 24, 39, 0.7); --glass-border: rgba(255, 255, 255, 0.08); --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.5); --shadow-xl: 0 35px 60px -15px rgba(0, 0, 0, 0.6); --shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15); --radius-sm: 8px; --radius-md: 12px; --radius-lg: 16px; --radius-xl: 24px; --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
::-webkit-scrollbar { width: 8px; } ::-webkit-scrollbar-track { background: var(--bg-dark); } ::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
html { scroll-behavior: smooth; } body { font-family: 'Cairo', 'Tajawal', 'IBM Plex Sans Arabic', -apple-system, sans-serif; background: var(--bg-darker); color: var(--text-light); direction: rtl; text-align: right; line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; transition: var(--transition); } img { max-width: 100%; } ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 28px; border-radius: var(--radius-md); font-size: 1rem; font-weight: 600; cursor: pointer; border: none; transition: var(--transition); font-family: inherit; justify-content: center; white-space: nowrap; }
.btn-primary { background: var(--gradient-primary); color: var(--text-white); box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4); } .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 99, 235, 0.5); }
.btn-secondary { background: rgba(37, 99, 235, 0.1); color: var(--primary-light); border: 1px solid rgba(37, 99, 235, 0.3); } .btn-secondary:hover { background: rgba(37, 99, 235, 0.2); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text-muted); border: 1px solid var(--border-color); } .btn-ghost:hover { color: var(--text-white); border-color: var(--primary); background: rgba(37, 99, 235, 0.1); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; border-radius: var(--radius-lg); } .btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); background: transparent; }
.header.scrolled { background: rgba(11, 17, 32, 0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border-color); padding: 12px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--text-white); } .logo span { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 32px; } .nav-links a { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; position: relative; } .nav-links a:hover { color: var(--text-white); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; right: 0; width: 0; height: 2px; background: var(--gradient-primary); transition: var(--transition); } .nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 12px; } .menu-toggle { display: none; background: none; border: none; color: var(--text-white); font-size: 1.5rem; cursor: pointer; }
.mobile-menu { display: none; position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: var(--bg-card); padding: 80px 30px 30px; transition: right 0.3s ease; z-index: 999; overflow-y: auto; border-left: 1px solid var(--border-color); }
.mobile-menu.active { right: 0; } .mobile-menu a { display: block; padding: 14px 0; color: var(--text-muted); font-size: 1.1rem; border-bottom: 1px solid var(--border-light); } .mobile-menu .btn { width: 100%; margin-top: 20px; }
.mobile-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.6); z-index: 998; opacity: 0; transition: opacity 0.3s ease; } .mobile-overlay.active { opacity: 1; }
.mobile-close { position: absolute; top: 20px; left: 20px; background: none; border: none; color: var(--text-white); font-size: 1.5rem; cursor: pointer; }
.hero { min-height: 100vh; display: flex; align-items: center; padding: 140px 0 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(37, 99, 235, 0.08), transparent 70%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -30%; left: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(59, 130, 246, 0.06), transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; } .hero-content { position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.2); border-radius: 50px; font-size: 0.85rem; color: var(--primary-light); margin-bottom: 24px; }
.hero h1 { font-size: 3rem; font-weight: 800; line-height: 1.2; margin-bottom: 20px; color: var(--text-white); } .hero h1 .highlight { background: var(--gradient-primary); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 32px; line-height: 1.8; max-width: 540px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.hero-trust { display: flex; align-items: center; gap: 8px; color: var(--text-dim); font-size: 0.9rem; } .hero-trust svg { width: 16px; height: 16px; color: #22C55E; }
.hero-visual { position: relative; z-index: 2; }
.dashboard-preview { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 24px; box-shadow: var(--shadow-xl); position: relative; overflow: hidden; }
.dashboard-preview::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); }
.dashboard-header { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.dashboard-dot { width: 10px; height: 10px; border-radius: 50%; } .dashboard-dot.red { background: #EF4444; } .dashboard-dot.yellow { background: #EAB308; } .dashboard-dot.green { background: #22C55E; }
.dashboard-title { margin-right: auto; font-size: 0.85rem; color: var(--text-dim); }
.dashboard-body { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dash-card { background: rgba(15, 23, 42, 0.8); border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 16px; }
.dash-card-title { font-size: 0.75rem; color: var(--text-dim); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.dash-card-value { font-size: 1.5rem; font-weight: 700; color: var(--text-white); margin-bottom: 4px; } .dash-card-desc { font-size: 0.8rem; color: var(--text-muted); }
.dash-list { display: flex; flex-direction: column; gap: 8px; }
.dash-list-item { display: flex; align-items: center; gap: 10px; padding: 10px; background: rgba(15, 23, 42, 0.5); border-radius: var(--radius-sm); border: 1px solid var(--border-light); }
.dash-list-icon { width: 32px; height: 32px; background: rgba(37, 99, 235, 0.15); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.dash-list-text { font-size: 0.8rem; color: var(--text-muted); } .dash-list-text strong { color: var(--text-white); display: block; font-size: 0.85rem; }
.floating-card { position: absolute; background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--glass-border); border-radius: var(--radius-md); padding: 12px 16px; box-shadow: var(--shadow-lg); animation: float 3s ease-in-out infinite; }
.floating-card-1 { top: 20%; right: -30px; } .floating-card-2 { bottom: 15%; left: -20px; animation-delay: 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-10px); } }
.section { padding: 100px 0; position: relative; } .section-dark { background: var(--bg-dark); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { display: inline-block; padding: 6px 16px; background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.2); border-radius: 50px; font-size: 0.8rem; color: var(--primary-light); margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }
.section-title { font-size: 2.5rem; font-weight: 800; color: var(--text-white); margin-bottom: 16px; line-height: 1.3; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; line-height: 1.8; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.feature-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 3px; background: var(--gradient-primary); opacity: 0; transition: var(--transition); }
.feature-card:hover { border-color: rgba(37, 99, 235, 0.3); transform: translateY(-4px); box-shadow: var(--shadow-glow); } .feature-card:hover::before { opacity: 1; }
.feature-icon { width: 56px; height: 56px; background: rgba(37, 99, 235, 0.1); border: 1px solid rgba(37, 99, 235, 0.2); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.5rem; }
.feature-card h3 { font-size: 1.15rem; font-weight: 700; color: var(--text-white); margin-bottom: 12px; } .feature-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 50px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to left, transparent, var(--primary), var(--primary), transparent); z-index: 0; }
.step-card { text-align: center; position: relative; z-index: 1; padding: 20px; }
.step-number { width: 60px; height: 60px; background: var(--gradient-primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; font-weight: 800; color: var(--text-white); margin: 0 auto 20px; box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4); }
.step-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-white); margin-bottom: 10px; } .step-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.showcase-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition); }
.showcase-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: rgba(37, 99, 235, 0.3); }
.showcase-img { width: 100%; height: 220px; background: linear-gradient(135deg, #1E293B, #0F172A); display: flex; align-items: center; justify-content: center; }
.showcase-img-inner { width: 90%; height: 85%; background: #0B1120; border-radius: var(--radius-md); border: 1px solid var(--border-color); display: flex; flex-direction: column; overflow: hidden; }
.showcase-img-top { height: 30px; background: var(--bg-card); border-bottom: 1px solid var(--border-light); display: flex; align-items: center; gap: 6px; padding: 0 12px; }
.showcase-img-top span { width: 8px; height: 8px; border-radius: 50%; } .showcase-img-top span:nth-child(1) { background: #EF4444; } .showcase-img-top span:nth-child(2) { background: #EAB308; } .showcase-img-top span:nth-child(3) { background: #22C55E; }
.showcase-img-body { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 8px; }
.showcase-row { display: flex; align-items: center; gap: 8px; padding: 8px; background: rgba(15, 23, 42, 0.6); border-radius: 6px; }
.showcase-row-icon { width: 28px; height: 28px; background: rgba(37, 99, 235, 0.2); border-radius: 6px; flex-shrink: 0; }
.showcase-row-text { flex: 1; height: 8px; background: rgba(148, 163, 184, 0.2); border-radius: 4px; }
.showcase-row-badge { padding: 2px 8px; background: rgba(34, 197, 94, 0.2); border-radius: 4px; font-size: 0.65rem; color: #22C55E; flex-shrink: 0; }
.showcase-caption { padding: 20px; } .showcase-caption h4 { font-size: 1rem; font-weight: 600; color: var(--text-white); margin-bottom: 4px; } .showcase-caption p { font-size: 0.85rem; color: var(--text-muted); }
.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.comparison-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 40px; }
.comparison-card.bad { border-color: rgba(239, 68, 68, 0.2); } .comparison-card.good { border-color: rgba(37, 99, 235, 0.3); box-shadow: var(--shadow-glow); }
.comparison-label { display: inline-block; padding: 6px 14px; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 24px; }
.bad .comparison-label { background: rgba(239, 68, 68, 0.1); color: #EF4444; } .good .comparison-label { background: rgba(37, 99, 235, 0.1); color: var(--primary-light); }
.comparison-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-white); margin-bottom: 20px; }
.comparison-list { display: flex; flex-direction: column; gap: 14px; } .comparison-list li { display: flex; align-items: center; gap: 12px; color: var(--text-muted); font-size: 0.95rem; }
.comparison-list .icon { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.75rem; }
.bad .comparison-list .icon { background: rgba(239, 68, 68, 0.15); color: #EF4444; } .good .comparison-list .icon { background: rgba(37, 99, 235, 0.15); color: var(--primary-light); }
.cta-section { padding: 100px 0; }
.cta-box { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 60px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 300px; height: 300px; background: radial-gradient(circle, rgba(37, 99, 235, 0.15), transparent 70%); pointer-events: none; }
.cta-box h2 { font-size: 2.5rem; font-weight: 800; color: var(--text-white); margin-bottom: 16px; } .cta-box p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 32px; }
.cta-box .note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 20px; color: var(--text-dim); font-size: 0.9rem; }
.download-section { background: var(--bg-dark); padding: 80px 0; }
.download-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 40px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.download-info h2 { font-size: 1.8rem; font-weight: 800; color: var(--text-white); margin-bottom: 12px; } .download-info p { color: var(--text-muted); margin-bottom: 20px; line-height: 1.8; }
.download-meta { display: flex; gap: 24px; flex-wrap: wrap; }
.download-meta-item { display: flex; flex-direction: column; gap: 4px; } .download-meta-item span { font-size: 0.8rem; color: var(--text-dim); } .download-meta-item strong { color: var(--text-white); font-size: 0.95rem; }
.download-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; } .download-actions .btn { width: 100%; min-width: 220px; }
.req-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.req-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 24px; text-align: center; transition: var(--transition); }
.req-item:hover { border-color: rgba(37, 99, 235, 0.3); }
.req-icon { width: 48px; height: 48px; background: rgba(37, 99, 235, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 1.2rem; }
.req-item h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-white); margin-bottom: 4px; } .req-item p { font-size: 0.85rem; color: var(--text-muted); }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); margin-bottom: 12px; overflow: hidden; transition: var(--transition); }
.faq-item:hover { border-color: rgba(37, 99, 235, 0.2); } .faq-item.active { border-color: rgba(37, 99, 235, 0.3); }
.faq-question { width: 100%; background: none; border: none; padding: 20px 24px; display: flex; align-items: center; justify-content: space-between; cursor: pointer; color: var(--text-white); font-size: 1rem; font-weight: 600; font-family: inherit; text-align: right; transition: var(--transition); }
.faq-question:hover { background: rgba(37, 99, 235, 0.05); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: rgba(37, 99, 235, 0.1); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--primary-light); transition: var(--transition); flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(180deg); background: var(--gradient-primary); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; } .faq-item.active .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.8; font-size: 0.95rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.contact-info h3 { font-size: 1.5rem; font-weight: 700; color: var(--text-white); margin-bottom: 16px; } .contact-info p { color: var(--text-muted); margin-bottom: 30px; line-height: 1.8; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method { display: flex; align-items: center; gap: 16px; padding: 20px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-md); transition: var(--transition); }
.contact-method:hover { border-color: rgba(37, 99, 235, 0.3); transform: translateX(4px); }
.contact-method-icon { width: 48px; height: 48px; background: rgba(37, 99, 235, 0.1); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-method-info h4 { font-size: 0.95rem; font-weight: 600; color: var(--text-white); margin-bottom: 4px; } .contact-method-info span { font-size: 0.9rem; color: var(--text-muted); direction: ltr; display: inline-block; }
.contact-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 40px; text-align: center; }
.contact-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-white); margin-bottom: 12px; } .contact-card p { color: var(--text-muted); margin-bottom: 24px; }
.footer { background: var(--bg-darker); border-top: 1px solid var(--border-color); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; } .footer-brand p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; max-width: 300px; }
.footer-col h4 { font-size: 1rem; font-weight: 700; color: var(--text-white); margin-bottom: 16px; } .footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); } .footer-col ul li a:hover { color: var(--primary-light); padding-right: 4px; }
.footer-bottom { border-top: 1px solid var(--border-color); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: var(--text-dim); font-size: 0.85rem; }
.footer-legal { display: flex; gap: 24px; } .footer-legal a { color: var(--text-muted); font-size: 0.85rem; } .footer-legal a:hover { color: var(--primary-light); }
.page-header { padding: 140px 0 60px; text-align: center; background: var(--bg-dark); border-bottom: 1px solid var(--border-color); }
.page-header h1 { font-size: 2.5rem; font-weight: 800; color: var(--text-white); margin-bottom: 12px; } .page-header p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.content-page { padding: 60px 0 100px; } .content-page .container { max-width: 800px; }
.content-page h2 { font-size: 1.5rem; font-weight: 700; color: var(--text-white); margin: 40px 0 16px; } .content-page h3 { font-size: 1.2rem; font-weight: 600; color: var(--text-white); margin: 30px 0 12px; }
.content-page p { color: var(--text-muted); line-height: 1.9; margin-bottom: 16px; }
.content-page ul { padding-right: 20px; margin-bottom: 16px; } .content-page ul li { color: var(--text-muted); margin-bottom: 8px; line-height: 1.8; position: relative; padding-right: 20px; }
.content-page ul li::before { content: '\2022'; position: absolute; right: 0; color: var(--primary); }
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; } .fade-in.visible { opacity: 1; transform: translateY(0); }
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; } .hero-subtitle { margin-left: auto; margin-right: auto; } .hero-cta { justify-content: center; } .hero-trust { justify-content: center; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); } .steps-grid::before { display: none; } .comparison-grid { grid-template-columns: 1fr; } .footer-grid { grid-template-columns: 1fr 1fr; } .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .nav-links, .nav-actions .btn-ghost { display: none; } .menu-toggle { display: block; } .mobile-menu { display: block; }
    .hero { padding: 120px 0 60px; min-height: auto; } .hero h1 { font-size: 2rem; } .hero-subtitle { font-size: 1rem; } .section-title { font-size: 1.8rem; } .section { padding: 60px 0; }
    .steps-grid { grid-template-columns: 1fr; } .showcase-grid { grid-template-columns: 1fr; } .cta-box { padding: 40px 24px; } .cta-box h2 { font-size: 1.8rem; }
    .download-card { grid-template-columns: 1fr; text-align: center; } .download-actions .btn { min-width: auto; } .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; text-align: center; }
    .floating-card { display: none; } .dashboard-body { grid-template-columns: 1fr; } .page-header h1 { font-size: 1.8rem; }
}
@media (max-width: 480px) { .hero h1 { font-size: 1.7rem; } .btn-lg { padding: 14px 24px; font-size: 1rem; } .feature-card, .comparison-card, .download-card { padding: 24px; } }