* { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth }
body { font-family: 'Inter', system-ui, sans-serif; background: #fff; color: #050621; overflow-x: hidden; line-height: 1.5 }
::-webkit-scrollbar { width: 6px }
::-webkit-scrollbar-track { background: #f1f5f9 }
::-webkit-scrollbar-thumb { background: #5271FF; border-radius: 3px }
a { text-decoration: none }
img { max-width: 100% }

@keyframes ticker { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-2deg) } 50% { transform: translateY(-14px) rotate(2deg) } }
@keyframes float2 { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-10px) } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px) } to { opacity: 1; transform: translateY(0) } }
@keyframes slideIn { from { opacity: 0; transform: scale(.95) } to { opacity: 1; transform: scale(1) } }
@keyframes marquee { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }
@keyframes barGrow { from { height: 4px } to { height: var(--h) } }

.rv { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease }
.rl { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease }
.rr { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease }
.rs { opacity: 0; transform: scale(.9); transition: opacity .7s ease, transform .7s ease }
.rv.on, .rl.on, .rr.on, .rs.on { opacity: 1; transform: none }
.d1 { transition-delay: .1s } .d2 { transition-delay: .2s } .d3 { transition-delay: .3s }
.d4 { transition-delay: .4s } .d5 { transition-delay: .5s }

.container { max-width: 1300px; margin: 0 auto; padding: 0 40px }
.section { padding: 100px 0 }

