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

html, body {
  height: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(160deg, #e8f0f8 0%, #d0e2f0 100%);
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px 32px;
  -webkit-font-smoothing: antialiased;
}

.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 420px;
}

/* Logo */
.logo-wrap {
  filter: drop-shadow(0 4px 14px rgba(0, 73, 144, 0.30));
}

.logo {
  width: 68px;
  height: 68px;
  display: block;
}

/* Card */
.card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px 22px 26px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}

/* Badge */
.badge {
  background: #e8f0fb;
  color: #004990;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.dot {
  width: 7px;
  height: 7px;
  background: #004990;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* Headline */
h1 {
  font-size: 28px;
  font-weight: 800;
  color: #111111;
  line-height: 1.22;
}

.amount {
  color: #004990;
}

/* Subtext */
.sub {
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  max-width: 320px;
}

/* Steps */
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  gap: 6px;
  padding: 0 2px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #555;
  font-weight: 500;
  flex: 0 0 auto;
  width: 76px;
  line-height: 1.3;
}

.step-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #004990;
  color: white;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #c8d8eb;
  margin-top: 16px;
  border-radius: 2px;
}

/* Info box */
.info-box {
  background: #f4f8fd;
  border: 1px solid #c8d8eb;
  border-radius: 14px;
  padding: 16px 18px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-title {
  font-size: 13px;
  font-weight: 700;
  color: #004990;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.info-list li {
  font-size: 13.5px;
  color: #444;
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}

.info-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #004990;
  font-weight: 700;
  font-size: 12px;
}

/* CTA Button */
.cta {
  display: block;
  width: 100%;
  background: #004990;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 16px;
  border-radius: 14px;
  letter-spacing: 0.03em;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 22px rgba(0, 73, 144, 0.35);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.cta:hover {
  background: #003a75;
}

.cta:active {
  transform: scale(0.97);
  box-shadow: 0 3px 12px rgba(0, 73, 144, 0.25);
}

/* Small note */
.note {
  font-size: 12px;
  color: #aaa;
  margin-top: -4px;
}

/* Footer */
.footer {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #555;
}

.tagline {
  font-weight: 500;
}

.verified {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #004990;
  font-weight: 600;
}

/* Small phones (SE, older Android) */
@media (max-width: 360px) {
  h1 { font-size: 24px; }
  .card { padding: 24px 16px 22px; }
  .cta { font-size: 16px; padding: 16px; }
}
