/* Source: 03-readme.css */
/* ── README ── */
.readme-panel {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-card);
  transition:
    opacity 0.4s,
    transform 0.4s;
}

.readme-panel.collapsed {
  opacity: 0.25;
  pointer-events: none;
  transform: scale(0.99);
}

.readme-header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.readme-h2 {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.readme-h2 .line-plain {
  display: block;
  color: var(--navy);
}

.readme-h2 .line-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.04em 0.32em;
  border-radius: 0.4rem;
  margin: 0.05em 0;
}

.readme-rule {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0.55rem auto 0.9rem;
}

.readme-rule-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(44, 67, 100, 0.15),
    rgba(44, 67, 100, 0.04)
  );
}

.readme-rule-line.rev {
  background: linear-gradient(
    90deg,
    rgba(44, 67, 100, 0.04),
    rgba(44, 67, 100, 0.15)
  );
}

.readme-scroll {
  max-height: 200px;
  overflow-y: auto;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-input) transparent;
}

.readme-scroll::-webkit-scrollbar {
  width: 3px;
}

.readme-scroll::-webkit-scrollbar-thumb {
  background: var(--border-input);
  border-radius: 4px;
}

.readme-item {
  margin-bottom: 1rem;
}

.readme-item:last-child {
  margin-bottom: 0;
}

.readme-q {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.2rem;
  line-height: 1.4;
}

.readme-a {
  font-size: 0.82rem;
  color: var(--gray-text);
  line-height: 1.65;
}

.readme-confirm {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.readme-confirm input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

.readme-confirm input[type="checkbox"]:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.readme-confirm label {
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
  cursor: pointer;
  line-height: 1.4;
}

.readme-confirm.locked label {
  color: var(--muted, #94a3b8);
  cursor: not-allowed;
}

.readme-scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--muted, #94a3b8);
  font-weight: 500;
  margin-bottom: 0.6rem;
  padding: 0.4rem 0.6rem;
  background: #f8fafc;
  border-radius: var(--r-md, 0.5rem);
  border: 1px dashed var(--border-input, #e2e8f0);
  transition: opacity 0.3s;
}

.readme-scroll-hint.hidden {
  display: none;
}

.readme-scroll-hint svg {
  flex-shrink: 0;
  animation: bounceDown 0.8s ease infinite;
}

@keyframes bounceDown {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(3px);
  }
}

/* Source: 04-stepper-form.css */
/* ── STEPPER ── */
.stepper {
  display: none;
  align-items: flex-start;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.25rem 1.75rem;
  box-shadow: var(--shadow-card);
}

.stepper.visible {
  display: flex;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}

.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 19px;
  left: calc(50% + 22px);
  right: calc(-50% + 22px);
  height: 2px;
  background: var(--border-input);
  transition: background 0.4s;
}

.step-item.done:not(:last-child)::after {
  background: var(--yellow);
}

.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border-input);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  z-index: 1;
  position: relative;
  transition: all 0.3s;
}

.step-item.active .step-circle {
  border-color: var(--yellow);
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 0 0 4px rgba(255, 205, 0, 0.18);
}

.step-item.done .step-circle {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}

.step-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.4rem;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s;
}

.step-item.active .step-label {
  color: var(--navy);
}

.step-item.done .step-label {
  color: var(--success);
}

.step-check {
  display: none;
}

.step-item.done .step-check {
  display: block;
}

.step-item.done .step-num {
  display: none;
}

/* ── FORM CARD ── */
.form-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-card);
  animation: fadeUp 0.35s ease;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* card & readme titles — padrão site */
.card-heading {
  margin-bottom: 1.5rem;
  text-align: center;
}

.card-h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.55rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.1rem;
}

.card-h2 .line-plain {
  display: block;
  color: var(--navy);
}

.card-h2 .line-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.04em 0.32em;
  border-radius: 0.45rem;
  margin: 0.06em 0;
}

.card-rule {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.65rem auto 0.9rem;
  animation: fadeUp 0.45s ease 0.5s both;
}

.card-rule-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(44, 67, 100, 0.18),
    rgba(44, 67, 100, 0.04)
  );
}

.card-rule-line.rev {
  background: linear-gradient(
    90deg,
    rgba(44, 67, 100, 0.04),
    rgba(44, 67, 100, 0.18)
  );
}

.card-sub {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.55;
  margin-bottom: 1.5rem;
  text-align: center;
}

