* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; max-width: 100%; overflow-x: hidden; }
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --gold: #ffd700;
    --bg-gradient: linear-gradient(135deg, #0a0e27 0%, #1a1f4d 50%, #0d1235 100%);
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-gradient);
    color: white;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    position: relative;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
.bg-particles { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; overflow: hidden; }
.particle { position: absolute; width: 4px; height: 4px; background: rgba(59, 130, 246, 0.3); border-radius: 50%; animation: float 15s infinite; }
@keyframes float { 0%, 100% { transform: translateY(100vh) rotate(0deg); opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; } }
.glow-orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.4; animation: pulse 8s ease-in-out infinite; }
.glow-orb-1 { width: 600px; height: 600px; background: radial-gradient(circle, #3b82f6 0%, transparent 70%); top: -200px; right: -200px; }
.glow-orb-2 { width: 500px; height: 500px; background: radial-gradient(circle, #8b5cf6 0%, transparent 70%); bottom: 20%; left: -150px; animation-delay: -4s; }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.4; } 50% { transform: scale(1.2); opacity: 0.6; } }
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 15px 60px; display: flex; justify-content: space-between; align-items: center; gap: 18px; background: rgba(10, 14, 39, 0.78); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease; }
.header.scrolled { padding: 10px 60px; background: rgba(10, 14, 39, 0.95); }
.logo { display: flex; align-items: center; gap: 15px; cursor: pointer; text-decoration: none; }
.logo-icon { width: 280px; height: auto; max-width: 100%; filter: drop-shadow(0 0 22px rgba(124, 58, 237, 0.28)); }
@keyframes logoGlow { 0%, 100% { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.3)); } 50% { filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.6)); } }
.logo-text { display: none; }
.nav { display: flex; gap: 26px; align-items: center; padding: 10px 18px; border-radius: 9999px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); box-shadow: inset 0 1px 0 rgba(255,255,255,0.04); }
.nav a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 15px; font-weight: 600; transition: all 0.3s; position: relative; cursor: pointer; }
.nav a::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: linear-gradient(90deg, #3b82f6, #8b5cf6); transition: width 0.3s; }
.nav a:hover, .nav a.active { color: white; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav-cta { background: linear-gradient(135deg, #3b82f6, #2563eb); padding: 12px 24px; border-radius: 50px; color: white !important; cursor: pointer; border: none; font-size: 15px; font-weight: 700; box-shadow: 0 12px 30px rgba(59, 130, 246, 0.24); }
.nav-cta::after { display: none !important; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4); }
.hero { min-height: 100vh; padding: 140px 60px 80px; display: flex; align-items: center; position: relative; z-index: 1; }
.hero-content { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; max-width: 1500px; margin: 0 auto; width: 100%; align-items: center; }
.hero-content, .features-content, .devices-content, .footer-content { min-width: 0; }
.hero-left, .hero-right, .features-image, .features-right, .devices-left, .devices-right,
.why-cards, .pricing-cards, .testimonials-strip, .article-content, .faq-content { min-width: 0; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(59, 130, 246, 0.15); border: 1px solid rgba(59, 130, 246, 0.3); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 500; color: #60a5fa; margin-bottom: 25px; animation: fadeInUp 0.6s ease; }
.hero-badge i { color: #22c55e; }
.hero-title { font-size: 58px; font-weight: 900; line-height: 1.1; margin-bottom: 25px; animation: fadeInUp 0.6s ease 0.1s both; }
.hero-title span { background: linear-gradient(135deg, #60a5fa 0%, #a78bfa 50%, #c084fc 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: 18px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 35px; max-width: 550px; animation: fadeInUp 0.6s ease 0.2s both; }
.hero-cta-group { display: flex; gap: 20px; margin-bottom: 40px; animation: fadeInUp 0.6s ease 0.3s both; }
.hero-cta { background: linear-gradient(135deg, #3b82f6, #2563eb); color: white; border: none; padding: 18px 40px; font-size: 17px; font-weight: 700; border-radius: 50px; cursor: pointer; display: inline-flex; align-items: center; gap: 12px; transition: all 0.3s; position: relative; overflow: hidden; text-decoration: none; }
.hero-cta::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: left 0.5s; }
.hero-cta:hover::before { left: 100%; }
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5); }
.hero-cta-secondary { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.2); padding: 18px 35px; font-size: 16px; font-weight: 600; border-radius: 50px; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-flex; align-items: center; }
.hero-cta-secondary:hover { border-color: #3b82f6; background: rgba(59, 130, 246, 0.1); }
.hero-features { display: flex; flex-direction: column; gap: 14px; animation: fadeInUp 0.6s ease 0.4s both; }
.hero-feature { display: flex; align-items: center; gap: 12px; font-size: 15px; color: rgba(255,255,255,0.85); }
.hero-feature i { color: #22c55e; font-size: 18px; }
.hero-right { position: relative; animation: fadeInUp 0.8s ease 0.3s both; }
.hero-image-container { position: relative; width: 100%; }
.hero-image { width: 100%; border-radius: 24px; box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 60px rgba(59, 130, 246, 0.2); animation: heroFloat 6s ease-in-out infinite; }
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.stats-bar { position: absolute; right: 24px; bottom: -44px; left: auto; transform: none; width: min(78%, 620px); background: rgba(20, 25, 50, 0.95); backdrop-filter: blur(20px); border-radius: 20px; padding: 18px 20px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.05); animation: fadeInUp 0.8s ease 0.6s both; overflow: hidden; }
.stat-item { display: flex; align-items: center; gap: 12px; min-width: 0; }
.stat-icon { width: 44px; height: 44px; flex-shrink: 0; background: linear-gradient(135deg, #3b82f6, #8b5cf6); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.stat-content { display: flex; flex-direction: column; min-width: 0; }
.stat-number { font-size: 22px; font-weight: 800; line-height: 1; background: linear-gradient(135deg, #fff, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; white-space: nowrap; }
.stat-label { font-size: 10px; color: rgba(255,255,255,0.56); text-transform: uppercase; letter-spacing: 0.9px; line-height: 1.3; word-break: break-word; }
.features, .why-choose, .pricing, .devices, .testimonials, .faq, .article, .cta { padding: 88px 60px; position: relative; z-index: 1; }
.features { padding-top: 96px; }
.features[id], .why-choose[id], .pricing[id], .faq[id], .article[id], .devices[id] { scroll-margin-top: 110px; }
.features-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.features-summary { grid-template-columns: 1fr; gap: 0; max-width: 920px; text-align: center; }
.features-image { position: relative; }
.features-img { width: 100%; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.features-card { background: rgba(20, 25, 50, 0.6); backdrop-filter: blur(20px); border-radius: 24px; padding: 40px; border: 1px solid rgba(255,255,255,0.05); }
.feature-list { display: flex; flex-direction: column; gap: 16px; }
.feature-item { display: flex; align-items: center; gap: 15px; font-size: 15px; padding: 12px 15px; border-radius: 12px; transition: all 0.3s; cursor: default; }
.feature-item:hover { background: rgba(59, 130, 246, 0.1); transform: translateX(5px); }
.feature-icon { width: 32px; height: 32px; background: linear-gradient(135deg, #3b82f6, #06b6d4); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.feature-icon i { font-size: 12px; color: white; }
.features-quote { font-size: 38px; font-weight: 800; line-height: 1.3; margin-bottom: 25px; background: linear-gradient(135deg, #fff 0%, #60a5fa 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.features-desc { font-size: 16px; line-height: 1.9; color: rgba(255,255,255,0.7); }
.features-summary .features-desc { max-width: 780px; margin: 0 auto; }
.single-page { padding-top: 150px; min-height: 100vh; }
.section-header { margin-bottom: 50px; text-align: center; }
.section-label { display: inline-block; background: rgba(59, 130, 246, 0.15); border: 1px solid rgba(59, 130, 246, 0.3); padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 600; color: #60a5fa; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.section-title { font-size: 48px; font-weight: 800; margin-bottom: 15px; }
.section-title span { background: linear-gradient(135deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section-subtitle { font-size: 18px; color: rgba(255,255,255,0.6); max-width: 700px; margin: 0 auto; }
.why-cards { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.why-card { background: white; color: #0a0e27; border-radius: 24px; padding: 45px 30px; text-align: center; transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; text-decoration: none; }
.why-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, #3b82f6, #8b5cf6); }
.why-card:hover { transform: translateY(-15px) scale(1.02); box-shadow: 0 30px 60px rgba(0,0,0,0.3); }
.why-card-icon { width: 70px; height: 70px; margin: 0 auto 25px; background: linear-gradient(135deg, #3b82f6, #8b5cf6); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 32px; color: white; transition: all 0.4s ease; }
.why-card:hover .why-card-icon { transform: scale(1.15) rotate(10deg); box-shadow: 0 15px 30px rgba(59, 130, 246, 0.4); }
.why-card-title { font-size: 18px; font-weight: 800; margin-bottom: 15px; line-height: 1.4; transition: color 0.3s ease; }
.why-card:hover .why-card-title { background: linear-gradient(135deg, #3b82f6, #8b5cf6); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.why-card-desc { font-size: 14px; line-height: 1.7; color: #4b5563; }
.pricing-cards { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
.pricing-card { background: rgba(20, 25, 50, 0.7); backdrop-filter: blur(20px); border-radius: 24px; padding: 40px 25px; text-align: center; position: relative; border: 1px solid rgba(255,255,255,0.05); transition: all 0.4s; }
.pricing-card:hover { transform: translateY(-10px); border-color: rgba(59, 130, 246, 0.3); }
.pricing-card.featured { background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2)); border: 2px solid #3b82f6; transform: scale(1.05); }
.pricing-card.featured:hover { transform: scale(1.08) translateY(-10px); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #3b82f6, #8b5cf6); padding: 6px 20px; border-radius: 50px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.pricing-card-title { font-size: 26px; font-weight: 800; margin-bottom: 15px; }
.pricing-price { font-size: 48px; font-weight: 900; margin-bottom: 5px; background: linear-gradient(135deg, #fff, #60a5fa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.pricing-price span { font-size: 24px; font-weight: 600; }
.pricing-old { font-size: 18px; color: #ef4444; text-decoration: line-through; margin-bottom: 25px; }
.pricing-btn { background: white; color: #0a0e27; border: none; padding: 15px 35px; font-size: 16px; font-weight: 700; border-radius: 50px; cursor: pointer; margin-bottom: 30px; transition: all 0.3s; width: 100%; text-decoration: none; display: inline-block; }
.pricing-btn:hover { background: #e5e7eb; transform: scale(1.05); }
.pricing-card.featured .pricing-btn { background: linear-gradient(135deg, #3b82f6, #2563eb); color: white; }
.pricing-card.featured .pricing-btn:hover { background: linear-gradient(135deg, #2563eb, #1d4ed8); }
.pricing-features { display: flex; flex-direction: column; gap: 12px; text-align: left; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: rgba(255,255,255,0.8); }
.pricing-feature i { color: #22c55e; margin-top: 2px; flex-shrink: 0; }
.devices-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 70px; align-items: center; }
.devices-left { position: relative; }
.devices-image { width: 100%; border-radius: 24px; box-shadow: 0 40px 80px rgba(0,0,0,0.4); }
.devices-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 30px; }
.device-logo { background: white; border-radius: 16px; padding: 15px; display: flex; align-items: center; justify-content: center; height: 70px; transition: all 0.3s; cursor: pointer; }
.device-logo:hover { transform: translateY(-8px) scale(1.05); box-shadow: 0 15px 30px rgba(0,0,0,0.2); }
.devices-right { padding-left: 20px; }
.devices-title { font-size: 42px; font-weight: 800; line-height: 1.2; margin-bottom: 15px; }
.devices-subtitle { font-size: 22px; font-weight: 600; background: linear-gradient(135deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 25px; }
.devices-desc { font-size: 16px; line-height: 1.9; color: rgba(255,255,255,0.7); margin-bottom: 35px; }
.devices-cta { background: linear-gradient(135deg, #3b82f6, #2563eb); color: white; border: none; padding: 18px 40px; font-size: 17px; font-weight: 700; border-radius: 50px; cursor: pointer; transition: all 0.3s; text-decoration: none; display: inline-block; }
.devices-cta:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5); }
.testimonials-strip { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { background: rgba(20, 25, 50, 0.62); backdrop-filter: blur(20px); border-radius: 22px; border: 1px solid rgba(255,255,255,0.06); padding: 28px; text-align: left; }
.testimonial-stars { color: #ffd700; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-text { color: rgba(255,255,255,0.74); line-height: 1.8; font-size: 15px; margin-bottom: 16px; }
.testimonial-name { font-size: 14px; color: rgba(255,255,255,0.95); font-weight: 700; }
.faq-content { max-width: 900px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 15px; }
.faq-item { background: rgba(20, 25, 50, 0.6); backdrop-filter: blur(20px); border-radius: 16px; border: 1px solid rgba(255,255,255,0.05); overflow: hidden; transition: all 0.3s; }
.faq-item:hover { border-color: rgba(59, 130, 246, 0.3); }
.faq-question { padding: 25px 30px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-size: 17px; font-weight: 600; transition: all 0.3s; }
.faq-question:hover { background: rgba(59, 130, 246, 0.1); }
.faq-question i { transition: transform 0.3s; color: #3b82f6; }
.faq-item.active .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; padding: 0 30px 25px; }
.faq-answer p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.7); }
.article-content { max-width: 900px; margin: 0 auto; }
.article-title { font-size: 42px; font-weight: 800; margin-bottom: 20px; text-align: center; }
.article-intro { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.7); margin-bottom: 45px; text-align: center; }
.article-section { margin-bottom: 35px; padding: 40px; background: rgba(20, 25, 50, 0.5); backdrop-filter: blur(20px); border-radius: 24px; border: 1px solid rgba(255,255,255,0.05); }
.article-section-title { font-size: 26px; font-weight: 700; margin-bottom: 25px; display: flex; align-items: center; gap: 15px; }
.article-section-title i { color: #3b82f6; }
.article-list { display: flex; flex-direction: column; gap: 15px; padding-left: 0; list-style: none; }
.article-list li { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.8); padding-left: 30px; position: relative; }
.article-list li::before { content: '✓'; position: absolute; left: 0; color: #22c55e; font-weight: bold; }
.article-list li strong { color: white; }
.cta-box { max-width: 900px; margin: 0 auto; padding: 70px 60px; background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15)); border-radius: 32px; border: 1px solid rgba(255,255,255,0.1); position: relative; overflow: hidden; text-align: center; }
.cta-box::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 50%); animation: rotate 20s linear infinite; }
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.cta-title { font-size: 42px; font-weight: 800; margin-bottom: 20px; position: relative; z-index: 1; }
.cta-desc { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 40px; position: relative; z-index: 1; }
.cta-btn { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); padding: 18px 50px; font-size: 17px; font-weight: 700; border-radius: 50px; cursor: pointer; transition: all 0.3s; position: relative; z-index: 1; text-decoration: none; display: inline-block; }
.cta-btn:hover { background: white; color: #0a0e27; border-color: white; }
.order-modal { position: fixed; inset: 0; display: none; align-items: center; justify-content: center; z-index: 1400; padding: 24px; }
.order-modal.show { display: flex; }
.order-modal-backdrop { position: absolute; inset: 0; background: rgba(4, 8, 28, 0.72); backdrop-filter: blur(12px); }
.order-modal-card { position: relative; width: min(100%, 560px); background: linear-gradient(180deg, rgba(18, 24, 54, 0.98), rgba(11, 16, 38, 0.98)); border: 1px solid rgba(255,255,255,0.09); border-radius: 28px; padding: 34px; box-shadow: 0 28px 90px rgba(0,0,0,0.42); }
.order-modal-close { position: absolute; top: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05); color: white; cursor: pointer; }
.order-modal-close:hover { background: rgba(59,130,246,0.18); }
.order-modal-copy { max-width: 100%; margin-bottom: 24px; }
.order-modal-form { display: flex; flex-direction: column; gap: 16px; }
.order-modal-plan { padding: 14px 16px; border-radius: 18px; background: rgba(59, 130, 246, 0.12); border: 1px solid rgba(96, 165, 250, 0.25); color: rgba(255,255,255,0.86); font-weight: 600; }
.order-input { width: 100%; padding: 17px 18px; border-radius: 18px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); color: white; font-size: 16px; outline: none; }
.order-input:focus { border-color: rgba(96, 165, 250, 0.8); box-shadow: 0 0 0 4px rgba(59,130,246,0.14); }
.order-submit { justify-content: center; width: 100%; }
.order-submit:disabled { opacity: 0.7; cursor: wait; }
.order-status { min-height: 22px; font-size: 14px; color: rgba(255,255,255,0.76); }
.footer { padding: 60px 60px 36px; border-top: 1px solid rgba(255,255,255,0.05); position: relative; z-index: 1; }
.footer-content { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 60px; align-items: start; }
.footer-logo { display: flex; align-items: center; gap: 15px; text-decoration: none; }
.footer-logo-icon { width: 260px; height: auto; max-width: 100%; filter: drop-shadow(0 0 18px rgba(124, 58, 237, 0.24)); }
.footer-logo-text { display: none; }
.footer-section { text-align: center; }
.footer-section-title { font-size: 16px; font-weight: 700; margin-bottom: 15px; color: rgba(255,255,255,0.9); }
.footer-section-text { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer-section a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
.footer-section a:hover { color: #3b82f6; }
.footer-copyright { text-align: center; padding-top: 50px; margin-top: 50px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 14px; color: rgba(255,255,255,0.4); }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s ease; }
.reveal.active { opacity: 1; transform: translateY(0); }
.mobile-menu-btn { display: none; width: 52px; height: 52px; align-items: center; justify-content: center; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; color: white; font-size: 20px; cursor: pointer; box-shadow: 0 14px 30px rgba(0,0,0,0.2); }
.mobile-nav { display: none; }
@media (max-width: 1200px) {
    .why-cards { grid-template-columns: repeat(2, 1fr); }
    .pricing-cards { grid-template-columns: repeat(2, 1fr); }
    .testimonials-strip { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: scale(1.03) translateY(-10px); }
}
@media (max-width: 992px) {
    .hero-content, .features-content, .devices-content { grid-template-columns: 1fr; }
    .hero-title { font-size: 42px; }
    .section-title { font-size: 36px; }
    .features-quote, .cta-title, .article-title { font-size: 36px; }
    .nav { display: none; }
    .mobile-menu-btn { display: inline-flex; }
    .mobile-nav { display: none; position: fixed; top: 88px; left: 30px; right: 30px; z-index: 999; background: rgba(10, 14, 39, 0.96); border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 18px; backdrop-filter: blur(20px); box-shadow: 0 24px 60px rgba(0,0,0,0.34); }
    .mobile-nav.show { display: flex; flex-direction: column; gap: 14px; }
    .mobile-nav a { color: rgba(255,255,255,0.84); text-decoration: none; font-size: 15px; font-weight: 600; padding: 12px 14px; border-radius: 14px; }
    .mobile-nav a:hover { background: rgba(59,130,246,0.12); }
    .mobile-nav .nav-cta { text-align: center; }
    .hero-right, .hero-image-container, .features-image, .devices-left { overflow: hidden; }
    .stats-bar { position: relative; right: auto; bottom: auto; left: auto; transform: none; width: 100%; max-width: 100%; margin-top: 32px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .devices-right { padding-left: 0; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-logo { justify-content: center; }
}
@media (max-width: 768px) {
    .header { padding: 15px 24px; }
    .logo-icon { width: 215px; }
    .hero { padding: 120px 30px 60px; }
    .features, .why-choose, .pricing, .devices, .testimonials, .faq, .article, .cta, .single-page { padding: 60px 30px; }
    .single-page { padding-top: 120px; }
    .footer { padding: 50px 30px 30px; }
    .footer-logo-icon { width: 215px; }
    .why-cards, .pricing-cards { grid-template-columns: 1fr; }
    .devices-logos { grid-template-columns: repeat(2, 1fr); }
    .hero-content { gap: 40px; }
    .stats-bar { width: 100%; max-width: 100%; grid-template-columns: 1fr; gap: 14px; padding: 16px; }
    .stat-icon { width: 42px; height: 42px; font-size: 18px; }
    .stat-number { font-size: 24px; }
    .stat-label { font-size: 11px; }
    .hero-title { font-size: 32px; }
    .section-title { font-size: 28px; }
    .cta-box { padding: 50px 30px; }
    .hero-cta-group { flex-direction: column; }
    .hero-cta, .hero-cta-secondary { width: 100%; justify-content: center; }
    .order-modal { padding: 18px; }
    .order-modal-card { padding: 28px 22px; border-radius: 24px; }
}
