:root {
  --bg: #070b12;
  --bg-2: #0f1722;
  --panel: #111c29;
  --panel-2: #152434;
  --surface: rgba(17, 28, 41, 0.9);
  --text: #f1efe9;
  --muted: #b4b0a8;
  --line: rgba(255, 255, 255, 0.08);
  --orange: #ff8a3d;
  --orange-2: #ff5c2c;
  --cyan: #4ec9ff;
  --green: #7ef0ac;
  --red: #e6402a;
  --yellow: #f5c518;
  --blue: #2e5bff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", sans-serif;
  background: linear-gradient(160deg, #1b1c1a 0%, #141513 52%, #191a18 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(21, 22, 20, 0.92);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-block small {
  display: block;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.62rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
}

.main-nav a {
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.primary-btn,
.ghost-btn,
.inline-link,
.close-btn {
  border: 0;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.primary-btn {
  padding: 0.7rem 1.1rem;
  border: 1px solid #d5d9de;
  border-radius: 6px;
  background: #e4e7eb;
  color: #15191f;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
}

.ghost-btn {
  padding: 0.7rem 1rem;
  border-radius: 6px;
  background: transparent;
  color: #c9cdd3;
  border: 1px solid #454a52;
  font-weight: 500;
  letter-spacing: 0;
}

.primary-btn:hover:not(:disabled) {
  background: #ffffff;
  border-color: #ffffff;
}

.ghost-btn:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
  border-color: #777d86;
  color: #ffffff;
}

.primary-btn:active:not(:disabled) {
  background: #c9cdd3;
  border-color: #c9cdd3;
  box-shadow: none;
}

.ghost-btn:active:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
}

.primary-btn:focus-visible,
.ghost-btn:focus-visible,
.inline-link:focus-visible,
.close-btn:focus-visible {
  outline: 2px solid #b9d8eb;
  outline-offset: 4px;
}

.primary-btn:disabled,
.ghost-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow: none;
}

.inline-link:hover,
.close-btn:hover {
  color: #ffffff;
}

.full {
  width: 100%;
}

/* ---------- Reveal-on-scroll animation ---------- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Hero (simplified) ---------- */

.hero {
  position: relative;
  padding: 120px 0 80px;
  text-align: center;
}

.hero-simple {
  max-width: 760px;
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  font-weight: 700;
}

.eyebrow.small {
  letter-spacing: 0.12em;
  margin-bottom: 6px;
}

.hero-simple h1 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-text {
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(241, 239, 233, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- Showcase (2 chassis) ---------- */

.showcase-section {
  padding: 40px 0 96px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

.showcase-card {
  background: #232421;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5);
}

.showcase-media {
  padding: 0;
  background: #111210;
  overflow: hidden;
}

.gallery {
  position: relative;
  height: 340px;
  overflow: hidden;
  user-select: none;
}

.gallery-track {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.gallery-track img {
  width: 100%;
  height: 100%;
  flex: none;
  object-fit: contain;
  object-position: center;
  transform: scale(1.16);
  transition: transform 0.4s ease;
}

.showcase-card:hover .showcase-media img {
  transform: scale(1.19);
}

.showcase-body {
  padding: 22px 26px 26px;
}

.showcase-body h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.showcase-features {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.showcase-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
}

.showcase-features li::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--muted);
  flex: none;
}

.showcase-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 16px;
}

.price-label {
  color: var(--muted);
  font-size: 0.8rem;
}

.price-now {
  font-size: 1.45rem;
  font-weight: 700;
}

.price-was {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 0.8rem;
}

/* ---------- FAQ ---------- */

.faq-section {
  padding: 40px 0 96px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}

.faq-grid h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em;
}

.faq-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 24px;
  border-radius: 18px;
  background: #232421;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 36px 0 56px;
  border-top: 1px solid var(--line);
  background: rgba(18, 19, 17, 0.96);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr;
  gap: 30px;
}

.footer-brand {
  margin-bottom: 12px;
}

.site-footer p,
.site-footer li {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer h4 {
  margin-top: 0;
  margin-bottom: 12px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---------- Shared pill/tag ---------- */

.tag,
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.45rem 0.8rem;
}

.pill {
  color: var(--orange);
  border-color: rgba(255, 138, 61, 0.3);
  background: rgba(255, 138, 61, 0.08);
}

/* ---------- Cart / summary (reused inside wizard) ---------- */

.cart-card {
  background: rgba(15, 23, 33, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  padding: 22px;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.cart-header h3 {
  margin: 0;
  font-size: 1.4rem;
}

.summary-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 22px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 10px;
  color: var(--muted);
}

.summary-item strong {
  color: var(--text);
}

.summary-case-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #111210;
  border-radius: 14px;
  margin: 18px 0 22px;
  border: 1px solid var(--line);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 1.2rem;
}

.summary-total strong {
  font-size: 1.8rem;
  letter-spacing: -0.06em;
}

/* ---------- Build wizard ---------- */

.wizard {
  --text: #f1efe9;
  --muted: #b4b0a8;
  --line: rgba(238, 234, 225, 0.13);
  --orange: #d8a17a;
  --green: #a9b9a2;
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--text);
}

