@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');

:root {
  /* Light theme — the Haushelden mark (navy + amber) is drawn for light
     surfaces, so the whole funnel runs on white/near-white, not the dark
     app shell the palette started as. */
  --color-bg:          #ffffff;
  --color-surface:     #f4f7fa;
  --color-surface-2:   #e8eef3;
  --color-blue:        #1c5280;
  --color-blue-light:  #2f6fa8;
  --color-amber:       #ed9e39;
  --color-amber-light: #fab74e;
  --color-amber-deep:  #b9721c; /* amber accent text on white — #ed9e39 alone is too pale to read */
  --color-amber-dim:   rgba(237,158,57,0.3);
  --color-text:        #10202e;
  --color-text-body:   #3c4c5c;
  --color-text-muted:  #6b7a89;
  --color-border:      rgba(16,32,46,0.10);
  --color-good:        #2f9e5b;
  --color-bad:         #d1483d;
  --font-heading: "Poppins", "Inter", system-ui, -apple-system, sans-serif;
  --font-sans:    "Inter", system-ui, -apple-system, sans-serif;
}

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

html { overflow-x: hidden; }

body {
  background-color: var(--color-bg);
  color: var(--color-text-body);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: 100dvh;
  position: relative;
}

/* Ambient background tint — very soft, just enough to keep the white from
   feeling flat; nowhere near strong enough to hurt contrast. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(237,158,57,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--color-text);
}

input, select, textarea, button { font-family: var(--font-sans); }
input::placeholder { color: var(--color-text-muted); opacity: 0.85; }
input:focus, textarea:focus { outline: none; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--color-bg); }
::-webkit-scrollbar-thumb { background: var(--color-amber); border-radius: 2px; }

/* ── Cursor spotlight (desktop only) ─────────────────────────── */
.cursor-spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237,158,57,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transition: transform 0.12s linear;
}

/* ── App shell / progress bar ────────────────────────────────── */
.app-shell {
  position: relative;
  z-index: 2;
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.funnel-progress {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-border);
  z-index: 50;
  padding-top: env(safe-area-inset-top);
  background-clip: content-box;
}
.funnel-progress-fill {
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--color-amber), var(--color-amber-light));
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Brand header ─────────────────────────────────────────────────
   Sits flush on the same white surface as the rest of the funnel — a
   thin divider is enough to separate it from the content below. */
.brand-bar {
  padding: calc(1.75rem + env(safe-area-inset-top)) 1.25rem 1.3rem;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.brand-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-logo {
  height: 84px;
  width: auto;
  max-width: 100%;
  display: block;
}
.brand-pill {
  display: inline-block;
  margin-top: 0.9rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-blue);
  background: rgba(237,158,57,0.14);
  border: 1px solid rgba(237,158,57,0.4);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
}
.brand-tagline {
  margin-top: 0.85rem;
  font-size: 0.92rem;
  color: var(--color-text-body);
  max-width: 26rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .brand-logo { height: 108px; }
}
.trust-strip {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.85rem;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  color: var(--color-text-muted);
}
.trust-chip svg { color: var(--color-amber-deep); flex-shrink: 0; }

/* ── Quiz shell ───────────────────────────────────────────────── */
.quiz-root {
  flex: 1;
  position: relative;
  padding-bottom: calc(2rem + env(safe-area-inset-bottom));
}
.screen {
  display: none;
  padding: 0.5rem 1.25rem 2rem;
  animation: screen-in 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}
.screen.is-active { display: block; }

@keyframes screen-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

.screen-inner { max-width: 420px; margin: 0 auto; }
.screen-inner--wide { max-width: 460px; }
.screen-inner--center { text-align: center; padding-top: 2.5rem; }

.step-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0.6rem;
}

.question {
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
}
.question--hero { font-size: 1.5rem; margin-top: 1rem; }

.lead-text {
  font-size: 0.95rem;
  color: var(--color-text-body);
  margin-bottom: 1.1rem;
}
.lead-text--strong { font-size: 1.05rem; color: var(--color-text); font-weight: 500; }

.field-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0.7rem 0 0.9rem;
}