.card-top-action {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

/* ── FIELDS ── */
.field-grid {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.fg-2 {
  grid-template-columns: 1fr 1fr;
}

.fg-3 {
  grid-template-columns: 1fr 2fr 0.65fr;
}

.fg-city {
  grid-template-columns: 1fr 1fr 0.5fr;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}

.field-full {
  grid-column: 1/-1;
}

label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}

label .req {
  color: var(--error);
  margin-left: 2px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
select {
  width: 100%;
  height: 44px;
  padding: 0 0.9rem;
  background: #fff;
  border: 1.5px solid var(--border-input);
  border-radius: var(--r-md);
  font-family: inherit;
  font-size: 0.875rem;
  color: var(--navy);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  appearance: none;
}

input::placeholder {
  color: var(--muted);
}

input:focus,
select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(44, 67, 100, 0.08);
}

input.has-error {
  border-color: var(--error);
  background: var(--error-bg);
}

.field-error {
  font-size: 0.7rem;
  color: var(--error);
  display: none;
}

.field-error.show {
  display: block;
}

.sel-wrap {
  position: relative;
}

.sel-wrap::after {
  content: "";
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid var(--muted);
  pointer-events: none;
}

select option {
  background: #fff;
  color: var(--navy);
}

.pwd-wrap {
  position: relative;
}

.pwd-wrap input {
  padding-right: 2.5rem;
}

.pwd-toggle {
  position: absolute;
  right: 0.7rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  padding: 0;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.pwd-toggle:hover {
  color: var(--navy);
}

.pwd-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.5rem;
  margin-top: 0.35rem;
}

.pwd-rule {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.2s;
}

.pwd-rule.ok {
  color: var(--success);
}

.pwd-rule.fail {
  color: var(--error);
}

.pwd-rule-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.field-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0.4rem 0 1.1rem;
}

/* ── FORM NAV ── */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* Source: 05-buttons.css */
/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0 1.5rem;
  height: 46px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 0.15s,
    box-shadow 0.2s,
    background 0.2s;
}

.btn:active {
  transform: scale(0.97);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(255, 205, 0, 0.3);
}

.btn-primary:hover {
  background: var(--yellow-hov);
  box-shadow: 0 6px 22px rgba(255, 205, 0, 0.42);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border-input);
}

.btn-ghost:hover {
  background: var(--page-bg);
  border-color: var(--navy);
}

.btn-skip {
  background: transparent;
  color: var(--gray-text);
  border: 1px solid var(--border-input);
  font-size: 0.74rem;
  height: 38px;
  padding: 0 1rem;
}

.btn-skip:hover {
  color: var(--navy);
  border-color: var(--navy);
}

/* Source: 06-panels-review-thankyou-upsell.css */
/* ── STEP PANELS ── */
.step-panel {
  display: none;
}

.step-panel.active {
  display: block;
  margin-top: 2.5rem;
}

/* ── REVISÃO / CONFIRMAÇÃO ── */
.review-section {
  margin-bottom: 1.5rem;
}

.review-section:last-of-type {
  margin-bottom: 0;
}

.review-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.5rem;
}

.review-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.review-item-full {
  grid-column: 1/-1;
}

.review-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.review-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  overflow-wrap: break-word;
}

.review-empty {
  font-size: 0.82rem;
  color: var(--gray-text);
  background: var(--page-bg);
  border: 1px dashed var(--border-input);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  line-height: 1.5;
}

.review-notice {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(44, 67, 100, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray-text);
  line-height: 1.55;
}

.review-notice svg {
  flex-shrink: 0;
  color: var(--navy);
  margin-top: 0.1rem;
}

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

/* ── THANK YOU ── */
.thankyou-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-card);
  text-align: center;
  animation: fadeUp 0.4s ease;
}

.ty-success-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #d1fae5;
  border: 2px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--success);
}

.ty-tag {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.8rem;
  border-radius: 999px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.ty-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.ty-sub {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 460px;
  margin: 0 auto 2.5rem;
}

.ty-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.btn-platform {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 4px 16px rgba(44, 67, 100, 0.2);
}

.btn-platform:hover {
  background: var(--navy-dark);
}

.btn-wpp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.22);
}

.btn-wpp:hover {
  background: #1ebe5c;
}

/* ── UPSELL ── */
.upsell-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.upsell-label-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}

.upsell-label-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  color: var(--muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.upsell-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.upsell-card {
  border-radius: var(--r-lg);
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  border: 1.5px solid var(--border);
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.upsell-card.current {
  opacity: 0.55;
}

.upsell-card.featured {
  border-color: #2c6aad;
  background: linear-gradient(160deg, #f0f6ff 0%, #fff 60%);
}

/* Clube+ card — dark premium */
.upsell-card.premium {
  border-color: rgba(212, 160, 23, 0.5);
  background: linear-gradient(160deg, #0d0f14 0%, #111318 100%);
  color: #fff;
}

.upsell-card.premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #d4a017 30%,
    #fff112 50%,
    #d4a017 70%,
    transparent
  );
}

.upsell-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  text-transform: uppercase;
  align-self: flex-start;
}

.badge-cur {
  background: #f1f5f9;
  color: var(--muted);
}

.badge-blue {
  background: rgba(44, 106, 173, 0.1);
  border: 1px solid rgba(44, 106, 173, 0.3);
  color: #2c6aad;
}

.badge-gold {
  background: rgba(212, 160, 23, 0.15);
  border: 1px solid rgba(212, 160, 23, 0.4);
  color: #d4a017;
}

.upsell-name {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.upsell-card.premium .upsell-name {
  color: #fff112;
}

.upsell-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
}

.price-free {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--muted);
}

