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

* {
  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.3), transparent 25%),
    radial-gradient(circle at 84% 15%, rgba(10, 86, 181, 0.2), transparent 32%),
    linear-gradient(180deg, #f8fbff 0%, #edf4ff 100%);
  min-height: 100vh;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  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);
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 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), #ffd25a);
  color: #11213c;
  box-shadow: 0 12px 20px rgba(255, 194, 32, 0.35);
}

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

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  align-items: stretch;
  padding: 36px 0 18px;
}

.kicker {
  display: inline-flex;
  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,
h2 {
  font-family: "Bebas Neue", sans-serif;
  color: var(--ink);
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(2.2rem, 5.1vw, 4.8rem);
  line-height: 0.94;
  margin-bottom: 10px;
}

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

.hero-actions,
.hero-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-bottom: 14px;
}

.hero-pills span {
  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;
}

.hero-card {
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, #0a56b5, #052f68);
  color: #fff;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-card-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.hero-card-top span {
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-card-top strong {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.8rem;
  color: #ffe18f;
}

.timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.timer div {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 9px;
}

.timer strong {
  display: block;
  font-size: 1.04rem;
}

.timer span {
  font-size: 0.73rem;
  opacity: 0.9;
  text-transform: uppercase;
}

.full {
  width: 100%;
}

.steps,
.stats,
.quotes,
.faq,
.bottom-cta {
  margin-bottom: 18px;
}

.steps h2,
.quotes h2,
.faq h2,
.bottom-cta h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  margin-bottom: 10px;
}

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

.steps-grid article {
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(0, 56, 117, 0.12);
  box-shadow: 0 10px 22px rgba(0, 43, 94, 0.08);
  padding: 14px;
}

.steps-grid span {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: rgba(255, 194, 32, 0.3);
  color: #5e4200;
  font-weight: 900;
  margin-bottom: 8px;
}

.steps-grid h3 {
  color: #14305a;
  font-size: 1rem;
  margin-bottom: 6px;
}

.steps-grid p {
  color: #4d6590;
  font-size: 0.9rem;
  line-height: 1.52;
}

.stats {
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid rgba(0, 56, 117, 0.12);
  box-shadow: var(--shadow);
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.stats div {
  border-radius: 14px;
  border: 1px solid rgba(0, 56, 117, 0.1);
  background: #f7fbff;
  padding: 12px;
}

.stats strong {
  display: block;
  color: #14305a;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.stats span {
  font-size: 0.82rem;
  color: #5a7197;
}

.quotes,
.faq,
.bottom-cta {
  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;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

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

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

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

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

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

.faq p {
  color: #4f6792;
  margin-top: 8px;
  line-height: 1.56;
}

.bottom-cta {
  text-align: center;
  margin-bottom: 42px;
}

.bottom-cta p {
  color: #506792;
  margin-bottom: 12px;
}

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

@media (max-width: 520px) {
  .btn {
    width: 100%;
  }

  .hero-actions,
  .hero-pills,
  .timer {
    width: 100%;
  }
}