/* ── Icon badges ──────────────────────────────────────────────── */
.icon-badge {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-amber-deep);
}
.icon-badge--brand { color: var(--color-amber-deep); background: rgba(237,158,57,0.12); border-color: rgba(237,158,57,0.3); }
.icon-badge--brand-blue { color: var(--color-blue); background: rgba(28,82,128,0.1); border-color: rgba(28,82,128,0.25); }
.icon-badge--good { color: var(--color-good); background: rgba(47,158,91,0.12); border-color: rgba(47,158,91,0.3); }
.icon-badge--warn { color: var(--color-amber-deep); background: rgba(237,158,57,0.14); border-color: rgba(237,158,57,0.35); }

.result-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border: 2px solid;
}
.result-icon--good { color: var(--color-good); border-color: var(--color-good); background: rgba(47,158,91,0.1); }
.result-icon--bad { color: var(--color-bad); border-color: var(--color-bad); background: rgba(209,72,61,0.1); }
.icon-draw { stroke-dasharray: 1; stroke-dashoffset: 1; animation: draw 0.55s 0.1s ease forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

/* ── Checklist ────────────────────────────────────────────────── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin: 0.9rem 0 1.1rem; }
.checklist li { display: flex; align-items: flex-start; gap: 0.55rem; font-size: 0.88rem; color: var(--color-text-body); }
.checklist li svg { color: var(--color-good); flex-shrink: 0; margin-top: 0.1rem; }

/* ── Hero image ───────────────────────────────────────────────── */
.hero-glow {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.1rem;
  transition: transform 0.25s ease;
  transform-style: preserve-3d;
  position: relative;
  box-shadow: 0 16px 40px -18px rgba(16,32,46,0.35);
}
.hero-zoom { position: relative; }
.hero-zoom-media { width: 100%; height: auto; display: block; aspect-ratio: 928 / 700; object-fit: cover; }
.ad-creative { width: 100%; height: auto; display: block; border-radius: 20px; margin-bottom: 1.1rem; }

/* ── Answer tiles ─────────────────────────────────────────────── */
.answer-grid { display: grid; gap: 0.65rem; margin-bottom: 0.5rem; }
.answer-grid--1 { grid-template-columns: 1fr; }
.answer-grid--2 { grid-template-columns: 1fr 1fr; }
.answer-grid--3 { grid-template-columns: 1fr 1fr 1fr; }

/* Anrede-Auswahl: gleiche Optik wie answer-tile, aber als natives Radio-Label */
.radio-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  padding: 0.85rem 0.6rem;
  border-radius: 14px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}
.radio-tile input { position: absolute; opacity: 0; pointer-events: none; }
.radio-tile:hover { border-color: var(--color-amber-dim); background: var(--color-surface-2); }
.radio-tile:has(input:checked) { border-color: var(--color-amber); background: rgba(237,158,57,0.12); }

.answer-tile {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3.1rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  border: 1.5px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.12s ease;
}
.answer-tile:hover { border-color: var(--color-amber-dim); background: var(--color-surface-2); }
.answer-tile:active { transform: scale(0.98); }
.answer-tile svg { color: var(--color-amber-deep); flex-shrink: 0; }
.answer-tile--yes { border-color: rgba(47,158,91,0.4); }
.answer-tile--yes:hover { background: rgba(47,158,91,0.08); }
.answer-tile--no { border-color: var(--color-border); }
.answer-tile.is-selected { border-color: var(--color-amber); background: rgba(237,158,57,0.12); }

/* ── Slider (Stromkosten) ─────────────────────────────────────── */
.slider-field { margin: 1.2rem 0 0.6rem; }
.slider-value {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.9rem;
}
.slider-value-unit { font-size: 1rem; color: var(--color-text-muted); margin-left: 0.3rem; }

input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(to right, var(--color-amber) 0%, var(--color-amber) var(--slider-progress, 30%), var(--color-surface-2) var(--slider-progress, 30%), var(--color-surface-2) 100%);
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-amber);
  border: 3px solid #ffffff;
  box-shadow: 0 1px 4px rgba(16,32,46,0.3), 0 0 0 2px var(--color-amber);
  cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-amber);
  border: 3px solid #ffffff;
  box-shadow: 0 1px 4px rgba(16,32,46,0.3), 0 0 0 2px var(--color-amber);
  cursor: pointer;
}
.slider-scale { display: flex; justify-content: space-between; font-size: 0.72rem; color: var(--color-text-muted); margin-top: 0.5rem; }

