:root {
  --home-max-copy: 680px;
}

.home-hero--v2 {
  padding: 3.2rem 0 2.4rem;
}

.home-hero-grid--v2 {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 2rem;
  align-items: start;
}

.home-hero-copy {
  max-width: var(--home-max-copy);
}

.home-hero-title {
  margin-top: 0.9rem;
  max-width: 12ch;
  color: var(--velvet-dark);
  line-height: 0.95;
  letter-spacing: 0;
}

.home-hero-lede {
  margin-top: 0.95rem;
  max-width: 58ch;
  font-size: 1.08rem;
  line-height: 1.58;
  color: var(--muted);
}

.home-hero-lede--strong {
  margin-top: 1rem;
  color: var(--velvet-dark);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.4;
}

.home-hero-lede strong {
  color: var(--velvet-dark);
  font-weight: 950;
}

.home-hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.home-hero-actions .btn {
  min-height: 56px;
  padding: 0.95rem 1.35rem;
  font-size: 1rem;
  font-weight: 900;
}

.home-hero-actions .btn-primary {
  position: relative;
  box-shadow:
    0 14px 28px rgba(46, 125, 90, 0.24),
    0 5px 10px rgba(0, 0, 0, 0.08);
  transform: translateY(0);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

.home-hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 20px 34px rgba(46, 125, 90, 0.3),
    0 8px 14px rgba(0, 0, 0, 0.1);
}

.home-hero-actions .btn-primary::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(46, 125, 90, 0.24), transparent 68%);
  opacity: 0;
  animation: homeHeroPulse 2.6s infinite;
  z-index: -1;
  pointer-events: none;
}

.home-value-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: 680px;
  margin-top: 1rem;
}

.home-value-metric {
  min-height: 82px;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(46, 125, 90, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 10px 24px rgba(45, 16, 44, 0.08);
}

.home-value-metric strong,
.home-value-metric span {
  display: block;
}

.home-value-metric strong {
  color: var(--velvet-dark);
  font-size: 1.35rem;
  font-weight: 950;
  line-height: 1;
}

.home-value-metric span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 850;
}

@keyframes homeHeroPulse {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }
  38% {
    opacity: 0.32;
  }
  100% {
    opacity: 0;
    transform: scale(1.12);
  }
}

.home-hero-proof {
  margin-top: 1.2rem;
  max-width: 560px;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(46, 125, 90, 0.18);
  background:
    radial-gradient(circle at top left, rgba(46, 125, 90, 0.08), transparent 45%),
    rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  color: var(--velvet-dark);
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.5;
}

.home-hero-proof p {
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--velvet-dark);
}

.home-hero-proof p + p {
  margin-top: 0.35rem;
}

.home-hero-proof strong {
  color: var(--green);
  font-weight: 950;
}

.home-hero-visual--v2 {
  min-height: auto;
}

.home-hero-stack {
  display: grid;
  gap: 1rem;
}

.home-hero-card--duo,
.home-hero-card--fallback {
  min-height: 440px;
}

.home-hero-card--duo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.home-hero-card--duo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-hero-card-tag {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 18px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 16px 34px rgba(26, 24, 24, 0.12);
  backdrop-filter: blur(12px);
}

.home-hero-card-tag strong,
.home-hero-card-tag span {
  display: block;
}

.home-hero-card-tag strong {
  color: var(--velvet-dark);
  font-weight: 950;
}

