:root {
  --bg: #0b0f16;
  --card: #101621;
  --card-2: #121a27;
  --text: #f5f7fb;
  --muted: #aab2c5;
  --accent: #5aa7ff;
  --accent-2: #9cc8ff;
  --border: #1d2635;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  background-image: url("assets/pattern-logo.png");
  background-size: 800px 800px;
  background-attachment: fixed;
  line-height: 1.5;
}
.hero {
  padding: 36px 56px 64px;
  background: transparent;
}
.nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.top-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: #0b0f16;
  padding: 12px 0;
}
.top-banner img {
  width: min(960px, 100%);
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.nav-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(240px, 0.8fr);
  gap: 32px;
  margin-top: 44px;
  align-items: stretch;
}
.hero-grid.single {
  grid-template-columns: minmax(280px, 1fr);
}
.hero-copy h1 {
  font-size: 46px;
  margin: 0 0 14px;
  text-align: center;
}
.subhead {
  color: var(--muted);
  font-size: 18px;
  text-align: center;
}
.cta-row {
  display: flex;
  gap: 12px;
  margin: 20px 0 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust {
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}
.section {
  padding: 52px 56px;
  text-align: center;
}
.section h2 {
  font-size: 32px;
  margin: 0 0 10px;
}
.section-sub {
  color: var(--muted);
  margin: 0 0 26px;
}
.section.provides {
  background: transparent;
}
.section.provides .card {
  background: rgba(16, 22, 33, 0.18);
  backdrop-filter: blur(6px);
}
.section.centered .card,
.section.centered .card p,
.section.centered ul {
  text-align: center;
}
.section.centered ul {
  list-style-position: inside;
  padding-left: 0;
}
.step-card {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.step-pill {
  display: inline-block;
  background: #1f6feb;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.4px;
}
.step-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 6px;
}
.step-title h3 { margin: 0; }
.step-time { color: var(--muted); font-size: 13px; }
.step-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}
.step-list { list-style: none; padding: 0; margin: 12px 0 0; }
.step-list li { display: flex; gap: 12px; align-items: flex-start; padding: 10px 0; border-top: 1px solid var(--border); }
.step-list li:first-child { border-top: none; }
.step-badge {
  width: 28px; height: 28px; border-radius: 50%;
  background: #1f6feb; color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 13px;
}
.step-note {
  margin-top: 12px;
  background: rgba(46, 204, 113, 0.12);
  border: 1px solid rgba(46, 204, 113, 0.4);
  color: #dff6e9;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 13px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1050px;
  margin: 0 auto;
}
.steps .step {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(90,167,255,0.18);
  color: var(--accent-2);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}
.card-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  text-align: left;
}
.card-link {
  color: inherit;
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.card-link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(90,167,255,.2), 0 12px 30px rgba(0,0,0,.25);
}
.card h3, .card h4 { margin-top: 0; }
.card ul { padding-left: 18px; color: var(--muted); }
.card.highlight {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(90,167,255,.2), 0 12px 30px rgba(0,0,0,.25);
}
.price {
  font-size: 28px;
  font-weight: 700;
  margin: 4px 0 6px;
}
.price span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}
.tag {
  color: var(--accent-2);
  font-weight: 600;
  margin: 6px 0 12px;
}
.btn {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  display: inline-block;
}
.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}
.small {
  color: var(--muted);
  font-size: 13px;
}
.footer {
  padding: 28px 56px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .hero { padding: 24px; }
  .hero-grid { grid-template-columns: 1fr; }
  .stats { padding: 18px 24px 0; }
  .section { padding: 40px 24px; }
  .footer { padding: 24px; }
}