.wizard.hidden {
  display: none;
}

.wizard-summary.hidden {
  display: none;
}

.wizard-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 9, 0.84);
  backdrop-filter: blur(6px);
}

.wizard-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(1440px, 100%);
  max-height: calc(100dvh - 40px);
  overflow: hidden;
  background: #191a19;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
  animation: wizard-pop 0.35s ease;
}

@keyframes wizard-pop {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.wizard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.wizard-title h3 {
  margin: 4px 0 0;
  font-size: 1.7rem;
}

.close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1.8rem;
  line-height: 1;
}

/* progress bar */

.wizard-progress {
  margin-bottom: 10px;
}

.wizard-progress-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  margin-bottom: 14px;
}

.wizard-progress-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: var(--orange);
  transition: width 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.wizard-step-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0;
  padding: 0;
}

.wizard-step-list li {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
  transition: color 0.3s ease;
}

.wizard-step-list li.active {
  color: var(--orange);
}

.wizard-step-list li.done {
  color: var(--green);
}

/* body layout */

.wizard-body {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 24px;
  align-items: start;
  min-height: 0;
  overflow-y: auto;
}

.wizard-body.no-summary {
  grid-template-columns: 1fr;
}

.wizard-stage {
  position: relative;
  min-height: 320px;
  overflow: hidden;
}

.wizard-stage-content {
  animation: stage-in 0.4s ease;
}

@keyframes stage-in {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: translateX(0); }
}

.wizard-stage-content.slide-back {
  animation-name: stage-in-back;
}

@keyframes stage-in-back {
  from { opacity: 0; transform: translateX(-24px); }
  to { opacity: 1; transform: translateX(0); }
}

.stage-heading {
  margin: 0 0 6px;
  font-size: 1.5rem;
}

.stage-subtext {
  margin: 0 0 6px;
  color: var(--muted);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.option-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #232421;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.option-item:hover {
  transform: translateY(-3px);
}

.option-item.selected {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.option-item input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.option-item strong {
  font-size: 1rem;
}

.option-item small {
  color: var(--muted);
}

.option-item .option-price {
  font-weight: 700;
  color: var(--orange);
}

/* tier selection step (whole-machine presets) */

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tier-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #232421;
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tier-card:hover {
  transform: translateY(-3px);
}

.tier-card.selected {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.tier-card:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 3px;
}

.tier-select-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.tier-select-row input[type='radio'] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  cursor: pointer;
}

.tier-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.tier-card h4 {
  margin: 2px 0 6px;
  font-size: 1.15rem;
}

.tier-blurb {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.tier-specs {
  display: grid;
  gap: 4px;
  margin: 0;
  padding: 10px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.tier-specs li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
}

.tier-specs li span {
  color: var(--muted);
}

.tier-select-wrap {
  position: relative;
}

.tier-option-thumb {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  flex: none;
  border-radius: 7px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  pointer-events: none;
}

.tier-specs select {
  width: 100%;
  height: 30px;
  padding: 4px 8px 4px 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #1b1c1a;
  color: var(--text);
  font-size: 0.83rem;
  cursor: pointer;
}

.tier-specs select:focus {
  outline: none;
  border-color: var(--orange);
}

.tier-price {
  margin-top: auto;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
}

/* review step */

.review-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.review-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line);
}

