/* ─── Base ─────────────────────────────────────────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background-color: #0A0E1A;
  color: #f1f5f9;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ─── Gradient text ─────────────────────────────────────────────────────────── */

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #60a5fa 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── Hero pattern (parking space grid) ─────────────────────────────────────── */

.hero-bg {
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(37,99,235,0.20) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(34,211,238,0.07) 0%, transparent 50%);
}

.dot-grid {
  background-image:
    linear-gradient(rgba(34,211,238,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,211,238,0.04) 1px, transparent 1px);
  background-size: 80px 140px;
}

/* ─── Cards ─────────────────────────────────────────────────────────────────── */

.card {
  background-color: #0F1629;
  border: 1px solid #1E293B;
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s;
}

.card:hover {
  border-color: rgba(34,211,238,0.20);
  transform: translateY(-2px);
}

/* ─── Pricing card ──────────────────────────────────────────────────────────── */

.pricing-card {
  background-color: #0F1629;
  border: 1px solid #1E293B;
  border-radius: 20px;
  transition: border-color 0.2s, transform 0.2s;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card.featured {
  background: linear-gradient(180deg, #0d1f3c 0%, #0F1629 100%);
  border-color: #2563EB;
  box-shadow: 0 0 0 1px #2563EB, 0 20px 60px -10px rgba(37,99,235,0.3);
}

/* ─── Buttons ───────────────────────────────────────────────────────────────── */

.btn-primary {
  background: linear-gradient(135deg, #2563EB, #1d4ed8);
  color: white;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(37,99,235,0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #3b82f6, #2563EB);
  box-shadow: 0 6px 24px rgba(37,99,235,0.5);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #e2e8f0;
  font-weight: 600;
  border-radius: 10px;
  padding: 12px 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #334155;
  transition: all 0.2s;
}

.btn-outline:hover {
  border-color: #475569;
  color: white;
  background: rgba(255,255,255,0.05);
}

/* ─── Feature icon ──────────────────────────────────────────────────────────── */

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,211,238,0.10);
  border: 1px solid rgba(34,211,238,0.20);
  flex-shrink: 0;
}

/* ─── Step number ────────────────────────────────────────────────────────────── */

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563EB, #22D3EE);
  color: white;
  font-weight: 800;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Check list ────────────────────────────────────────────────────────────── */

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
}

.check-item svg { flex-shrink: 0; margin-top: 1px; }
.check-item.muted { color: #475569; }

/* ─── Section label ─────────────────────────────────────────────────────────── */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #22D3EE;
  background: rgba(34,211,238,0.08);
  border: 1px solid rgba(34,211,238,0.20);
  border-radius: 100px;
  padding: 4px 12px;
}

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */

.faq-icon {
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

/* ─── App mockup ────────────────────────────────────────────────────────────── */

.mockup-screen {
  background: #0F1629;
  border: 1px solid #1E293B;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 40px 80px -20px rgba(0,0,0,0.6),
    0 0 80px -20px rgba(34,211,238,0.10);
}

/* ─── Scrollbar ─────────────────────────────────────────────────────────────── */

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0A0E1A; }
::-webkit-scrollbar-thumb { background: #1E293B; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }
