*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #0B1120; color: #fff; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1440px; margin: 0 auto; padding: 0 80px; }
@media (max-width: 1024px) { .container { padding: 0 32px; } }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(11,17,32,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.06); }
.nav-inner { max-width: 1440px; margin: 0 auto; padding: 0 80px; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo img { height: 32px; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-size: 14px; font-weight: 500; color: #8A94A6; transition: color .2s; }
.nav-links a:hover { color: #fff; }
.btn-cta { display: inline-flex; align-items: center; justify-content: center; background: #E8852A; color: #fff; font-weight: 600; font-size: 14px; padding: 10px 24px; border-radius: 8px; border: none; cursor: pointer; transition: all .25s; box-shadow: 0 0 24px rgba(232,133,42,0.3); }
.btn-cta:hover { background: #d4761f; box-shadow: 0 0 32px rgba(232,133,42,0.5); transform: translateY(-1px); }
.btn-cta-lg { font-size: 16px; padding: 14px 32px; border-radius: 10px; }

/* HERO */
.hero { padding-top: 140px; padding-bottom: 100px; position: relative; }
.hero::before { content: ''; position: absolute; top: -100px; left: 30%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(232,133,42,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 960px) { .hero-grid { grid-template-columns: 1fr; } }
.hero-headline { font-size: 56px; font-weight: 800; line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 24px; }
.hero-headline .muted { color: #4A5568; }
.hero-sub { color: #8A94A6; font-size: 17px; line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.trust-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.trust-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(45,212,191,0.08); border: 1px solid rgba(45,212,191,0.2); border-radius: 100px; padding: 8px 16px; font-size: 13px; font-weight: 500; color: #2DD4BF; }
.trust-pill svg { width: 16px; height: 16px; stroke: #2DD4BF; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* DASHBOARD MOCKUP */
.dashboard-card { background: #141E30; border-radius: 16px; border: 1px solid rgba(255,255,255,0.06); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.dash-titlebar { display: flex; align-items: center; gap: 8px; padding: 14px 20px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.dot { width: 12px; height: 12px; border-radius: 50%; }
.dot-r { background: #EF4444; }
.dot-y { background: #F59E0B; }
.dot-g { background: #22C55E; }
.dash-titlebar span { font-size: 13px; color: #8A94A6; margin-left: 8px; font-weight: 500; }
.dash-body { padding: 20px; }
.metrics-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.metric-card { background: rgba(255,255,255,0.04); border-radius: 10px; padding: 16px; text-align: center; border: 1px solid rgba(255,255,255,0.06); }
.metric-val { font-size: 28px; font-weight: 800; margin-bottom: 4px; }
.metric-val.teal { color: #2DD4BF; }
.metric-val.orange { color: #E8852A; }
.metric-label { font-size: 11px; color: #8A94A6; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }
.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; margin-bottom: 20px; padding: 0 4px; }
.bar { flex: 1; border-radius: 4px 4px 0 0; transition: height .3s; }
.dash-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06); }
.client-logos { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.client-logos img { height: 14px !important; max-width: 60px !important; opacity: 0.5; transition: opacity 0.2s; object-fit: contain; }
.client-logos img:hover { opacity: 0.8; }
.client-logo-tag { font-size: 9px; font-weight: 700; color: #8A94A6; letter-spacing: 0.5px; text-transform: uppercase; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 4px; padding: 3px 8px; white-space: nowrap; }
.status-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #22C55E; font-weight: 500; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

/* SECTIONS */
.section { padding: 100px 0; }
.section-title { font-size: 40px; font-weight: 800; text-align: center; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-sub { text-align: center; color: #8A94A6; font-size: 17px; margin-bottom: 56px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* BENEFITS */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 860px) { .benefits-grid { grid-template-columns: 1fr; } }
.card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 36px; transition: all .3s; }
.card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.card-icon svg { width: 24px; height: 24px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card-icon.teal { background: rgba(45,212,191,0.12); }
.card-icon.teal svg { stroke: #2DD4BF; }
.card-icon.orange { background: rgba(232,133,42,0.12); }
.card-icon.orange svg { stroke: #E8852A; }
.card-icon.blue { background: rgba(96,165,250,0.12); }
.card-icon.blue svg { stroke: #60A5FA; }
.card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.card p { color: #8A94A6; font-size: 15px; line-height: 1.7; }

/* DEPLOYMENT */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 960px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 32px; transition: all .3s; position: relative; }
.step-card:hover { border-color: rgba(255,255,255,0.12); transform: translateY(-4px); }
.step-num { font-size: 13px; font-weight: 700; color: #E8852A; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.step-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step-card p { color: #8A94A6; font-size: 14px; line-height: 1.7; }

/* CONTACT */
.contact-section { padding: 100px 0; }
.contact-wrapper { max-width: 640px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 500; color: #8A94A6; margin-bottom: 6px; }
.form-group input, .form-group textarea { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; padding: 12px 16px; color: #fff; font-family: 'Inter', sans-serif; font-size: 15px; transition: border-color .2s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: #E8852A; }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit { text-align: center; margin-top: 24px; }
.form-trust { text-align: center; margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 8px; color: #8A94A6; font-size: 13px; }
.form-trust svg { width: 16px; height: 16px; stroke: #2DD4BF; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* FOOTER */
footer { border-top: 1px solid rgba(255,255,255,0.06); padding: 48px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.footer-left img { height: 28px; margin-bottom: 8px; }
.footer-left p { color: #4A5568; font-size: 13px; }
.footer-right { text-align: right; }
.footer-links { display: flex; gap: 24px; margin-bottom: 8px; }
.footer-links a { color: #8A94A6; font-size: 13px; transition: color .2s; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: #4A5568; font-size: 12px; }
