/* ============================================================
   Mark Norman – Better Mortgage Solutions
   In-site review flow — /rate-review + /equity-review (Round 5, spec
   W2). PORTED from assets/funnel.css (the ad-funnel engine's own
   stylesheet) into the main site with minimal adaptation. Question-
   step visual language, spacing and interaction states are otherwise
   unchanged. assets/funnel.css itself is byte-untouched — this is a
   separate file.

   Collision handling (both this file AND site.css load on
   /rate-review + /equity-review, since those pages carry the
   standard site chrome):

     - Every rule below is scoped under `.review-flow` — the wrapper
       div around the ported funnel markup — so it can never leak
       onto (or be leaked onto by) an unrelated site.css rule for an
       element outside that wrapper.

     - Custom properties: funnel.css's `:root { --sans: ...; }` would
       have silently overridden site.css's own `--sans` token (same
       name, different font stack) for the ENTIRE page — header, nav,
       footer, everything — since both are real :root declarations on
       the same document. Moved to `.review-flow { --sans: ...; }`;
       in fact `--sans` turned out to be used nowhere but the
       (dropped, see below) global `body` rule, so it isn't even
       carried forward. Every other funnel token (--navy, --gold,
       --gold-2, --white, --paper, --border, --muted, --shadow,
       --shadow-sm) happens to already share an identical value with
       site.css's token of the same name, but is still scoped here
       rather than redeclared at :root, per "never touch the shared
       cascade."

     - Base resets (`*`, `html`, `body`, `img, svg`) are DROPPED
       entirely: site.css already resets box-sizing/img/svg site-wide,
       and funnel.css's `body { background: ...; font-family: ...; }`
       would have repainted the whole page (header/footer included),
       not just the funnel card. `fieldset` / `legend` / `button`
       resets are kept, scoped under `.review-flow`.

     - Three funnel classes are BARE (unscoped) selectors in the
       original and happen to share a name with an existing BARE
       site.css rule of a different meaning: `.accent` (site.css:
       trust-strip/footer accent color), `.eyebrow` (site.css: band
       eyebrow), `.calendar-embed` (site.css: calendar.html's own
       booking-iframe wrapper). Scoping under `.review-flow` alone
       doesn't protect against these, since site.css's bare rule would
       still match an element inside `.review-flow` carrying that
       class. Renamed to `.review-accent`, `.review-eyebrow`,
       `.review-calendar-embed` — here and in the two review pages'
       markup (class-attribute-only rename; no copy/behavior change).

     - `.award-seal`, `.is-active`, `.is-visible`, `.premiere-logo`,
       `.stars` also appear in both stylesheets, but always inside a
       compound/scoped selector on both sides (e.g. site.css's
       `.footer-brand .premiere-logo` vs this file's `.brand-footer
       .premiere-logo`) — different parent scopes never match the
       same element, so the `.review-flow` prefix alone is enough; no
       rename needed.

     - `.step-actions` does NOT keep the funnel's `position: sticky;
       bottom: 0;` floating mobile action bar. On the standalone funnel
       pages that floating bar sits comfortably below a short (~140px)
       logo-only brand-bar; on the review pages the SAME step can start
       much further down the viewport (full site header + trust-strip +
       intro block above it), so at common mobile heights the floating
       bar was found to cover the last choice in a question with 4+
       options (measured: 44px of real overlap on Home Equity's opening
       goals question at 390×844 — verified with getBoundingClientRect,
       not just a screenshot artifact). Made static (normal document
       flow) at every width instead — this can never cover content, and
       is arguably the more conventional pattern for a flow embedded in
       a normal page with its own header/footer, vs. a dedicated
       app-like funnel screen. Does not collide with the site's own
       fixed `.bottom-cta` bar either way, since both review pages carry
       `data-bar-cta="none"` and never render one.

     - The sticky ad-funnel brand-bar (logo + progress, pinned to the
       viewport top) is NOT ported: the review pages already have the
       real, sticky-free site header for branding, so `.brand-bar`
       here keeps only its visual treatment (blurred backdrop, rounded
       top corners, bottom hairline) for the progress track — not
       `position: sticky`, which would fight the page's own header for
       the top of the viewport. `.brand-row` / the small in-bar logo
       and CCA badge markup, and the unused `[data-step-label]`
       `.step-count` styling, are dropped along with it (no such
       markup ships on the review pages).

     - Four inline `style="..."` attributes in the funnel source
       (goodnews-list icons, an inline `.hint`, two `margin-top`
       nudges, a "narrow" success-list constraint) are banned site-
       wide by scripts/check-site.py. Converted to small scoped
       utility classes below (`.review-goodnews-list` /
       `.review-goodnews-item`, `.hint--inline`, `.mt-14`,
       `.step-intro--sm`, `.benefit-list--narrow`) — markup-only
       change, same computed styles, zero copy change.
   ============================================================ */

