
:root {
  --bg: #020617;
  --panel: #0f172a;
  --panel-soft: rgba(15, 23, 42, 0.72);
  --text: #e5eefc;
  --muted: #94a3b8;
  --muted-2: #cbd5e1;
  --line: #1e293b;
  --primary: #0ea5e9;
  --primary-2: #38bdf8;
  --accent-bg: rgba(14, 165, 233, 0.15);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.bg-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at top, rgba(56, 189, 248, 0.18), transparent 55%),
    radial-gradient(ellipse at bottom, rgba(99, 102, 241, 0.22), transparent 55%),
    linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 1));
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(2, 6, 23, 0.8);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 40px; width: auto; }
.brand-copy strong { display: block; font-size: 0.95rem; }
.brand-copy span { display: block; color: var(--muted); font-size: 0.78rem; }

.nav-links, .nav-actions, .footer-links { display: flex; align-items: center; gap: 18px; }
.nav-links a, .footer-links a { color: var(--muted); }
.nav-links a:hover, .footer-links a:hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  color: white;
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.25);
}
.btn-primary:hover { filter: brightness(1.04); }
.btn-secondary {
  background: var(--accent-bg);
  color: #7dd3fc;
  border-color: rgba(56, 189, 248, 0.3);
}
.btn-secondary:hover, .btn-outline:hover {
  background: rgba(56, 189, 248, 0.22);
}
.btn-outline {
  background: transparent;
  border-color: rgba(148, 163, 184, 0.25);
  color: var(--text);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
}
.btn.block { width: 100%; }

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  padding: 56px 0 24px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 18px 0 14px;
}
.lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted-2);
  max-width: 760px;
}
.badges, .cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border-radius: 999px;
  padding: 0 12px;
  font-size: 0.88rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
}
.badge-muted { background: rgba(148, 163, 184, 0.12); color: var(--text); }
.badge-accent { background: var(--accent-bg); color: #7dd3fc; border-color: rgba(56, 189, 248, 0.3); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stat {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.7);
}
.stat-label { color: var(--muted); font-size: 0.78rem; }
.stat-value { margin-top: 4px; font-weight: 700; }
.tooltip {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translate(-50%, -100%);
  white-space: nowrap;
  background: #020617;
  color: white;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 11px;
  border: 1px solid var(--line);
  display: none;
}
.has-tooltip:hover .tooltip { display: block; }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.checklist { padding: 24px; }
.checklist h2, .section-head h2 { margin: 0 0 10px; font-size: 1.9rem; }
.checklist > p, .section-head p, .subdued, .quote-card span, .price-sub, .next-steps ol, .site-footer p, .site-footer small {
  color: var(--muted);
}
.checklist ul, .service-card ul, .pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.checklist li, .service-card li, .pricing-card li {
  padding-left: 24px;
  position: relative;
  margin: 12px 0;
  color: var(--muted-2);
}
.checklist li::before, .service-card li::before, .pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #7dd3fc;
}
.cta-box {
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  background: rgba(2, 6, 23, 0.45);
}
.cta-box p { margin: 6px 0 0; color: var(--muted); }

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(15, 23, 42, 0.7);
  border-radius: 24px;
  margin-top: 28px;
}
.trust-item { display: flex; gap: 14px; align-items: flex-start; }
.icon {
  width: 42px; height: 42px; border-radius: 16px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
}
.trust-item h3 { margin: 2px 0 6px; }
.trust-item p { margin: 0; color: var(--muted); }

.section { padding: 80px 0 0; }
.section-head {
  margin-bottom: 26px;
  max-width: 740px;
}
.eyebrow {
  display: inline-block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  margin-bottom: 8px;
}

.grid { display: grid; gap: 18px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.service-card, .step-card, .quote-card, .pricing-card { padding: 24px; }
.service-card p, .step-card p, .quote-card p { color: var(--muted); line-height: 1.6; }
.step {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  background: rgba(148, 163, 184, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.quote-card strong, .pricing-card h3, .service-card h3 { display: block; margin-top: 10px; }

.price-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  color: var(--text);
  font-size: 0.8rem;
}
.price-badge.accent { background: var(--accent-bg); color: #7dd3fc; }
.price { font-size: 2rem; font-weight: 800; margin-top: 14px; }
.featured { outline: 1px solid rgba(56, 189, 248, 0.22); }
.note { margin-top: 22px; text-align: center; color: var(--muted); }

.faq-list { display: grid; gap: 14px; }
details { padding: 18px 20px; }
summary {
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { color: var(--muted); margin: 12px 0 0; line-height: 1.65; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 18px;
}
.contact-layout .card { padding: 24px; }
.contact-form { margin-top: 14px; }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
label { display: block; }
label span { display: block; margin-bottom: 8px; color: var(--muted-2); font-size: 0.92rem; }
input, textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.55);
  color: white;
  padding: 12px 14px;
  font: inherit;
}
input:focus, textarea:focus {
  outline: 2px solid rgba(56, 189, 248, 0.3);
  border-color: rgba(56, 189, 248, 0.45);
}
.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 16px;
}
.form-message {
  min-height: 20px;
  margin-top: 12px;
  color: #7dd3fc;
  font-size: 0.92rem;
}
.info-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 14px 0;
  color: var(--muted-2);
}
.info-row a { color: #e2e8f0; text-decoration: underline; }
.next-steps {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(2, 6, 23, 0.45);
}
.next-steps strong { display: block; margin-bottom: 8px; }

.site-footer {
  padding: 32px 0 60px;
  margin-top: 70px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .hero, .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { flex-wrap: wrap; padding: 12px 0; }
  .nav-links { display: none; }
  .stats, .trust, .grid-3, .grid-4, .form-grid, .site-footer { grid-template-columns: 1fr; }
  .trust { padding: 18px; }
  .cta-box, .form-actions { flex-direction: column; align-items: stretch; }
  .brand img { height: 32px; }
  .hero { padding-top: 34px; }
  .section { padding-top: 64px; }
}