.preset-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.preset-chip {
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-body);
  font-size: 0.78rem;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background-color 0.15s ease;
}
.preset-chip.is-selected, .preset-chip:hover { border-color: var(--color-amber); color: var(--color-blue); background: rgba(237,158,57,0.1); }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 1rem 1.6rem;
  min-height: 3.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: filter 0.15s ease, transform 0.12s ease;
  position: relative;
  overflow: hidden;
}
.btn--block { width: 100%; }
.btn--primary { background: linear-gradient(135deg, var(--color-amber), var(--color-amber-light)); color: #1a1005; box-shadow: 0 12px 28px -12px rgba(237,158,57,0.65); }
.btn--primary:hover { filter: brightness(1.04); }
.btn--primary:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.5; cursor: not-allowed; filter: none; box-shadow: none; }

/* Inline loading spinner — swapped in on submit instead of just changing the
   button label, so "wird gesendet" has real motion behind it. */
.btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2.5px solid rgba(26,16,5,0.3);
  border-top-color: #1a1005;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading { cursor: wait; }
.btn.is-loading:disabled { opacity: 0.85; }

/* Turnstile: "interaction-only" appearance keeps it invisible unless a
   challenge is actually required, but this is a safety net so it never
   forces a big empty box into the layout while (not) rendering. */
.cf-turnstile { display: flex; justify-content: center; margin: 0.4rem 0; min-height: 0; }
.cf-turnstile:empty { margin: 0; }

.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(16,32,46,0.14);
  transform: scale(0);
  animation: ripple-anim 0.6s ease-out;
  pointer-events: none;
}
@keyframes ripple-anim { to { transform: scale(1); opacity: 0; } }

/* ── Advertorial / trust bridge ───────────────────────────────── */
.advertorial-alert {
  font-size: 0.9rem;
  color: var(--color-text-body);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-amber);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.1rem;
}
.feature-grid-title { font-size: 0.85rem; font-weight: 600; color: var(--color-text); margin-bottom: 0.7rem; }
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; margin-bottom: 1.1rem; }
.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 0.9rem 0.85rem;
}
.feature-icon {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(237,158,57,0.14);
  color: var(--color-amber-deep);
  margin-bottom: 0.5rem;
}
.feature-card h3 { font-size: 0.85rem; margin-bottom: 0.25rem; color: var(--color-text); }
.feature-card p { font-size: 0.75rem; color: var(--color-text-muted); line-height: 1.4; }

.stat-block--social {
  text-align: center;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1.1rem;
}
.stat-value { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: var(--color-blue); display: block; }
.stat-label { font-size: 0.78rem; color: var(--color-text-muted); }
.social-proof { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-top: 0.6rem; }
.avatar {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--color-blue);
  color: #fff; font-size: 0.7rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.stars { display: flex; gap: 1px; color: var(--color-amber-deep); }
.social-proof-text { font-size: 0.75rem; color: var(--color-text-muted); }

/* ── Loading spinner ──────────────────────────────────────────── */
.spinner {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 3px solid var(--color-border);
  border-top-color: var(--color-amber);
  margin: 0.5rem auto 1.3rem;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Savings result ───────────────────────────────────────────── */
.confetti-anchor { position: relative; }
.savings-amount {
  font-family: var(--font-heading);
  font-size: 2.9rem;
  font-weight: 700;
  color: var(--color-amber-deep);
  margin: 0.3rem 0 0.4rem;
}
.savings-amount-unit { font-size: 1.1rem; color: var(--color-text-muted); margin-left: 0.3rem; }
.count-pop { animation: count-pop 0.35s ease; }
@keyframes count-pop { 0% { transform: scale(1); } 40% { transform: scale(1.06); } 100% { transform: scale(1); } }

.compare-bars { display: flex; flex-direction: column; gap: 0.6rem; margin: 1.1rem 0; text-align: left; }
.compare-row { display: flex; align-items: center; gap: 0.6rem; }
.compare-label { width: 5.5rem; font-size: 0.78rem; color: var(--color-text-muted); flex-shrink: 0; }
.compare-track { flex: 1; height: 10px; border-radius: 999px; background: var(--color-surface-2); overflow: hidden; }
.compare-fill { height: 100%; width: 0%; border-radius: 999px; transition: width 1s cubic-bezier(0.22, 1, 0.36, 1); }
.compare-fill--before { background: #a7b4c0; }
.compare-fill--after { background: linear-gradient(90deg, var(--color-amber), var(--color-amber-light)); }
.compare-value { width: 4.5rem; text-align: right; font-size: 0.82rem; font-weight: 600; color: var(--color-text); flex-shrink: 0; }

.co2-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(47,158,91,0.1);
  border: 1px solid rgba(47,158,91,0.3);
  color: var(--color-good);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  margin-bottom: 0.8rem;
}

/* ── Confetti ─────────────────────────────────────────────────── */
.confetti-piece {
  position: absolute;
  width: 7px; height: 10px;
  border-radius: 2px;
  animation: confetti-burst 0.9s ease-out forwards;
}
@keyframes confetti-burst {
  0%   { transform: translate(-50%, -50%) rotate(0deg); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--rot)); opacity: 0; }
}

