/* ============================================================
   GROW WITH JOY — challenge page styles
   Mobile-first. Supplements styles.css (don't duplicate base tokens).
   ============================================================ */

/* ── shared section scaffolding ───────────────────────────── */
.gwj-section {
  padding: 48px 0;
}
.gwj-section-alt {
  background: var(--bg-alt);
}
/* tighten the gap between "why now?" and the reels (~144px -> ~72px) */
.gwj-why-section { padding-bottom: 36px; }
.gwj-reels { padding-top: 36px; }
.gwj-section-headline {
  font-size: clamp(26px, 5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}
.gwj-prose {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  max-width: 640px;
  margin: 0;
}

/* ── announcement bar ─────────────────────────────────────── */
.gwj-bar {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px 12px;
  flex-wrap: wrap;
  text-align: center;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  position: sticky;
  top: 0;
  z-index: 200;
}
.gwj-bar-msg {
  line-height: 1.4;
}
.gwj-bar-count {
  white-space: nowrap;
  line-height: 1.4;
}
.gwj-bar-cta {
  background: var(--ink);
  color: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 3px 3px 0 var(--c2);
  transition: transform 0.15s, box-shadow 0.15s;
}
.gwj-bar-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--c2);
}
.gwj-countdown {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* countdown drops to its own line on mobile so it never splits awkwardly */
@media (max-width: 600px) {
  .gwj-bar-count { flex-basis: 100%; }
  .gwj-bar-dash { display: none; }
}
.gwj-countdown strong {
  font-weight: 800;
}

/* ── hero ─────────────────────────────────────────────────── */
.gwj-hero {
  padding: 56px 0 48px;
  background: var(--bg);
}
@media (max-width: 768px) {
  .gwj-hero { padding-top: 20px; }
}
.gwj-hero-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.gwj-hero-headline {
  font-size: clamp(56px, 12vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
}
.gwj-hero-subhead {
  font-size: clamp(18px, 3vw, 24px);
  line-height: 1.35;
  font-weight: 600;
  margin: 0 0 28px;
}
.gwj-hero-body {
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 20px;
  color: var(--ink);
}
.gwj-hero-outcome {
  clear: both;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 700;
  max-width: 560px;
  margin: 0 0 32px;
  padding: 16px 20px;
  background: var(--bg-alt);
  border-left: 4px solid var(--c3);
  border-radius: 0 12px 12px 0;
}
.gwj-hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.gwj-hero-btn {
  font-size: 17px;
  padding: 18px 36px;
}
.gwj-hero-microcopy {
  font-size: 13px;
  color: var(--ink-soft);
  font-family: 'DM Mono', ui-monospace, monospace;
  letter-spacing: 0.04em;
  margin: 0;
}

/* hero photo + intro row: photo floats beside text on mobile,
   becomes a tidy right-hand column on desktop (no float gap) */
.gwj-hero-photo {
  position: relative;
  float: right;
  width: 150px;
  aspect-ratio: 4/5;
  margin: 4px 0 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--bg-alt);
}
.gwj-hero-photo .photo-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 720px) {
  .gwj-hero-row {
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 44px;
    align-items: start;
    max-width: 944px;
  }
  .gwj-hero-col { order: 1; min-width: 0; }
  .gwj-hero-photo {
    order: 2;
    float: none;
    width: 100%;
    margin: 0;
    border-radius: 22px;
  }
}

/* ── why now (centered bubble) ────────────────────────────── */
.gwj-why-bubble {
  background: var(--c2);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 6px 6px 0 var(--ink);
  padding: 36px 40px;
}
.gwj-why-headline {
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.gwj-why-prose {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  color: var(--ink);
}
@media (max-width: 600px) {
  .gwj-why-bubble { padding: 28px 24px; }
}

/* ── how it works — 3 cards ───────────────────────────────── */
.gwj-how-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 32px;
}
.gwj-how-grid-spaced { margin-top: 40px; }
.gwj-how-chat {
  background: var(--c2);
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 5px 5px 0 var(--ink);
  padding: 32px 36px;
}
.gwj-how-chat-title {
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.gwj-how-chat-body {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 500;
  margin: 0;
}
@media (max-width: 600px) {
  .gwj-how-chat { padding: 24px; }
}
.gwj-how-card {
  padding: 32px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 5px 5px 0 var(--ink);
}
.gwj-how-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 10px;
}
.gwj-how-title {
  font-size: clamp(22px, 4vw, 30px);
  line-height: 1;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}
.gwj-how-body {
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  color: var(--ink);
}
.gwj-dual-goal {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 600;
  padding: 24px 28px;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 16px;
  margin: 0;
}
.gwj-dual-goal p { margin: 0; }
.gwj-dual-goal p + p { margin-top: 14px; }

@media (min-width: 640px) {
  .gwj-how-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* full width on desktop, with the two paragraphs as readable columns */
@media (min-width: 720px) {
  .gwj-dual-goal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    padding: 32px 36px;
  }
  .gwj-dual-goal p + p { margin-top: 0; }
}