.home-hero-card-tag span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.home-hero-card--fallback {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.home-hero-fallback-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.home-avatar {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 950;
  color: var(--white);
  background: linear-gradient(135deg, var(--velvet), var(--green));
  box-shadow: var(--shadow-card);
}

.home-hero-fallback-title {
  color: var(--velvet-dark);
  font-size: 1.15rem;
  font-weight: 950;
}

.home-hero-fallback-sub {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.home-pop {
  padding: 2.2rem 0;
}

.home-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 1.5rem;
}

.home-section-head h2 {
  color: var(--velvet-dark);
  line-height: 1.04;
}

.home-section-head p {
  margin-top: 0.6rem;
  font-size: 1.02rem;
}

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

.home-step--pop {
  border-radius: 22px;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.home-step--pop:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.home-step-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  background: linear-gradient(135deg, var(--velvet), var(--green));
  color: var(--white);
  font-weight: 950;
  box-shadow: var(--shadow-card);
}

.home-step--pop h3 {
  color: var(--velvet);
  margin-bottom: 0.5rem;
  line-height: 1.08;
}

.home-step--pop h2 {
  color: var(--velvet);
  margin-bottom: 0.5rem;
  line-height: 1.08;
}

.home-step--pop p {
  font-size: 0.97rem;
  line-height: 1.5;
}

/* Real situations section */
.home-situations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.home-situation-card {
  border-radius: 22px;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background:
    radial-gradient(circle at top left, rgba(201, 166, 70, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.home-situation-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.home-situation-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  background: linear-gradient(135deg, rgba(74, 30, 72, 0.12), rgba(46, 125, 90, 0.12));
  border: 1px solid rgba(230, 220, 201, 0.9);
  font-size: 1.25rem;
}

.home-situation-card h3 {
  color: var(--velvet);
  margin-bottom: 0.45rem;
  line-height: 1.08;
}

.home-situation-card p {
  font-size: 0.97rem;
  line-height: 1.5;
}

.home-how-cta,
.home-strip-actions,
.home-price-actions {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.2rem;
}

.home-how-cta .btn,
.home-strip-actions .btn,
.home-price-actions .btn {
  min-height: 54px;
  font-weight: 900;
}

.home-strip-grid-wide {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1rem;
}

.home-strip-tile {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1 / 1;
}

.home-strip-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.15rem;
}

.home-topic-card {
  min-height: 142px;
  display: grid;
  align-content: start;
  gap: 0.5rem;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
  color: inherit;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.home-topic-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.08),
    0 6px 12px rgba(0, 0, 0, 0.05);
}

.home-topic-card span {
  color: var(--velvet-dark);
  font-weight: 950;
  line-height: 1.12;
}

.home-topic-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.home-chapter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
}

.home-chapter-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}

.home-chapter-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.08),
    0 6px 12px rgba(0, 0, 0, 0.05);
}

.home-chapter-card.is-prolocked {
  opacity: 0.92;
}

.home-chapter-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.home-chapter-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.home-chapter-badge,
.home-chapter-coming {
  backdrop-filter: blur(10px);
}

.home-chapter-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--velvet-dark);
  font-size: 0.81rem;
  font-weight: 950;
  box-shadow: var(--shadow-soft);
}

.home-chapter-coming {
  position: absolute;
  bottom: 0.85rem;
  left: 0.85rem;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}

.home-chapter-coming--free {
  background: rgba(46, 125, 90, 0.2);
  color: var(--velvet-dark);
}

.home-chapter-coming--pro {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #2f2100;
  animation: homeProGlow 2.8s infinite;
}

@keyframes homeProGlow {
  0%, 100% {
    box-shadow: 0 0 0 rgba(201, 166, 70, 0);
  }
  50% {
    box-shadow: 0 0 14px rgba(201, 166, 70, 0.45);
  }
}

.home-chapter-body {
  padding: 1rem 1.05rem 1.15rem;
}

.home-chapter-title {
  font-size: 1.15rem;
  font-weight: 950;
  color: var(--velvet);
  line-height: 1.06;
  letter-spacing: 0;
}

.home-chapter-desc {
  margin-top: 0.45rem;
  font-size: 0.97rem;
  line-height: 1.48;
}

.home-growth {
  padding-top: 1.8rem;
  padding-bottom: 1.8rem;
}

.home-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 1.1rem;
  align-items: stretch;
  max-width: 980px;
  margin: 0 auto;
}

