@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --bg: #05060b;
  --card: #0b0f1b;
  --muted: #9da7be;
  --accent: #7dd3fc;
  --accent-strong: #38bdf8;
  --border: #11182a;
  --pill: #0f172a;
  --radius: 16px;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --text: #e8edf5;
  font-family: 'Space Grotesk', 'Segoe UI', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
}

* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); }

a { color: inherit; text-decoration: none; }

.page {
  min-height: 100vh;
  background: radial-gradient(circle at 18% 12%, rgba(124, 58, 237, 0.12), transparent 32%),
              radial-gradient(circle at 80% 10%, rgba(56, 189, 248, 0.14), transparent 32%),
              linear-gradient(160deg, #04050a 0%, #05060b 50%, #06060c 100%);
}

.hero {
  padding: 48px clamp(16px, 4vw, 48px) 32px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 12px;
  background: rgba(125, 211, 252, 0.12);
  border: 1px solid rgba(125, 211, 252, 0.3);
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
  margin-top: 18px;
}

.hero__copy h1 {
  font-size: clamp(32px, 5vw, 56px);
  margin: 10px 0 12px;
  letter-spacing: -0.03em;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
  margin: 0;
  font-size: 13px;
}

.lede {
  color: #cdd4e5;
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 18px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
}

.hero__panel {
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.9), rgba(10, 12, 20, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px;
}

.hero__panel-header {
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
}

.stat-label { margin: 0; color: var(--muted); font-size: 13px; }
.stat-value { margin: 4px 0 2px; font-size: 26px; font-weight: 700; color: #f8fbff; }
.stat-foot { margin: 0; color: #c6d1ea; font-size: 13px; }

.hero__panel-body {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-note {
  color: var(--muted);
  margin: 8px 0 0;
  line-height: 1.5;
}

.section {
  padding: 48px clamp(16px, 4vw, 48px);
}

.section--muted {
  background: rgba(11, 15, 27, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section__header h2 { margin: 8px 0 6px; font-size: clamp(26px, 4vw, 38px); letter-spacing: -0.02em; }
.section__header p { margin: 0; }
.muted { color: var(--muted); }

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--pill);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d8e5fb;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.card:hover { transform: translateY(-2px); border-color: rgba(125, 211, 252, 0.35); }
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { margin: 0; color: var(--muted); line-height: 1.5; }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step__num {
  width: 36px; height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #38bdf8, #7c3aed);
  color: #05060b;
  font-weight: 800;
}

.step h4 { margin: 0 0 6px; }
.step p { margin: 0; color: var(--muted); line-height: 1.5; }

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.price-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 8px;
  align-content: start;
}

.price-card--featured {
  border-color: rgba(125, 211, 252, 0.5);
  box-shadow: 0 20px 60px rgba(56, 189, 248, 0.18);
}

.price-card__badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.15);
  color: var(--accent);
  border: 1px solid rgba(125, 211, 252, 0.4);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.price-card ul { padding-left: 16px; margin: 8px 0; color: var(--muted); line-height: 1.5; }
.price-card li { margin-bottom: 4px; }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.tech-item {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 14px;
}

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: start;
}

.contact__form {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; }
label { color: #dfe6f4; font-weight: 600; font-size: 14px; display: grid; gap: 6px; }
input, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0c1221;
  color: #f6f8ff;
  font-family: inherit;
}
textarea { resize: vertical; }

.contact__info {
  display: grid;
  gap: 12px;
}

.info-block {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 14px;
}
.info-block h4 { margin: 0 0 6px; }
.info-block p { margin: 0; color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #7c3aed);
  color: #05060b;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 40px rgba(56, 189, 248, 0.25);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: #e8edf5;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 46px rgba(56, 189, 248, 0.25); }
.btn:active { transform: translateY(0); }

.cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 18px clamp(16px, 4vw, 48px) 28px;
  background: #04050a;
}

.footer__inner { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; }
.footer__links { display: flex; gap: 14px; }
.footer__links a { color: #cdd4e5; font-weight: 600; }
.footer__links a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .hero { padding-top: 32px; }
}

@media (max-width: 600px) {
  .hero__grid { gap: 18px; }
  .cta-row { width: 100%; }
  .btn { width: 100%; justify-content: center; }
}