/* ── week arc — 4 cards ───────────────────────────────────── */
.gwj-weeks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.gwj-week-card {
  padding: 32px;
  border: 2px solid var(--ink);
  border-radius: 24px;
  box-shadow: 5px 5px 0 var(--ink);
}
.gwj-week-num {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 10px;
}
.gwj-week-title {
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.gwj-week-body {
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  color: var(--ink);
}

@media (min-width: 640px) {
  .gwj-weeks-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── about mika ───────────────────────────────────────────── */
.gwj-who-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}
.gwj-heard-on {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gwj-heard-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.gwj-heard-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gwj-heard-pill {
  display: inline-block;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: var(--bg);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.gwj-heard-pill:hover {
  background: var(--c2);
  transform: translate(-1px, -1px);
  box-shadow: 2px 2px 0 var(--ink);
}
.gwj-who-media {
  display: flex;
  align-items: center;
  gap: 18px;
}
.gwj-who-img-wrap {
  flex: 0 0 140px;
  width: 140px;
  max-width: 140px;
  aspect-ratio: 3/4;
  border-radius: 18px;
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  overflow: hidden;
}
.gwj-who-stats {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 12px;
}
.gwj-who-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.gwj-who-stat-num {
  font-size: clamp(22px, 6vw, 30px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.gwj-who-stat-label {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1.35;
}

@media (min-width: 768px) {
  .gwj-who-inner {
    grid-template-columns: 1fr 440px;
    align-items: center;
  }
  .gwj-who-img-wrap {
    flex-basis: 180px;
    width: 180px;
    max-width: 180px;
  }
}

/* ── cta band (repeated waitlist CTA) ─────────────────────── */
.gwj-cta-band {
  padding: 8px 0 40px;
  background: var(--bg);
}
.gwj-cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}
.gwj-cta-band-btn {
  font-size: 17px;
  padding: 18px 36px;
}
.gwj-cta-band-note {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ── for / not for ────────────────────────────────────────── */
.gwj-fit-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.gwj-fit-header {
  padding: 14px 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}
.gwj-fit-header-yes { background: var(--c3); }
.gwj-fit-header-no  { background: var(--bg-alt); border: 2px solid var(--ink); }
.gwj-fit-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.gwj-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.gwj-fit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
}
.gwj-fit-bullet {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (min-width: 768px) {
  .gwj-fit-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

/* ── value stack ──────────────────────────────────────────── */
.gwj-stack-wrap {
  max-width: 680px;
}
.gwj-stack {
  border: 2px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 0;
  background: var(--bg);
}
.gwj-stack-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 24px;
  border-bottom: 1.5px solid var(--ink);
}
.gwj-stack-row:last-child {
  border-bottom: none;
}
.gwj-stack-row-bonus {
  background: var(--bg-alt);
}
.gwj-stack-label {
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.gwj-stack-bonus-chip {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c2);
  padding: 2px 7px;
  border-radius: 4px;
  border: 1px solid var(--ink);
  font-weight: 700;
  flex-shrink: 0;
}
.gwj-stack-value {
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  white-space: nowrap;
}
.gwj-stack-total {
  background: var(--ink);
  border-top: 2px solid var(--ink);
}
.gwj-stack-total .gwj-stack-label {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bg);
}
.gwj-stack-total .gwj-stack-value {
  font-size: 16px;
  color: var(--bg);
}
.gwj-price-reveal {
  margin-top: 32px;
  padding: 32px;
  background: var(--c3);
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--ink);
}
.gwj-price-outcome {
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
  margin: 0 0 20px;
}
.gwj-price-compare {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.gwj-price-was {
  font-size: clamp(32px, 6vw, 46px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--ink);
  opacity: 0.5;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
}
.gwj-price-amount {
  font-size: clamp(52px, 10vw, 80px);
  line-height: 0.9;
  letter-spacing: -0.03em;
}
.gwj-price-savings {
  display: block;
  font-family: 'DM Mono', ui-monospace, monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 18px;
}
.gwj-price-note {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 24px;
  font-weight: 500;
}
.gwj-stack-cta {
  font-size: 16px;
}

/* ── reel proof ───────────────────────────────────────────── */
.gwj-reels-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 300px;
  margin: 0 auto;
}
.gwj-reel-card {
  position: relative;
  border: 2px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--bg-alt);
  aspect-ratio: 9/16;
}
.gwj-reel-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gwj-reel-overlay {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  padding: 9px 8px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  color: var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
}
.gwj-reel-from {
  font-family: 'Caprasimo', Georgia, serif;
  font-size: 19px;
  opacity: 0.65;
}
.gwj-reel-arrow {
  font-size: 16px;
  font-weight: 700;
}
.gwj-reel-to {
  font-family: 'Caprasimo', Georgia, serif;
  font-size: 25px;
  line-height: 1;
}
.gwj-reel-label {
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  align-self: center;
}

@media (min-width: 720px) {
  .gwj-reels-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    max-width: 880px;
  }
}

/* ── challenge testimonials ───────────────────────────────── */
.gwj-testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
.gwj-testi-card {
  padding: 28px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  box-shadow: 5px 5px 0 var(--ink);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.gwj-testi-quote {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}
.gwj-testi-attr {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.gwj-testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--ink);
  flex-shrink: 0;
}
.gwj-testi-attr-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.gwj-testi-name {
  font-weight: 700;
  font-size: 14px;
}
.gwj-testi-role {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.7;
}

@media (min-width: 720px) {
  .gwj-testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── timeline ─────────────────────────────────────────────── */
.gwj-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 860px;
  margin: 0;
}
.gwj-timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.gwj-timeline-dot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.gwj-timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  flex-shrink: 0;
  background: var(--bg);
}
.gwj-timeline-dot.is-active {
  box-shadow: 0 0 0 4px rgba(0,0,0,0.08);
}
.gwj-timeline-line {
  width: 2px;
  height: 36px;
  background: var(--ink);
  opacity: 0.25;
}
.gwj-timeline-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 1px;
  line-height: 1.4;
  padding-bottom: 28px;
}