/* Self-hosted Oswald (variable) — no external Google Fonts dependency.
   Same font file assets/funnel.css already references; @font-face
   can't be scoped to a selector, but declaring it again here is
   harmless (identical src, same font-family name, unused elsewhere). */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url('/assets/fonts/oswald.woff2') format('woff2');
}

.review-flow {
  --navy: #173a70;
  --navy-2: #224c8f;
  --navy-ink: #0f2748;
  --gold: #d8b56a;
  --gold-2: #ecd39b;
  --deep-red: #9d1116;
  --dark: #2d2a26;
  --white: #ffffff;
  --paper: #f6f7f9;
  --border: #dcdfe6;
  --muted: #5f6672;
  --shadow: 0 18px 50px rgba(15, 39, 72, 0.12);
  --shadow-sm: 0 6px 18px rgba(15, 39, 72, 0.08);
  --success-bg: #eef6f2;
  --success-border: #bfd8ca;
  --radius-card: 20px;
  --display: 'Oswald', 'Arial Narrow', Arial, Helvetica, sans-serif;
  /* funnel baseline (site body is line-height:1.6) */
  line-height: 1.5;
  color: var(--dark);
}

.review-flow .funnel-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 14px 14px 40px;
}

.review-flow .card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 39, 72, 0.06);
}

/* ---------- Progress bar (static — the page's own header owns the
   sticky top-of-viewport slot; see the collision notes above) ---------- */
