:root {
  --brand: #cc0000;
  --brand-foreground: #ffffff;
  --brand-soft: #fdecec;
  --background: #ffffff;
  --foreground: #0f1222;
  --muted: #f1f3f8;
  --muted-foreground: #5d6577;
  --border: #e5e7f0;
  --radius: 10px;
  --shadow-glow: 0 10px 30px -8px rgba(204, 0, 0, 0.55);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
}

main {
  min-height: 100vh;
  background-color: var(--background);
}

/* ============ Hero ============ */
.hero {
  border-bottom: 1px solid var(--border);
  background-color: #f8f9fc;
  padding: 96px 24px;
  text-align: center;
}

.logo {
  display: block;
  margin: 0 auto 32px;
  height: 64px;
  width: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  background-color: var(--brand-soft);
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
}

.badge svg {
  flex-shrink: 0;
}

.hero h1 {
  margin: 32px auto 0;
  max-width: 900px;
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.accent {
  color: var(--brand);
}

.lead {
  margin: 24px auto 0;
  max-width: 576px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.cta-wrap {
  margin-top: 40px;
}

.cta {
  display: inline-block;
  border-radius: 9999px;
  background-color: var(--brand);
  color: var(--brand-foreground);
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-glow);
  transition: transform 0.2s ease;
}

.cta:hover {
  transform: scale(1.03);
}

.secure-note {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted-foreground);
}

/* ============ Steps ============ */
.steps {
  padding: 80px 24px;
}

.steps h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.steps-list {
  margin: 48px auto 0;
  max-width: 672px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  counter-reset: none;
}

.step-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background-color: #fafbfd;
  padding: 20px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background-color: var(--brand);
  color: var(--brand-foreground);
  font-size: 14px;
  font-weight: 700;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 600;
}

.step-card p {
  margin-top: 4px;
  font-size: 14px;
  color: var(--muted-foreground);
}

/* ============ Responsive ============ */
@media (max-width: 640px) {
  .hero {
    padding: 64px 20px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .steps h2 {
    font-size: 26px;
  }
}