@media (min-width: 640px) {
  .gwj-timeline {
    flex-direction: row;
    align-items: flex-start;
  }
  .gwj-timeline-step {
    flex: 1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .gwj-timeline-dot-wrap {
    flex-direction: row;
    width: 100%;
    align-items: center;
  }
  .gwj-timeline-dot {
    flex-shrink: 0;
  }
  .gwj-timeline-line {
    flex: 1;
    width: auto;
    height: 2px;
  }
  .gwj-timeline-step:last-child .gwj-timeline-line {
    display: none;
  }
  .gwj-timeline-label {
    padding-bottom: 0;
  }
}

/* ── FAQ ──────────────────────────────────────────────────── */
.gwj-faq-wrap {
  max-width: 680px;
}
.gwj-faq {
  display: flex;
  flex-direction: column;
  border: 2px solid var(--ink);
  border-radius: 20px;
  overflow: hidden;
}
.gwj-faq-item {
  border-bottom: 1.5px solid var(--ink);
}
.gwj-faq-item:last-child {
  border-bottom: none;
}
.gwj-faq-item.is-open {
  background: var(--bg);
}
.gwj-faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  line-height: 1.4;
}
.gwj-faq-q:hover {
  background: var(--bg-alt);
}
.gwj-faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--ink-soft);
  flex-shrink: 0;
  line-height: 1;
}
.gwj-faq-a {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ── final CTA band ───────────────────────────────────────── */
.gwj-final-cta {
  background: var(--bg-alt);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 80px 0;
}
.gwj-final-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}
.gwj-final-headline {
  font-size: clamp(36px, 7vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0;
}
.gwj-final-sub {
  font-size: 16px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}
.gwj-final-btn {
  font-size: 17px;
  padding: 18px 36px;
}
.gwj-final-countdown {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0;
}

/* ── waitlist modal ───────────────────────────────────────── */
.gwj-modal {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 28px;
  box-shadow: 8px 8px 0 var(--ink);
  padding: 40px;
  width: min(480px, calc(100vw - 40px));
  position: relative;
  animation: slide-up 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}
.gwj-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--ink);
}
.gwj-modal-success {
  text-align: center;
  padding: 24px 0;
}
.gwj-modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── services transition bridge ───────────────────────────── */
.gwj-services-bridge {
  padding: 48px 0 8px;
  text-align: center;
}
.gwj-bridge-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-soft);
  margin: 0;
}

/* ── challenge proof bar — 4-col override ─────────────────── */
.gwj-proof-grid {
  grid-template-columns: repeat(2, 1fr) !important;
}
@media (min-width: 640px) {
  .gwj-proof-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

/* ── nav offset: announcement bar pushes nav down ─────────── */
/* When .gwj-bar is sticky at top:0 with z-index:200,
   the nav (sticky, z-index:100) should sit below it.
   The bar is ~40px tall; we adjust nav top dynamically via JS
   or simply accept the overlap on scroll (bar scrolls away first
   since it has higher z-index and comes first in DOM).         */
.gwj-bar ~ * .nav,
.gwj-bar + .nav {
  top: 40px;
}

/* ── mobile tweaks ────────────────────────────────────────── */
@media (max-width: 480px) {
  .gwj-hero-btn,
  .gwj-final-btn {
    width: 100%;
    justify-content: center;
  }
  .gwj-how-card,
  .gwj-week-card {
    padding: 24px;
  }
  .gwj-price-reveal {
    padding: 24px;
  }
  .gwj-modal {
    padding: 28px 24px;
  }
  .gwj-stack-row {
    padding: 12px 16px;
  }
  .gwj-faq-q {
    padding: 16px 18px;
  }
  .gwj-faq-a {
    padding: 0 18px 16px;
  }
}
