:root {
  --blue: #0a56b5;
  --blue-deep: #063a7b;
  --yellow: #ffc220;
  --ink: #0f223f;
  --text: #1f3761;
  --white: #ffffff;
  --ok: #0a9b6f;
  --warn: #d97a00;
  --danger: #b02a2a;
  --shadow: 0 18px 42px rgba(0, 36, 79, 0.16);
  --radius-lg: 22px;
  --radius-md: 14px;
}

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

body {
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 7% 0%, rgba(255, 194, 32, 0.28), transparent 26%),
    radial-gradient(circle at 84% 16%, rgba(10, 86, 181, 0.2), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #ecf4ff 100%);
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(8px);
  background: rgba(248, 251, 255, 0.9);
  border-bottom: 1px solid rgba(15, 34, 63, 0.1);
}

.topbar-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, var(--blue), var(--blue-deep));
  color: var(--yellow);
  box-shadow: 0 8px 16px rgba(0, 56, 117, 0.24);
}

.hero {
  padding: 36px 0 20px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 194, 32, 0.28);
  color: #6e4f00;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 12px;
  margin-bottom: 12px;
}

h1 {
  font-family: "Bebas Neue", sans-serif;
  color: var(--ink);
  letter-spacing: 1px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin-bottom: 10px;
}

.lead {
  color: #48608b;
  line-height: 1.66;
  max-width: 72ch;
  margin-bottom: 18px;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.steps,
.stats,
.social-proof,
.faq {
  margin-bottom: 18px;
}

.steps h2,
.social-proof h2,
.faq h2 {
  font-family: "Bebas Neue", sans-serif;
  color: var(--ink);
  letter-spacing: 1px;
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 10px;
}

.steps-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.step-card {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 56, 117, 0.13);
  box-shadow: 0 10px 20px rgba(0, 43, 94, 0.08);
  padding: 14px;
}

.step-card span {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 999px;
  background: rgba(255, 194, 32, 0.24);
  color: #6c4b00;
  padding: 4px 8px;
  margin-bottom: 7px;
}

.step-card h3 {
  color: #132e57;
  font-size: 1rem;
  margin-bottom: 5px;
}

.step-card p {
  color: #4b638d;
  font-size: 0.9rem;
  line-height: 1.5;
}

.stats {
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #0a56b5, #052f68);
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stat-box {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 14px;
}

.stat-box strong {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.stat-box span {
  display: block;
  opacity: 0.9;
  font-size: 0.82rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  cursor: pointer;
  font-size: 0.93rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), #ffd35d);
  color: #11213c;
  box-shadow: 0 12px 20px rgba(255, 194, 32, 0.34);
}

.btn-secondary {
  background: #fff;
  color: var(--blue-deep);
  border: 1px solid rgba(0, 56, 117, 0.2);
}

.pill {
  border-radius: 999px;
  border: 1px solid rgba(0, 56, 117, 0.15);
  background: #f4f8ff;
  padding: 6px 11px;
  color: #46608a;
  font-size: 0.82rem;
  font-weight: 700;
}

.list {
  background: #fff;
  border: 1px solid rgba(0, 56, 117, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 48px;
}

.status {
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 0.9rem;
  border: 1px solid rgba(0, 56, 117, 0.12);
  background: #f0f6ff;
  color: #214879;
  margin-bottom: 12px;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.status.ok {
  background: #ecfcf6;
  border-color: rgba(10, 155, 111, 0.28);
  color: #116c52;
}

.status.warn {
  background: #fff7ed;
  border-color: rgba(217, 122, 0, 0.22);
  color: #8a4f00;
}

.status.error {
  background: #fff2f2;
  border-color: rgba(176, 42, 42, 0.22);
  color: #992222;
}

.cards {
  display: grid;
  gap: 12px;
}

.card {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 56, 117, 0.13);
  background: #f9fcff;
  padding: 15px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 7px;
}

.card-title {
  color: #16325e;
  font-weight: 700;
  line-height: 1.36;
}

.card-desc {
  color: #45608c;
  font-size: 0.92rem;
  line-height: 1.58;
  margin-bottom: 10px;
}

.card-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-claim {
  background: linear-gradient(130deg, #0a60c6, #003d83);
  color: #fff;
  min-width: 148px;
}

.social-proof {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(0, 56, 117, 0.12);
  box-shadow: var(--shadow);
  padding: 18px;
}

.quotes-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

blockquote {
  border-radius: 14px;
  border: 1px solid rgba(0, 56, 117, 0.12);
  background: #f8fbff;
  padding: 13px;
}

blockquote p {
  color: #2c4a79;
  font-size: 0.92rem;
  line-height: 1.56;
  margin-bottom: 8px;
}

blockquote cite {
  color: #5b7399;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 700;
}

.faq {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(0, 56, 117, 0.12);
  box-shadow: var(--shadow);
  padding: 18px;
  margin-bottom: 42px;
}

.faq details {
  border-radius: 12px;
  border: 1px solid rgba(0, 56, 117, 0.13);
  background: #f8fbff;
  padding: 12px;
  margin-bottom: 8px;
}

.faq summary {
  cursor: pointer;
  color: #18315a;
  font-weight: 700;
}

.faq p {
  color: #4e6590;
  font-size: 0.9rem;
  line-height: 1.56;
  margin-top: 8px;
}

@media (max-width: 680px) {
  .steps-grid,
  .stats,
  .quotes-grid {
    grid-template-columns: 1fr;
  }

  .list,
  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .btn {
    width: 100%;
  }

  .hero-cta-row,
  .card-actions {
    width: 100%;
  }
}