.price-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
}

.upsell-card.premium .price-val {
  color: #fff112;
}

.price-mo {
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--muted);
}

.upsell-card.premium .price-mo {
  color: rgba(255, 255, 255, 0.4);
}

.upsell-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.upsell-feat {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.74rem;
  color: var(--gray-text);
  font-weight: 500;
  line-height: 1.3;
}

.upsell-card.premium .upsell-feat {
  color: rgba(255, 255, 255, 0.55);
}

.upsell-feat svg {
  flex-shrink: 0;
  color: var(--muted);
}

.upsell-card.featured .upsell-feat svg {
  color: #2c6aad;
}

.upsell-card.premium .upsell-feat svg {
  color: #d4a017;
}

.upsell-feat.strike {
  text-decoration: line-through;
  opacity: 0.4;
}

.upsell-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  height: 40px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.15s,
    box-shadow 0.2s,
    background 0.2s;
}

.upsell-cta:active {
  transform: scale(0.97);
}

.cta-cur {
  background: #f1f5f9;
  color: var(--muted);
  pointer-events: none;
}

.cta-blue {
  background: rgba(44, 106, 173, 0.1);
  color: #2c6aad;
  border: 1.5px solid rgba(44, 106, 173, 0.3);
}

.cta-blue:hover {
  background: rgba(44, 106, 173, 0.18);
  box-shadow: 0 4px 14px rgba(44, 106, 173, 0.15);
}

.cta-gold {
  background: linear-gradient(135deg, #d4a017, #fff112);
  color: #0d0f14;
  box-shadow: 0 4px 14px rgba(255, 241, 18, 0.2);
}

.cta-gold:hover {
  box-shadow: 0 6px 20px rgba(255, 241, 18, 0.35);
  transform: translateY(-1px);
}

/* Source: 07-footer-title-lock.css */
/* ── FOOTER ── */


/* ── TÍTULO PADRÃO SITE ── */
.page-title-block {
  text-align: center;
  margin-bottom: 0.25rem;
}

.page-h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.15rem;
}

.page-h1 .line-plain {
  display: block;
  color: var(--navy);
}

.page-h1 .line-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy);
  padding: 0.05em 0.35em;
  border-radius: 0.5rem;
  margin: 0.08em 0;
}

.line-plain.anim-left {
  animation: slideFromLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.line-badge.anim-right {
  animation: slideFromRight 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.h1-l1 {
  animation-delay: 0.08s;
}

.h1-l2 {
  animation-delay: 0.32s;
}

.h1-l3 {
  animation-delay: 0.56s;
}

.page-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1rem auto 0;
  width: 100%;
  max-width: 480px;
  animation: fadeUp 0.55s ease 0.7s both;
}

.page-rule-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(44, 67, 100, 0.15),
    rgba(44, 67, 100, 0.04)
  );
}

.page-rule-line.rev {
  background: linear-gradient(
    90deg,
    rgba(44, 67, 100, 0.04),
    rgba(44, 67, 100, 0.15)
  );
}

@keyframes slideFromLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideFromRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ── BLOQUEIO DO FORMULÁRIO ATÉ ACEITE DO LEIA-ME ── */
.form-lock-wrapper {
  position: relative;
}

/* Overlay cobre toda a área do formulário */
.form-lock-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: rgba(248, 250, 252, 0);
  pointer-events: all;
  cursor: not-allowed;
  transition:
    opacity 0.4s,
    visibility 0.4s;
}

.form-lock-overlay.unlocked {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Bloqueia interação com stepper e step-panels */
.steps-locked .stepper,
.steps-locked .step-panel {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  opacity: 0.45;
  filter: blur(1.5px);
  transition:
    opacity 0.4s,
    filter 0.4s;
}

.steps-locked .step-panel.active {
  display: block;
}

/* Source: 08-responsive.css */
/* ── RESPONSIVE ── */
@media (max-width: 680px) {
  .fg-2,
  .fg-3,
  .fg-city {
    grid-template-columns: 1fr;
  }

  .fg-3 {
    grid-template-columns: 1fr 1fr;
  }

  .form-card,
  .readme-panel {
    padding: 1.5rem 1.25rem;
  }

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

  .upsell-card.current {
    display: none;
  }
}

@media (max-width: 480px) {
  .stepper {
    padding: 1rem;
  }

  .step-label {
    font-size: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  #bg-canvas {
    display: none;
  }

  .form-card,
  .thankyou-card {
    animation: none;
  }
}