.review-flow .brand-bar {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  border-bottom: 1px solid rgba(15, 39, 72, 0.06);
  padding: 12px 16px 0;
}
.review-flow .progress-track {
  width: 100%;
  height: 6px;
  background: #e9ecf2;
  border-radius: 999px;
  overflow: hidden;
  transform: translateY(1px);
  margin-bottom: 12px;
}
.review-flow .progress-fill {
  height: 100%;
  width: 12%;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 999px;
  transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hero lead: headline left, award seal right — flexbox */
.review-flow .hero-lead { display: flex; gap: 16px; align-items: center; }
.review-flow .hero-lead .hero-text { flex: 1 1 auto; min-width: 0; }
.review-flow .award-seal { flex: 0 0 auto; height: 116px; width: auto; }

/* ---------- Content / stage ---------- */
.review-flow .content { padding: 16px 16px 14px; }

/* ---------- Steps ---------- */
.review-flow .step { display: none; }
.review-flow .step.is-active { display: block; animation: review-step-in 0.32s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes review-step-in {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.review-flow fieldset { border: 0; margin: 0; padding: 0; min-width: 0; }

/* The question itself */
.review-flow legend {
  display: block;
  width: 100%;
  padding: 0;
  font-family: var(--display);
  color: var(--navy);
  font-weight: 700;
  font-size: clamp(1.35rem, 1.05rem + 2.2vw, 2.1rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.review-flow .step-intro {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
  max-width: 46ch;
}
/* was style="font-size:14px" (mid-term "Based on your rate" interstitial) */
.review-flow .step-intro--sm { font-size: 14px; }
/* was style="margin-top:14px" (mid-term book step's "why 48 hours" line) */
.review-flow .mt-14 { margin-top: 14px; }
.review-flow .review-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.review-flow .q-body { margin-top: 14px; }
.review-flow .review-accent { color: var(--gold); }
.review-flow .offer { margin: 8px 0 0; font-weight: 800; font-size: 17px; color: var(--navy); }

/* ---------- Social proof + advisor credibility ---------- */
.review-flow .social-proof {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--navy-ink);
}
.review-flow .social-proof strong { color: var(--navy); font-weight: 800; }

.review-flow .advisor-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 16px 0 0;
  padding: 14px 16px;
  border: 1px solid var(--success-border);
  background: linear-gradient(180deg, #f9fbfa 0%, var(--success-bg) 100%);
  border-radius: 16px;
}
.review-flow .advisor-photo {
  flex: 0 0 auto;
  width: 92px; height: 92px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: var(--shadow-sm);
}
.review-flow .advisor-meta { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.review-flow .advisor-name { font-family: var(--display); font-weight: 700; color: var(--navy); font-size: 19px; line-height: 1.12; letter-spacing: -0.01em; }
.review-flow .advisor-role { font-size: 12.5px; color: var(--muted); line-height: 1.35; }

@media (min-width: 721px) {
  .review-flow .advisor-photo { width: 104px; height: 104px; }
  .review-flow .advisor-name { font-size: 21px; }
}

/* R5 W3 fix: the advisor card's rating row now reuses the site's real
   .g-badge component (site.css) instead of a hardcoded ★5.0/58-reviews
   span — see site/rate-review.html's advisor-card markup. site.js's
   page-wide `document.querySelectorAll('.g-badge')` live-update loop picks
   this instance up for free (no JS changes needed); this rule only adds
   the same 4px breathing room the old .advisor-rating carried. */
.review-flow .advisor-meta .g-badge { margin-top: 4px; }
.review-flow .privacy-line { display: flex; align-items: center; gap: 8px; margin: 14px 0 0; font-size: 12.5px; color: var(--muted); }
.review-flow .privacy-line svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--navy); }

.review-flow .benefit-list { margin: 16px 0 0; padding: 0; list-style: none; display: grid; gap: 11px; }
.review-flow .benefit-list li { display: flex; gap: 12px; align-items: center; font-weight: 700; color: var(--navy-ink); font-size: 16px; }
.review-flow .benefit-list svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; }
/* was style="text-align:left; max-width:320px; margin:0 auto" (both success steps' "what we'll cover" list) */
.review-flow .benefit-list--narrow { text-align: left; max-width: 320px; margin: 0 auto; }

/* was the "Based on your rate" interstitial's inline-styled <ul>/<li>/<svg>
   (mid-term step 4) — same computed look as .benefit-list/li/svg, given its
   own name since it sits outside the confirmed .benefit-list contexts. */
.review-flow .review-goodnews-list { margin: 14px 0 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.review-flow .review-goodnews-item { display: flex; gap: 12px; align-items: center; font-weight: 700; color: var(--navy-ink); font-size: 16px; }
.review-flow .review-goodnews-item svg { width: 20px; height: 20px; color: var(--gold); flex: 0 0 auto; }

.review-flow .steps { margin: 18px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; counter-reset: s; }
.review-flow .steps li { display: flex; gap: 12px; align-items: center; font-size: 13.5px; color: var(--navy-ink); font-weight: 600; }
.review-flow .steps li::before { counter-increment: s; content: counter(s); flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 800; font-size: 12px; display: grid; place-items: center; }

/* ---------- Inputs ---------- */
.review-flow .grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
.review-flow .full { grid-column: 1 / -1; }

.review-flow .field { display: flex; flex-direction: column; gap: 7px; }
.review-flow .field > label,
.review-flow .choice-group > .group-label {
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-ink);
}
.review-flow .hint { font-size: 12px; color: #6b7280; margin-top: 1px; line-height: 1.45; }
/* was style="display:inline" (both flows' contact-step "(optional)" hint) */
.review-flow .hint--inline { display: inline; }

.review-flow input[type="text"], .review-flow input[type="email"], .review-flow input[type="tel"],
.review-flow input[type="number"], .review-flow select, .review-flow textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  font-size: 16px; /* prevents iOS zoom */
  color: var(--dark);
  background: #fff;
  outline: none;
  font-family: inherit;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.review-flow textarea { min-height: 92px; resize: vertical; }
.review-flow input:focus, .review-flow select:focus, .review-flow textarea:focus {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 4px rgba(34, 76, 143, 0.14);
}
.review-flow .input-prefix { position: relative; }
.review-flow .input-prefix span { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--muted); font-size: 16px; font-weight: 700; }
.review-flow .input-prefix input { padding-left: 30px; }

/* ---------- Choice cards (radio / checkbox) ---------- */
.review-flow .choice-group { display: flex; flex-direction: column; gap: 12px; }
.review-flow .group-label { margin-bottom: 2px; }
.review-flow .choices { display: grid; gap: 10px; }
.review-flow .choices.inline { grid-template-columns: 1fr 1fr; }

.review-flow .choice {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, transform 0.05s ease;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-ink);
  position: relative;
}
.review-flow .choice:hover { border-color: var(--navy-2); }
.review-flow .choice:active { transform: scale(0.995); }
/* custom control */
.review-flow .choice input { appearance: none; -webkit-appearance: none; margin: 0; flex: 0 0 auto;
  width: 22px; height: 22px; border: 2px solid #c4c9d4; border-radius: 50%;
  background: #fff; transition: border-color 0.15s ease, background 0.15s ease; position: relative; }
.review-flow .choice input[type="checkbox"] { border-radius: 7px; }
.review-flow .choice input:checked { border-color: var(--navy); background: var(--navy); }
.review-flow .choice input:checked::after {
  content: ""; position: absolute; left: 6px; top: 2px; width: 6px; height: 11px;
  border: solid #fff; border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}
.review-flow .choice input[type="checkbox"]:checked::after { left: 6px; top: 2.5px; }
.review-flow .choice input:focus-visible { box-shadow: 0 0 0 4px rgba(34, 76, 143, 0.18); }
.review-flow .choice:has(input:checked) {
  border-color: var(--navy);
  background: linear-gradient(180deg, #f7faff 0%, #eef3fc 100%);
  box-shadow: 0 0 0 1.5px var(--navy), var(--shadow-sm);
}

/* ---------- Inline validation ---------- */
.review-flow .error-msg { margin: 8px 0 0; color: var(--deep-red); font-size: 13px; font-weight: 700; line-height: 1.4; }
.review-flow input.is-invalid, .review-flow select.is-invalid, .review-flow textarea.is-invalid {
  border-color: var(--deep-red);
  box-shadow: 0 0 0 4px rgba(157, 17, 22, 0.12);
}
.review-flow .choice-group.group-invalid > .group-label { color: var(--deep-red); }
.review-flow [data-group-error] { color: var(--deep-red); font-size: 13px; font-weight: 700; margin: 8px 0 0; }
.review-flow .field, .review-flow .choice-group, .review-flow .q-body { scroll-margin-top: 84px; scroll-margin-bottom: 104px; }

/* ---------- Hidden / conditional ---------- */
.review-flow [hidden] { display: none !important; }
.review-flow [data-show-if] { margin-top: 12px; }

/* ---------- Notes / callouts / upload ---------- */
.review-flow .note-box {
  background: linear-gradient(180deg, #f8f4ec 0%, #f5efe4 100%);
  border: 1px solid #ead9bd; color: #5a4630;
  padding: 14px 16px; border-radius: 14px; font-size: 13px; line-height: 1.55;
}
.review-flow .upload-box {
  border: 2px dashed #c9d0dd;
  background: linear-gradient(180deg, #fbfcfe 0%, #f5f7fb 100%);
  border-radius: 16px; padding: 16px;
}
.review-flow .upload-box label { font-weight: 700; font-size: 14px; color: var(--navy-ink); display: block; margin-bottom: 8px; }

/* ---------- Actions ----------
   Static (normal flow) at every width — not the funnel's floating
   `position: sticky; bottom: 0` bar. See the header comment above for
   why: the review pages carry more chrome above each step than the
   standalone funnel pages, so the floating bar was measurably covering
   the last choice in longer questions. */
.review-flow .step-actions {
  display: flex; align-items: center; gap: 12px;
  margin: 22px 0 0;
}
/* Auto-advance steps don't need a Continue button. */
.review-flow fieldset[data-autoadvance] .step-actions {
  margin: 18px 0 0; justify-content: flex-start;
}
.review-flow button { appearance: none; -webkit-appearance: none; border: none; font-family: inherit; cursor: pointer; }
.review-flow .btn-primary {
  background: linear-gradient(135deg, var(--navy-2), var(--navy));
  color: #fff; font-size: 16px; font-weight: 800; letter-spacing: 0.01em;
  padding: 16px 22px; border-radius: 14px;
  box-shadow: 0 12px 24px rgba(23, 58, 112, 0.22);
  transition: transform 0.12s ease, box-shadow 0.12s ease, opacity 0.12s ease;
}
.review-flow .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 30px rgba(23, 58, 112, 0.26); }
.review-flow .btn-primary:active { transform: translateY(0); }
.review-flow .btn-primary:disabled { opacity: 0.6; cursor: progress; transform: none; }
.review-flow .step-actions .btn-primary { flex: 1 1 auto; }
/* Back is a quiet text link */
.review-flow .btn-secondary {
  background: none; color: var(--muted); border: none;
  font-size: 15px; font-weight: 700; padding: 12px 8px; border-radius: 10px;
  flex: 0 0 auto;
}
.review-flow .btn-secondary:hover { color: var(--navy); }
.review-flow .step-actions span:empty { display: none; }

.review-flow .disclaimer { font-size: 11.5px; color: #6b7280; line-height: 1.5; max-width: 60ch; margin: 16px 0 4px; }

/* required marker */
.review-flow .req::after { content: " *"; color: var(--deep-red); }

/* ---------- Trust row (persistent reassurance) ---------- */
.review-flow .trust-row {
  display: flex; flex-wrap: wrap; gap: 6px 16px; justify-content: center;
  margin: 18px 4px 2px; padding-top: 16px;
  border-top: 1px solid rgba(15, 39, 72, 0.07);
}
.review-flow .trust-row span {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 700; color: var(--muted); letter-spacing: 0.01em;
}
.review-flow .trust-row svg { width: 13px; height: 13px; flex: 0 0 auto; color: var(--gold); }

/* ---------- Footer (Premiere Mortgage Centre) ---------- */
.review-flow .brand-footer {
  margin: 14px 0 2px;
  background: var(--navy-ink);
  border-radius: 14px;
  padding: 11px 14px;
  text-align: center;
}
.review-flow .brand-footer .premiere-logo { width: 116px; max-width: 44%; margin: 0 auto; display: block; }

/* ---------- Success / confirmation ---------- */
.review-flow .success { display: none; }
.review-flow .success.is-visible { display: block; animation: review-step-in 0.32s ease both; }
.review-flow .success-card {
  border-radius: 18px; padding: 26px 20px;
  border: 1px solid var(--success-border);
  background: linear-gradient(180deg, #f7faf8 0%, var(--success-bg) 100%);
  text-align: center;
}
.review-flow .success-badge {
  width: 56px; height: 56px; margin: 0 auto 14px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #2f8f64, #2b7d57); color: #fff;
}
.review-flow .success-badge svg { width: 28px; height: 28px; }
.review-flow .success-card h2 {
  margin: 0 0 8px; font-family: var(--display);
  font-size: clamp(1.4rem, 1.1rem + 1.6vw, 1.75rem);
  color: var(--navy); font-weight: 700; letter-spacing: -0.01em;
}
.review-flow .success-card p { margin: 0 auto 12px; font-size: 14.5px; line-height: 1.6; color: #374151; max-width: 44ch; }
.review-flow .booking {
  margin: 16px auto 0; max-width: 360px; text-align: left;
  background: linear-gradient(180deg, #faf7f1 0%, #f8f4ec 100%);
  border: 1px solid #e4d6b6; border-left: 5px solid var(--gold);
  padding: 14px 16px; border-radius: 14px;
}
.review-flow .booking .label { font-size: 12px; color: var(--muted); font-weight: 700; }
.review-flow .booking-date { display: inline-block; margin-top: 6px; font-size: 16px; font-weight: 800; color: var(--navy); }
.review-flow .success .btn-primary { margin-top: 20px; display: inline-block; text-decoration: none; text-align: center; }
.review-flow .calendar-intro { font-weight: 600; margin: 0 auto 6px; font-size: 14.5px; }
.review-flow .review-calendar-embed { margin-top: 12px; width: 100%; }
.review-flow .review-calendar-embed iframe { width: 100%; border: none; min-height: 620px; display: block; }
/* Reassurance lives BELOW the calendar so it never pushes the booking action
   down. Anyone ready to book acts immediately; hesitaters scroll for reasons. */
.review-flow .post-calendar { margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--success-border); }
.review-flow .cover-heading { font-weight: 700 !important; color: var(--navy); margin: 0 auto 10px !important; font-size: 14.5px; }
.review-flow .post-calendar .benefit-list { margin-top: 0; }

/* ============================================================
   Tablet / desktop
   ============================================================ */
@media (min-width: 721px) {
  .review-flow { --radius-card: 24px; }
  .review-flow .funnel-wrap { max-width: 640px; padding: 40px 18px 64px; }
  .review-flow .brand-bar { padding: 16px 28px 0; }
  .review-flow .award-seal { height: 128px; }
  .review-flow .content { padding: 30px 34px 26px; }
  .review-flow .choices.inline { grid-template-columns: repeat(3, 1fr); }

  /* Desktop: primary button first (row-reverse), fixed width instead of
     filling the row. */
  .review-flow .step-actions {
    margin: 26px 0 0;
    flex-direction: row-reverse; justify-content: flex-start; gap: 16px;
  }
  .review-flow .step-actions .btn-primary { flex: 0 0 auto; min-width: 200px; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .review-flow .step.is-active, .review-flow .success.is-visible { animation: none; }
  .review-flow .btn-primary, .review-flow .progress-fill, .review-flow .choice,
  .review-flow input, .review-flow select, .review-flow textarea { transition: none !important; }
}