.home-preview-card,
.home-preview-copy,
.home-trust-note {
  border-radius: 24px;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.home-preview-card {
  display: grid;
  gap: 0.9rem;
  padding: 1.15rem;
}

.home-preview-row,
.home-preview-response {
  display: grid;
  gap: 0.35rem;
  padding: 0.9rem;
  border-radius: 18px;
  background: rgba(46, 125, 90, 0.07);
  border: 1px solid rgba(46, 125, 90, 0.12);
}

.home-preview-row span,
.home-preview-response span,
.home-preview-disclaimer {
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-preview-row strong,
.home-preview-response strong {
  color: var(--velvet-dark);
  font-size: 1.1rem;
  line-height: 1.3;
}

.home-preview-row p,
.home-preview-copy p {
  line-height: 1.55;
}

.home-preview-response {
  background:
    radial-gradient(circle at top right, rgba(201, 166, 70, 0.14), transparent 46%),
    rgba(255, 255, 255, 0.72);
  border-color: rgba(201, 166, 70, 0.24);
}

.home-preview-note {
  padding: 0.8rem 0.9rem;
  border-radius: 16px;
  color: var(--velvet-dark);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.home-preview-copy {
  padding: 1.25rem;
  display: grid;
  align-content: center;
  gap: 0.75rem;
}

.home-preview-copy h3 {
  color: var(--velvet-dark);
  line-height: 1.08;
}

.home-preview-copy .btn {
  width: fit-content;
  margin-top: 0.25rem;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: 1rem;
  max-width: 980px;
  margin: 0 auto;
}

.home-trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
}

.home-trust-list li {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  color: var(--velvet-dark);
  font-weight: 850;
}

.home-trust-note {
  display: grid;
  align-content: center;
  padding: 1.15rem;
  color: var(--velvet-dark);
  font-weight: 800;
  line-height: 1.55;
}

.home-final .paywall-final-cta {
  margin-top: 0;
}

.home-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 940px;
  margin: 0 auto;
}

.home-price-card {
  border-radius: 26px;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  padding: 1.3rem;
}

.home-price-card--pro {
  background:
    radial-gradient(circle at top left, rgba(201, 166, 70, 0.16), transparent 34%),
    radial-gradient(circle at bottom right, rgba(46, 125, 90, 0.16), transparent 34%),
    rgba(255, 255, 255, 0.84);
}

.home-price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.home-price-title {
  color: var(--velvet);
  font-weight: 950;
}

.home-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.64rem;
  border-radius: 999px;
  font-weight: 950;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-pill--free {
  background: rgba(46, 125, 90, 0.14);
  color: var(--velvet-dark);
}

.home-pill--pro {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: #2f2100;
}

.home-price-line {
  margin-top: 0.9rem;
  color: var(--velvet-dark);
  font-size: 1.7rem;
  font-weight: 950;
}

.home-price-line span {
  margin-left: 0.35rem;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.home-price-list {
  margin-top: 0.9rem;
  display: grid;
  gap: 0.6rem;
}

.home-price-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--velvet-dark);
  font-weight: 700;
}

.home-price-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.home-price-fine {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.paywall-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.34fr);
  gap: 1rem;
  margin-top: 1rem;
  align-items: stretch;
}

.paywall-offer-card {
  margin-top: 0 !important;
}