.review-item-info {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.review-item-info span {
  min-width: 0;
}

.review-option-thumb {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

@media (min-width: 721px) {
  .wizard-panel.review-step {
    width: min(1200px, 100%);
  }

  .review-step .wizard-title h3 {
    font-size: 1.4rem;
  }

  .review-step .wizard-body {
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 0.85fr);
    gap: 16px;
  }

  .review-step .stage-heading {
    font-size: 1.2rem;
  }

  .review-step .stage-subtext {
    font-size: 0.85rem;
  }

  .review-step .review-list {
    gap: 5px;
    margin-bottom: 0;
  }

  .review-step .review-item {
    gap: 8px;
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.84rem;
  }

  .review-step .review-item-info {
    gap: 8px;
  }

  .review-step .review-item strong {
    white-space: nowrap;
  }

  .review-step .review-option-thumb {
    width: 28px;
    height: 28px;
  }

  .review-step .cart-card {
    padding: 14px;
  }

  .review-step .cart-header {
    margin-bottom: 8px;
  }

  .review-step .cart-header h3 {
    font-size: 1.1rem;
  }

  .review-step .summary-list {
    margin: 8px 0;
  }

  .review-step .summary-case-image {
    margin: 0;
  }

  .review-step .summary-total {
    padding-top: 10px;
    font-size: 1rem;
  }

  .review-step .summary-total strong {
    font-size: 1.3rem;
  }
}

/* payment step */

@media (min-width: 721px) {
  .wizard-panel.payment-step {
    width: min(820px, 100%);
  }

  .payment-step .wizard-title h3 {
    font-size: 1.4rem;
  }

  .payment-step .stage-heading {
    font-size: 1.2rem;
  }

  .payment-step .stage-subtext {
    font-size: 0.85rem;
  }

  .payment-step .payment-stage .stage-subtext {
    margin-bottom: 10px;
  }

  .payment-step .payment-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
  }

  .payment-step .payment-card-field,
  .payment-step .split-fields {
    grid-column: 1 / -1;
  }

  .payment-step .payment-form label {
    gap: 4px;
    font-size: 0.82rem;
  }

  .payment-step .payment-form input {
    padding: 0.55rem 0.75rem;
    font-size: 0.9rem;
  }

  .payment-step .payment-status {
    margin-top: 8px;
  }

  .payment-step .payment-meta {
    margin-top: 10px;
    padding-top: 10px;
  }
}

.payment-stage {
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
}

.payment-stage .stage-subtext {
  margin-bottom: 18px;
}

.payment-form {
  display: grid;
  gap: 12px;
}

.payment-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.payment-form input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.split-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.payment-status {
  margin: 14px 0 0;
  min-height: 1.2em;
  font-size: 0.88rem;
  color: #d9534f;
}

.payment-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.payment-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.payment-meta strong {
  color: var(--text);
}

.accepted-cards {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
}

.card-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 27px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: #17294d;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
}

.card-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 3px;
}

.card-mark:has(img[alt='USDT']) img {
  width: 20px;
  height: 20px;
}

/* success step */

.success-stage {
  display: grid;
  place-items: center;
  gap: 16px;
  text-align: center;
  padding: 30px 0;
}

.success-check {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: rgba(126, 240, 172, 0.12);
  display: grid;
  place-items: center;
  animation: success-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes success-pop {
  from { transform: scale(0.4); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.success-check svg {
  width: 36px;
  height: 36px;
  stroke: var(--green);
  stroke-width: 3;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: draw-check 0.5s ease 0.2s forwards;
}

@keyframes draw-check {
  to { stroke-dashoffset: 0; }
}

.wizard-footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex: none;
  margin-top: 16px;
}

.wizard-footer .primary-btn {
  min-width: 112px;
}

.wizard .cart-card {
  background: #232421;
  border-color: var(--line);
  border-radius: 10px;
  box-shadow: none;
}

.wizard .pill {
  border-color: rgba(216, 161, 122, 0.35);
  background: rgba(216, 161, 122, 0.09);
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .wizard-body {
    grid-template-columns: 1fr;
  }

  .review-step .wizard-body {
    grid-template-rows: max-content max-content;
  }

  .review-step .wizard-stage {
    overflow: visible;
  }

  .tier-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .main-nav {
    display: none;
  }

  .option-grid,
  .footer-grid,
  .split-fields {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 90px 0 60px;
  }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .wizard-panel {
    padding: 16px;
  }

  .wizard-panel.review-step {
    padding: 12px;
  }

  .review-step .wizard-title h3 {
    font-size: 1.35rem;
  }

  .review-step .wizard-step-list li {
    font-size: 0.72rem;
  }

  .review-step .stage-heading {
    font-size: 1.2rem;
  }

  .review-step .stage-subtext {
    font-size: 0.82rem;
  }

  .review-step .review-list {
    gap: 6px;
    margin-bottom: 0;
  }

  .review-step .review-item {
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.82rem;
  }

  .review-step .review-item-info {
    gap: 8px;
  }

  .review-step .review-item strong {
    font-size: 0.8rem;
  }

  .review-step .review-option-thumb {
    width: 28px;
    height: 28px;
  }

  .review-step .cart-card {
    padding: 12px;
  }

  .review-step .cart-header {
    margin-bottom: 8px;
  }

  .review-step .cart-header h3 {
    font-size: 1.1rem;
  }

  .review-step .summary-list {
    margin: 8px 0;
  }

  .review-step .summary-case-image {
    max-width: 220px;
    margin: 0 auto;
  }

  .review-step .summary-total {
    padding-top: 10px;
    font-size: 1rem;
  }

  .review-step .summary-total strong {
    font-size: 1.25rem;
  }

  .tier-specs li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .tier-specs select {
    height: 38px;
  }

  .payment-meta {
    align-items: flex-start;
    flex-direction: column;
  }

  .accepted-cards {
    justify-content: flex-start;
  }
}