/* Navbar */
#nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 22px 48px; display: flex; align-items: center; justify-content: space-between; transition: all .3s ease }
#nav.scrolled { background: rgba(11,18,32,.96); backdrop-filter: blur(20px); padding-top: 14px; padding-bottom: 14px; box-shadow: 0 4px 30px rgba(0,0,0,.3) }
.nav-logo { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: -1px }
.nav-logo span { color: #5271FF }
.nav-logo em { display: inline-block; width: 8px; height: 8px; background: #5271FF; border-radius: 50%; margin-left: 1px; vertical-align: middle; animation: float2 2s ease-in-out infinite; font-style: normal }
.nav-links { display: flex; gap: 28px; align-items: center }
.nav-links a { color: rgba(255,255,255,.8); font-weight: 500; font-size: 15px; transition: color .2s }
.nav-links a:hover { color: #fff }
.nav-links a.active { color: #fff }
.nav-phone { color: rgba(255,255,255,.7); font-size: 14px }

/* Buttons */
.btn-primary { background: #5271FF; color: #fff; border-radius: 100px; padding: 12px 28px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .3s ease; border: none; cursor: pointer }
.btn-primary:hover { background: #3d5bef; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(82,113,255,.4) }
.btn-dark { background: #0B1220; color: #fff; border-radius: 100px; padding: 12px 28px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .3s ease; border: none; cursor: pointer }
.btn-dark:hover { background: #1a2740; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,.3) }
.btn-tg { background: #0088cc; color: #fff; border-radius: 100px; padding: 12px 28px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .3s ease }
.btn-tg:hover { background: #0077b5; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,136,204,.35) }
.btn-outline { background: rgba(82,113,255,.1); color: #5271FF; border: 1px solid rgba(82,113,255,.3); border-radius: 100px; padding: 12px 28px; font-weight: 600; font-size: 15px; display: inline-flex; align-items: center; gap: 8px; transition: all .3s ease; cursor: pointer; width: 100%; justify-content: center }
.btn-outline:hover { background: rgba(82,113,255,.15) }

/* Pills */
.pill { background: rgba(82,113,255,.12); border: 1px solid rgba(82,113,255,.25); border-radius: 100px; padding: 6px 16px; font-size: 13px; font-weight: 500; color: #5271FF; display: inline-block }
.pill-white { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25); border-radius: 100px; padding: 6px 16px; font-size: 13px; font-weight: 500; color: #fff; display: inline-block }

/* Hero */
.hero { background: #0B1220; min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; padding-top: 80px }
.hero-glow { position: absolute; inset: 0; background: radial-gradient(120% 80% at 10% 0%, rgba(59,130,246,.4) 0%, transparent 60%), radial-gradient(120% 80% at 90% 100%, rgba(168,85,247,.35) 0%, transparent 60%), radial-gradient(80% 60% at 60% 40%, rgba(82,113,255,.2) 0%, transparent 70%) }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 60px 60px }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; width: 100% }
.hero-title { font-size: clamp(2.5rem,4.5vw,3.8rem); font-weight: 900; color: #fff; line-height: 1.08; margin-bottom: 24px }
.hero-title .grad { background: linear-gradient(135deg,#5271FF,#8196F8,#a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text }
.hero-sub { font-size: 18px; color: rgba(255,255,255,.7); line-height: 1.6; margin-bottom: 36px; max-width: 480px }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px }
.hero-stats { display: flex; gap: 36px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1) }
.hero-stat-num { font-size: 2rem; font-weight: 800; color: #5271FF; line-height: 1 }
.hero-stat-label { color: rgba(255,255,255,.5); font-size: 13px; margin-top: 4px }
.hero-brand-bg { position: absolute; bottom: -40px; left: 0; right: 0; text-align: center; font-size: clamp(80px,16vw,200px); font-weight: 900; color: rgba(255,255,255,.025); letter-spacing: -8px; user-select: none; pointer-events: none; line-height: 1 }

/* Page hero (inner pages) */
.page-hero { background: #0B1220; padding: 160px 0 100px; position: relative; overflow: hidden; text-align: center }
.page-hero-glow { position: absolute; inset: 0; background: radial-gradient(100% 80% at 50% 0%, rgba(82,113,255,.35) 0%, transparent 60%), radial-gradient(80% 60% at 80% 80%, rgba(168,85,247,.2) 0%, transparent 60%) }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 60px 60px }
.page-hero-inner { position: relative; z-index: 2 }
.page-hero-title { font-size: clamp(2.8rem,5vw,4.2rem); font-weight: 900; color: #fff; line-height: 1.05; margin-bottom: 22px }
.page-hero-sub { font-size: 19px; color: rgba(255,255,255,.65); line-height: 1.6; max-width: 580px; margin: 0 auto 36px }

/* Dashboard mock */
.dash { background: #1a2740; border-radius: 20px; padding: 24px; box-shadow: 0 40px 100px rgba(0,0,0,.5); border: 1px solid rgba(255,255,255,.07); animation: float2 5s ease-in-out infinite }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px }
.dash-title { color: #fff; font-weight: 700; font-size: 14px }
.dash-badge { background: rgba(82,113,255,.2); border-radius: 6px; padding: 3px 10px; font-size: 11px; color: #8196F8 }
.dash-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-bottom: 16px }
.dash-metric { border-radius: 12px; padding: 12px }
.dash-metric-label { color: rgba(255,255,255,.5); font-size: 10px; margin-bottom: 5px; letter-spacing: .5px }
.dash-metric-val { color: #fff; font-weight: 800; font-size: 17px }
.dash-metric-delta { font-size: 10px; margin-top: 3px; color: #75d37f }
.dash-chart-area { background: rgba(0,0,0,.2); border-radius: 10px; padding: 14px; margin-bottom: 14px }
.dash-chart-label { color: rgba(255,255,255,.4); font-size: 10px; margin-bottom: 8px }
.dash-bars { display: flex; align-items: flex-end; gap: 5px; height: 55px }
.dash-bar { flex: 1; border-radius: 4px 4px 0 0; transition: all .3s }
.dash-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 10px }
.dash-bottom-card { border-radius: 10px; padding: 11px }
.dash-bottom-label { font-size: 9px; color: rgba(255,255,255,.4); margin-bottom: 3px; letter-spacing: .5px }
.dash-bottom-val { font-weight: 700; font-size: 12px }

/* Floating cards */
.float-card { position: absolute; border-radius: 14px; padding: 13px 16px; background: rgba(255,255,255,.09); backdrop-filter: blur(18px); border: 1px solid rgba(255,255,255,.15) }
.float-card .fc-icon { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 16px; margin-right: 10px }

/* Ticker */
.ticker-wrap { overflow: hidden; white-space: nowrap; background: #5271FF; padding: 13px 0 }
.ticker-inner { display: inline-flex; animation: ticker 30s linear infinite }
.ticker-inner:hover { animation-play-state: paused }
.ticker-item { color: #fff; font-weight: 600; font-size: 14px; padding: 0 32px }

/* Feature cards */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px }
.f-card { background: #fff; border-radius: 22px; padding: 32px; box-shadow: 0 4px 24px rgba(82,113,255,.08); border: 1px solid rgba(82,113,255,.1); transition: all .3s ease }
.f-card:hover { transform: translateY(-6px); box-shadow: 0 14px 40px rgba(82,113,255,.18) }
.f-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 18px }
.f-title { font-size: 18px; font-weight: 700; color: #050621; margin-bottom: 10px }
.f-desc { font-size: 15px; color: #6b7280; line-height: 1.6 }

/* Analytics section */
.analytics-sec { background: #0B1220; padding: 100px 0; position: relative; overflow: hidden }
.analytics-glow { position: absolute; inset: 0; background: radial-gradient(80% 60% at 30% 50%, rgba(82,113,255,.2), transparent), radial-gradient(60% 60% at 70% 50%, rgba(168,85,247,.15), transparent) }
.analytics-grid2 { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 60px 60px }
.analytics-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; z-index: 1 }
.analytics-title { font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px }
.analytics-sub { color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.7; margin-bottom: 30px }
.check-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px }
.check-item { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.8); font-size: 15px }
.check-box { width: 24px; height: 24px; background: rgba(82,113,255,.2); border: 1px solid rgba(82,113,255,.4); border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #5271FF; font-size: 14px }

/* Phone mock */
.phone-mock { background: #1a1a2e; border-radius: 38px; padding: 14px; box-shadow: 0 40px 80px rgba(0,0,0,.5); border: 2px solid rgba(255,255,255,.07); max-width: 280px; margin: 0 auto; animation: float2 5s ease-in-out infinite }
.phone-header { background: #0088cc; border-radius: 22px 22px 0 0; padding: 14px 16px; display: flex; align-items: center; gap: 10px }
.phone-avatar { width: 38px; height: 38px; background: rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px }
.phone-body { background: #fff; padding: 14px; display: flex; flex-direction: column; gap: 10px; min-height: 300px; border-radius: 0 0 22px 22px }
.msg-bubble { background: #f0f0f0; border-radius: 0 12px 12px 12px; padding: 11px 13px; max-width: 95% }
.msg-label { font-size: 10px; font-weight: 700; color: #0088cc; margin-bottom: 5px }
.msg-text { font-size: 12px; color: #374151; line-height: 1.6 }
.msg-time { font-size: 10px; color: #9ca3af; text-align: center; margin-top: auto }

/* Problems */
.problems-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px }
.p-card { border-radius: 24px; padding: 36px; transition: all .3s ease }
.p-card:hover { transform: translateY(-4px) }
.p-icon-box { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 18px }
.p-title { font-size: 19px; font-weight: 700; color: #050621; margin-bottom: 10px }
.p-desc { font-size: 15px; color: #6b7280; line-height: 1.6 }

/* Marquee */
.marquee-wrap { overflow: hidden }
.marquee-row { display: inline-flex; gap: 14px; animation: marquee 22s linear infinite }
.marquee-row:hover { animation-play-state: paused }
.marquee-row.rev { animation-direction: reverse; animation-duration: 26s }
.m-tag { padding: 11px 22px; border-radius: 100px; color: #fff; font-weight: 600; font-size: 14px; white-space: nowrap; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.12) }

/* Integrations */
.integrations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; justify-items: center }
.int-card { background: #fff; border-radius: 20px; padding: 22px 18px; text-align: center; box-shadow: 0 4px 18px rgba(0,0,0,.06); transition: all .3s ease; width: 100%; cursor: default }
.int-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(82,113,255,.15) }
.int-icon { font-size: 30px; margin-bottom: 8px }
.int-name { font-weight: 700; color: #050621; font-size: 14px }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px }
.t-card { background: #fff; border-radius: 24px; padding: 32px; box-shadow: 0 8px 40px rgba(82,113,255,.1); border: 1px solid rgba(82,113,255,.1); transition: all .3s ease }
.t-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(82,113,255,.18) }
.t-stars { display: flex; gap: 2px; margin-bottom: 16px; font-size: 16px }
.t-quote { color: #374151; line-height: 1.7; font-size: 15px; margin-bottom: 22px }
.t-author { display: flex; align-items: center; gap: 12px }
.t-avatar { width: 46px; height: 46px; background: linear-gradient(135deg,#5271FF,#a855f7); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 17px; flex-shrink: 0 }
.t-name { font-weight: 700; color: #050621; font-size: 15px }
.t-role { color: #9ca3af; font-size: 13px; margin-top: 2px }

/* Pricing */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; align-items: start }
.price-card { background: #fff; border-radius: 28px; padding: 38px; border: 2px solid rgba(82,113,255,.15); box-shadow: 0 4px 20px rgba(0,0,0,.06) }
.price-card.featured { background: linear-gradient(135deg,#0B1220,#1a2740); border-color: rgba(82,113,255,.5); box-shadow: 0 20px 60px rgba(82,113,255,.25); position: relative; overflow: hidden }
.price-card.featured::before { content: ''; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; background: radial-gradient(circle, rgba(82,113,255,.3), transparent); border-radius: 50% }
.price-label { margin-bottom: 10px }
.price-amount { font-size: 2.7rem; font-weight: 900; color: #050621; margin: 14px 0 4px }
.featured .price-amount { color: #fff }
.price-period { color: #9ca3af; font-size: 14px; margin-bottom: 24px }
.featured .price-period { color: rgba(255,255,255,.5) }
.price-divider { border: none; border-top: 1px solid #f3f4f6; margin-bottom: 20px }
.featured .price-divider { border-top-color: rgba(255,255,255,.1) }
.price-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px }
.price-feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: #374151 }
.featured .price-feature { color: rgba(255,255,255,.82) }
.price-check { color: #22c55e; font-size: 15px; flex-shrink: 0; margin-top: 1px }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 6px }
.faq-item { border: 1px solid rgba(82,113,255,.1); border-radius: 16px; overflow: hidden }
.faq-btn { width: 100%; text-align: left; padding: 20px 22px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; font-size: 16px; font-weight: 600; color: #050621; font-family: inherit; gap: 16px }
.faq-icon { font-size: 22px; color: #5271FF; flex-shrink: 0; transition: transform .3s ease; line-height: 1 }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height .4s ease }
.faq-ans.open { max-height: 300px }
.faq-ans-inner { padding: 0 22px 20px; color: #6b7280; line-height: 1.7; font-size: 15px }

/* CTA */
.cta-sec { background: #0B1220; padding: 100px 0; position: relative; overflow: hidden }
.cta-glow { position: absolute; inset: 0; background: radial-gradient(80% 60% at 50% 50%, rgba(82,113,255,.25), transparent) }
.cta-grid3 { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px); background-size: 60px 60px }
.cta-title { font-size: clamp(2rem,4vw,3.2rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 20px }
.form-box { background: rgba(255,255,255,.06); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.12); border-radius: 24px; padding: 34px; max-width: 460px; margin: 0 auto }
.form-input { background: rgba(255,255,255,.08); border: 1.5px solid rgba(255,255,255,.15); border-radius: 12px; padding: 14px 18px; color: #fff; font-size: 15px; outline: none; transition: border-color .25s; width: 100%; font-family: inherit; margin-bottom: 12px }
.form-input:focus { border-color: rgba(82,113,255,.7) }
.form-input::placeholder { color: rgba(255,255,255,.4) }
.form-note { color: rgba(255,255,255,.35); font-size: 12px; text-align: center; margin-top: 12px }
.success-box { display: none; background: rgba(34,197,94,.12); border: 1px solid rgba(34,197,94,.3); border-radius: 14px; padding: 22px; text-align: center; margin-top: 20px }

/* Footer */
footer { background: #050621; padding: 60px 0 36px }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px }
.footer-logo { font-size: 26px; font-weight: 900; color: #fff; display: block; margin-bottom: 14px; letter-spacing: -1px }
.footer-logo span { color: #5271FF }
.footer-desc { color: rgba(255,255,255,.45); line-height: 1.6; font-size: 14px; max-width: 240px; margin-bottom: 18px }
.footer-socials { display: flex; gap: 10px }
.social-btn { width: 38px; height: 38px; background: rgba(255,255,255,.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); transition: all .2s; font-size: 17px; text-decoration: none }
.social-btn:hover { background: #0088cc; color: #fff }
.footer-heading { color: #fff; font-weight: 700; margin-bottom: 18px; font-size: 15px }
.footer-links { display: flex; flex-direction: column; gap: 9px }
.footer-links a { color: rgba(255,255,255,.45); text-decoration: none; font-size: 14px; transition: color .2s }
.footer-links a:hover { color: #fff }
.footer-contact { display: flex; flex-direction: column; gap: 8px; font-size: 14px }
.footer-contact span { color: rgba(255,255,255,.45) }
.footer-contact a { color: #0088cc }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px }
.footer-copy { color: rgba(255,255,255,.28); font-size: 13px }
.footer-legal { display: flex; gap: 22px }
.footer-legal a { color: rgba(255,255,255,.28); text-decoration: none; font-size: 13px; transition: color .2s }
.footer-legal a:hover { color: rgba(255,255,255,.6) }

/* Section titles */
.section-tag { margin-bottom: 14px }
.section-title { font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 900; color: #050621; line-height: 1.1; margin-bottom: 14px }
.section-title-white { font-size: clamp(2rem,3.5vw,2.8rem); font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 14px }
.section-sub { font-size: 17px; color: #6b7280; line-height: 1.6; max-width: 560px }
.section-sub-white { font-size: 17px; color: rgba(255,255,255,.6); line-height: 1.6; max-width: 560px }
.text-center { text-align: center }
.text-center .section-sub, .text-center .section-sub-white { margin-left: auto; margin-right: auto }
.mb-16 { margin-bottom: 64px } .mb-10 { margin-bottom: 40px } .mb-6 { margin-bottom: 24px } .mb-4 { margin-bottom: 16px }
.grad { background: linear-gradient(135deg,#5271FF,#8196F8,#a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text }

/* Two-col layout for inner pages */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center }
.two-col.rev > *:first-child { order: 2 }
.two-col.rev > *:last-child { order: 1 }

/* Step items */
.step-list { display: flex; flex-direction: column; gap: 28px }
.step-item { display: flex; gap: 20px; align-items: flex-start }
.step-num { width: 44px; height: 44px; background: linear-gradient(135deg,#5271FF,#8196F8); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 18px; color: #fff; flex-shrink: 0 }
.step-title { font-size: 17px; font-weight: 700; color: #050621; margin-bottom: 6px }
.step-desc { font-size: 15px; color: #6b7280; line-height: 1.6 }

/* Dark cards */
.dark-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 20px; padding: 28px }

/* Stats row */
.stats-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px }
.stat-box { text-align: center; padding: 32px 20px; background: #fff; border-radius: 20px; box-shadow: 0 4px 20px rgba(82,113,255,.08); border: 1px solid rgba(82,113,255,.1) }
.stat-num { font-size: 2.4rem; font-weight: 900; color: #5271FF; line-height: 1 }
.stat-label { font-size: 14px; color: #6b7280; margin-top: 8px }

/* Table */
.abc-table { width: 100%; border-collapse: collapse; border-radius: 16px; overflow: hidden }
.abc-table th { background: #0B1220; color: #fff; padding: 16px 20px; font-size: 13px; font-weight: 600; letter-spacing: .5px; text-align: left }
.abc-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid #f3f4f6; color: #374151 }
.abc-table tr:last-child td { border-bottom: none }
.abc-table tr:nth-child(even) td { background: #f9fafb }
.badge-a { background: rgba(34,197,94,.12); color: #16a34a; border-radius: 6px; padding: 3px 10px; font-weight: 700; font-size: 13px }
.badge-b { background: rgba(245,158,11,.12); color: #d97706; border-radius: 6px; padding: 3px 10px; font-weight: 700; font-size: 13px }
.badge-c { background: rgba(239,68,68,.12); color: #dc2626; border-radius: 6px; padding: 3px 10px; font-weight: 700; font-size: 13px }

@media (max-width: 768px) {
  #nav { padding: 16px 24px }
  .nav-links { display: none }
  .container { padding: 0 20px }
  .section { padding: 70px 0 }
  .page-hero { padding: 130px 0 70px }
  .hero-inner, .two-col, .analytics-inner { grid-template-columns: 1fr }
  .two-col.rev > *:first-child { order: unset }
  .two-col.rev > *:last-child { order: unset }
  .hero-dash-col { display: none }
  .feature-grid, .testimonials-grid, .pricing-grid, .footer-grid { grid-template-columns: 1fr }
  .problems-grid { grid-template-columns: 1fr 1fr }
  .integrations-grid { grid-template-columns: repeat(2,1fr) }
  .stats-row { grid-template-columns: 1fr 1fr }
}