.paywall-metric-card {
  min-height: 100%;
  display: grid;
  align-content: center;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(201, 166, 70, 0.28);
  background:
    radial-gradient(circle at top right, rgba(201, 166, 70, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.paywall-metric-card strong,
.paywall-metric-card span {
  display: block;
}

.paywall-metric-card strong {
  color: var(--velvet-dark);
  font-size: 2rem;
  font-weight: 950;
  line-height: 1;
}

.paywall-metric-card span {
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.35;
}

.paywall-section {
  margin-top: 2rem;
}

.paywall-outcome-grid,
.paywall-faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.paywall-outcome-card,
.paywall-faq-card {
  padding: 1.15rem;
  border-radius: 20px;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.paywall-outcome-card h3,
.paywall-faq-card h3 {
  color: var(--velvet);
  line-height: 1.08;
}

.paywall-outcome-card p,
.paywall-faq-card p {
  margin-top: 0.5rem;
  font-size: 0.96rem;
  line-height: 1.5;
}

.paywall-compare {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(230, 220, 201, 0.92);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-soft);
}

.paywall-compare-row {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 1rem;
  padding: 0.9rem 1rem;
  align-items: center;
  border-top: 1px solid rgba(230, 220, 201, 0.72);
}

.paywall-compare-row:first-child {
  border-top: 0;
}

.paywall-compare-row > div {
  color: var(--muted);
  font-weight: 800;
}

.paywall-compare-row > div:first-child,
.paywall-compare-row strong {
  color: var(--velvet-dark);
  font-weight: 950;
}

.paywall-compare-head {
  background: rgba(46, 125, 90, 0.08);
}

.paywall-final-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  align-items: center;
  padding: 1.4rem;
  border-radius: 24px;
  border: 1px solid rgba(201, 166, 70, 0.28);
  background:
    radial-gradient(circle at top left, rgba(201, 166, 70, 0.16), transparent 36%),
    radial-gradient(circle at bottom right, rgba(46, 125, 90, 0.14), transparent 36%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.paywall-final-cta h2 {
  margin-top: 0.35rem;
  color: var(--velvet-dark);
}

.paywall-final-cta p {
  margin-top: 0.45rem;
  max-width: 62ch;
}

.paywall-final-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  flex-shrink: 0;
}

.home-how:last-of-type {
  background:
    radial-gradient(circle at top left, rgba(201, 166, 70, 0.12), transparent 40%),
    radial-gradient(circle at bottom right, rgba(46, 125, 90, 0.12), transparent 40%);
  border-top: 1px solid rgba(230, 220, 201, 0.9);
  border-bottom: 1px solid rgba(230, 220, 201, 0.9);
}

.home-how:last-of-type .home-section-head {
  margin-bottom: 1.2rem;
}

.home-how:last-of-type .btn {
  min-height: 56px;
  padding: 0.95rem 1.35rem;
  font-weight: 900;
}

@media (max-width: 1100px) {
  .home-steps--pop,
  .home-topic-grid,
  .home-situations-grid,
  .home-trust-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-strip-grid-wide {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

  .home-hero-title {
    max-width: 13ch;
  }

  .home-hero-card--duo,
  .home-hero-card--fallback {
    min-height: 360px;
  }

  .home-chapter-grid,
  .home-pricing-grid,
  .home-preview-grid,
  .home-trust-grid {
    grid-template-columns: 1fr;
  }

  .paywall-hero-grid,
  .paywall-outcome-grid,
  .paywall-faq-grid {
    grid-template-columns: 1fr;
  }

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

  .paywall-final-actions {
    justify-content: flex-start;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .home-pop {
    padding: 1.9rem 0;
  }

  .home-hero--v2 {
    padding: 2.5rem 0 2rem;
  }

  .home-hero-title {
    max-width: none;
    font-size: clamp(2.2rem, 9vw, 3.3rem);
  }

  .home-hero-lede--strong {
    font-size: 1.08rem;
  }

  .home-hero-actions {
    flex-direction: column;
  }

  .home-hero-actions .btn,
  .home-how-cta .btn,
  .home-strip-actions .btn,
  .home-price-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .home-value-metrics {
    grid-template-columns: 1fr;
  }

  .home-steps--pop,
  .home-topic-grid,
  .home-situations-grid,
  .home-trust-list {
    grid-template-columns: 1fr;
  }

  .home-preview-copy .btn {
    width: 100%;
    justify-content: center;
  }

  .home-strip-grid-wide {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-price-card {
    padding: 1.1rem;
  }

  .paywall-compare-row {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .paywall-metric-card strong {
    font-size: 1.55rem;
  }

  .paywall-final-actions .btn,
  .paywall-final-actions form {
    width: 100%;
  }

  .paywall-final-actions form .btn {
    justify-content: center;
  }
}