/* ── Fields ───────────────────────────────────────────────────── */
.field {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.5rem;
  transition: border-color 0.15s ease;
}
.field:focus-within { border-color: var(--color-amber); }
.field.is-invalid { border-color: var(--color-bad); background: rgba(209,72,61,0.05); }
.field.is-invalid:focus-within { border-color: var(--color-bad); }
.field input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-size: 1rem;
}
.field-icon { color: var(--color-amber-deep); display: flex; flex-shrink: 0; }
.field.is-invalid .field-icon { color: var(--color-bad); }
.field-prefix { color: var(--color-text-muted); font-size: 0.9rem; flex-shrink: 0; }
.field--phone input { padding-left: 0.1rem; }
.field-error {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--color-bad);
  font-size: 0.82rem;
  font-weight: 700;
  margin: -0.15rem 0 0.7rem;
}
.field-error[hidden] { display: none; }
.field-error svg { flex-shrink: 0; }

.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin: 0.8rem 0 1.1rem;
}
.consent input { margin-top: 0.2rem; accent-color: var(--color-amber); flex-shrink: 0; }
.consent a { color: var(--color-blue); }

/* ── Trust block / progress ring ──────────────────────────────── */
.trust-block {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 1rem;
  margin: 1rem 0;
  text-align: center;
}
.trust-block-icon { color: var(--color-amber-deep); margin-bottom: 0.4rem; }
.trust-block p { font-size: 0.82rem; color: var(--color-text-body); margin-bottom: 0.4rem; }
.trust-block-list { color: var(--color-text-muted) !important; font-size: 0.78rem !important; }

.progress-wrap { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; margin-top: 1rem; }
.progress-ring { transform: rotate(-90deg); }
.progress-ring-track { fill: none; stroke: var(--color-border); stroke-width: 6; }
.progress-ring-fill {
  fill: none;
  stroke: var(--color-amber);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
}
.progress-label { font-size: 0.78rem; color: var(--color-text-muted); text-align: center; max-width: 16rem; }

/* ── Footer (Landingpage-Rahmen um den Funnel) ───────────────────── */
.site-footer {
  margin-top: 1.5rem;
  padding: 1.4rem 1.25rem 2rem;
  text-align: center;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.82rem;
}
.site-footer-brand { font-weight: 600; color: var(--color-text); margin-bottom: 0.4rem; }
.site-footer-links { display: flex; justify-content: center; gap: 1rem; margin-bottom: 0.5rem; }
.site-footer-links a { color: var(--color-text-muted); text-decoration: underline; }
.site-footer-links a:hover { color: var(--color-text); }
.site-footer-copy { opacity: 0.8; }

/* ── Responsive ───────────────────────────────────────────────── */

/* Small phones (iPhone SE and similar ≤ 375px) — tighten up spacing and
   type scale a notch further so nothing feels cramped or clips. */
@media (max-width: 380px) {
  .brand-bar { padding-left: 1rem; padding-right: 1rem; }
  .brand-logo { height: 72px; }
  .screen { padding-left: 1rem; padding-right: 1rem; }
  .question { font-size: 1.3rem; }
  .question--hero { font-size: 1.35rem; }
  .feature-grid { gap: 0.55rem; }
  .feature-card { padding: 0.75rem 0.7rem; }
  .savings-amount { font-size: 2.5rem; }
}

@media (min-width: 640px) {
  .question { font-size: 1.7rem; }
  .savings-amount { font-size: 3.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
