
:root {
  --bg: #0b1220;
  --card: #0f172a;
  --text: #e5ecf5;
  --muted: #9fb0c7;
  --accent: #60a5fa;
  --accent-2: #22d3ee;
  --border: #1f2a44;
}
* { box-sizing: border-box; }
body { margin:0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; background:#0a0f1a; color: var(--text); }
a { color: var(--accent); text-decoration: none; }
.container { width: min(1100px, 92%); margin: 0 auto; }

.site-header { position: sticky; top:0; backdrop-filter: blur(10px); background: rgba(10,15,26,.7); border-bottom: 1px solid var(--border); z-index: 50; }
.header-inner { display:flex; align-items:center; gap:16px; padding:14px 0; }
.brand { display:flex; align-items:center; gap:12px; }
.logo { width:40px; height:40px; border-radius:8px; object-fit: cover; }
.brand-name { font-weight: 800; letter-spacing: .2px; color: var(--text); }
.nav { margin-left:auto; display:flex; gap:16px; }
.nav a { color: var(--text); opacity:.9; }
.nav a:hover { color: white; }
.cta { margin-left:12px; padding:10px 14px; border:1px solid var(--accent); border-radius:10px; color: var(--text); }

.hero { background-size: cover; background-position: center; }
.hero-inner { padding: 96px 0 72px; }
.hero h1 { font-size: clamp(32px, 5vw, 54px); line-height: 1.05; margin: 0 0 12px; }
.hero p { color: var(--muted); font-size: 18px; max-width: 720px; }
.hero-ctas { margin-top: 20px; display:flex; gap:12px; }

.btn { display:inline-block; padding:12px 16px; border-radius:12px; border:1px solid var(--border); }
.btn.primary { background: linear-gradient(90deg, var(--accent), var(--accent-2)); color:#08111e; border:none; font-weight:700; }
.btn.outline { border-color: var(--accent); }
.btn.dark { background: #0d1b2e; border-color: #1f2a44; color: var(--text); }

.section { padding: 48px 0; }

.trust h2, .industries h2 { font-size: 28px; margin-bottom: 4px; }
.subtitle { color: var(--muted); margin: 0 0 18px; }
.features { display:grid; grid-template-columns: repeat(3,1fr); gap:18px; margin-top:18px; }
.feature { background: var(--card); border:1px solid var(--border); padding:18px; border-radius:16px; }

.industries .grid { display:grid; grid-template-columns: repeat(4,1fr); gap:16px; }
.industries .card { background: var(--card); border:1px solid var(--border); border-radius:16px; overflow:hidden; text-align:center; }
.industries img { width:100%; aspect-ratio:1/1; object-fit:cover; display:block; }
.industries h4 { margin:10px 0 12px; }

.center { text-align:center; margin-top: 16px; }

.cta-banner { background: linear-gradient(90deg, #0d1b2e, #0a1728); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.cta-banner .container { display:flex; align-items:center; justify-content:space-between; padding:20px 0; }

.page { padding: 36px 0 56px; }
.pricing { display:grid; grid-template-columns: repeat(3,1fr); gap:16px; }
.plan { background: var(--card); border:1px solid var(--border); border-radius:18px; padding:18px; }
.plan .price { font-size:28px; font-weight:800; margin:8px 0 12px; }
.plan.featured { outline: 2px solid var(--accent); background: linear-gradient(180deg, #0f172a, #0b1525); }

.testimonials blockquote { background: var(--card); border:1px solid var(--border); border-radius:16px; padding:18px; margin:0 0 16px; }
.testimonials cite { display:block; color: var(--muted); margin-top:6px; }

.contact-form { margin-top:12px; }
.contact-form .row { display:grid; grid-template-columns: 1fr 1fr; gap:12px; }
.contact-form input, .contact-form textarea { width:100%; padding:12px; border-radius:12px; border:1px solid var(--border); background:#0a1020; color: var(--text); }
.contact-form textarea { min-height:140px; resize:vertical; }
.contact-form .btn { margin-top:12px; }

.site-footer { border-top:1px solid var(--border); margin-top: 32px; }
.footer-inner { display:flex; align-items:center; justify-content:space-between; padding:20px 0; color: var(--muted); }
.foot-nav { display:flex; gap:16px; }

@media (max-width: 900px) {
  .features { grid-template-columns: 1fr; }
  .industries .grid { grid-template-columns: repeat(2,1fr); }
  .pricing { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .cta-banner .container { flex-direction: column; gap:12px; text-align:center; }
}
