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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(160deg, #fdf0f2 0%, #fce8ec 60%, #f8e4ef 100%);
  min-height: 100vh;
  color: #1a1a2e;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 20px 48px;
}

/* ── Logo ── */
.logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.logo {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  background: #fff;
  border-radius: 14px;
  padding: 14px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  user-select: none;
}

.logo-cost {
  font-size: 1.9rem;
  font-weight: 900;
  color: #cc1a1a;
  letter-spacing: -1px;
  font-style: italic;
  text-transform: uppercase;
}

.logo-saved {
  font-size: 1.9rem;
  font-weight: 900;
  color: #1a3a8f;
  letter-spacing: -1px;
  font-style: italic;
  text-transform: uppercase;
}

.logo-badge {
  font-size: 0.55rem;
  font-weight: 700;
  color: #cc1a1a;
  vertical-align: super;
  letter-spacing: 0;
}

.logo-sub {
  display: block;
  text-align: center;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 3px;
  color: #1a3a8f;
  text-transform: uppercase;
  margin-top: -4px;
}

/* ── Hero ── */
.hero {
  text-align: center;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 6px;
}

.hero-title {
  font-size: clamp(1.6rem, 6vw, 2.2rem);
  font-weight: 900;
  color: #1a1a2e;
  line-height: 1.15;
}

/* ── Steps card ── */
.steps-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  margin-bottom: 28px;
}

.steps-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.97rem;
  color: #333;
  line-height: 1.4;
}

.step-num {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: #cc1a1a;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  margin-top: 1px;
}

/* ── CTA ── */
.cta-btn {
  display: block;
  width: 100%;
  padding: 20px;
  background: #cc1a1a;
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 40px;
  box-shadow: 0 6px 24px rgba(204,26,26,.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  -webkit-tap-highlight-color: transparent;
}

.cta-btn { animation: cta-bounce 2.8s ease-in-out 1.2s infinite; }
.cta-btn:hover { background: #b01515; box-shadow: 0 8px 28px rgba(204,26,26,.45); animation: none; }
.cta-btn:active { transform: scale(0.98); box-shadow: 0 3px 12px rgba(204,26,26,.3); animation: none; }

@keyframes cta-bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ── Back to Home Button ── */
.home-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: transparent;
  color: #1a3a8f;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  border: 2px solid #1a3a8f;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  margin-bottom: 40px;
  transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
  -webkit-tap-highlight-color: transparent;
}

.home-btn:hover {
  background: #1a3a8f;
  color: #fff;
  box-shadow: 0 6px 20px rgba(26,58,143,.25);
}

.home-btn:active { transform: scale(0.98); }

/* ── FAQ ── */
.faq-section { margin-bottom: 40px; }

.faq-heading {
  text-align: center;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-style: italic;
  color: #1a1a2e;
  margin-bottom: 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.15s;
}

.faq-q:hover { background: #fdf4f4; }

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, background 0.2s;
}

.faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: #555;
  stroke-width: 2.5;
  fill: none;
  transition: stroke 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: #cc1a1a;
}

.faq-item.open .faq-icon svg { stroke: #fff; }

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-body-inner {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
}

.faq-item.open .faq-body { max-height: 300px; }

/* ── Footer ── */
footer {
  text-align: center;
  font-size: 0.78rem;
  color: #999;
}

/* ── Responsive bump for wider screens ── */
@media (min-width: 480px) {
  .page { padding: 40px 32px 60px; }
  .logo-cost, .logo-saved { font-size: 2.1rem; }
}
