/* ══════════════════════════════════
   RESET & VARIABLES
══════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #111111;
  --white:      #FFFFFF;
  --gray-50:    #F9F9F9;
  --gray-100:   #F2F2F2;
  --gray-200:   #E6E6E6;
  --gray-300:   #D1D1D1;
  --gray-400:   #A0A0A0;
  --gray-500:   #717171;
  --green:      #16A34A;
  --green-light:#DCFCE7;
  --red:        #DC2626;
  --font-sans:  'DM Sans', sans-serif;
  --font-mono:  'DM Mono', monospace;
  --font-serif: 'DM Sans', serif;
  --max-w:      760px;
  --max-w-wide: 1000px;
}

::selection {
  background-color: var(--black);
  color: var(--white);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ══════════════════════════════════
   ANNOUNCEMENT BAR
══════════════════════════════════ */
.topbar {
  background: var(--black);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.topbar-divider { color: var(--gray-500); }

.topbar a {
  color: #16A34A;
  text-decoration: none;
  font-weight: 600;
}

/* ══════════════════════════════════
   HERO SECTION
══════════════════════════════════ */
.hero {
  background: var(--white);
  color: var(--black);
  padding: 80px 24px 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-proof-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: #000000;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 28px;
}

.hero-proof-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: #16A34A;
  border-radius: 50%;
  box-shadow: 0 0 8px #16A34A;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.15;
  font-weight: 400;
  max-width: 820px;
  margin: 0 auto 20px;
  letter-spacing: -0.5px;
}

.hero-headline em {
  font-style: italic;
  color: #16A34A;
}

.hero-sub {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 540px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.hero-sub strong { color: var(--white); font-weight: 600; }

.hero-dear {
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 36px;
  font-style: italic;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 36px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  letter-spacing: -0.2px;
}

.btn-cta:hover { background:#16A34A; transform: translateY(-1px); }

.btn-cta-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--gray-300);
  font-size: 14px;
  padding: 11px 28px;
}

.btn-cta-outline:hover { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.35); transform: none; }

.hero-guarantee {
  font-size: 12.5px;
  color: var(--gray-500);
  margin-top: 10px;
  font-family: var(--font-mono);
}

/* ══════════════════════════════════
   PROOF NUMBERS BAR
══════════════════════════════════ */
.proof-bar {
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 28px 24px;
  display: flex;
  justify-content: center;
  gap: 0;
}

.proof-stat {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--gray-200);
}

.proof-stat:last-child { border-right: none; }

.proof-number {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -1px;
  line-height: 1.1;
}

.proof-label {
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 4px;
  font-weight: 500;
}

/* ══════════════════════════════════
   SECTION STRUCTURE
══════════════════════════════════ */
.section {
  padding: 72px 24px;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-inner-wide {
  max-width: var(--max-w-wide);
  margin: 0 auto;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 10px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.4px;
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--green); }

/* ══════════════════════════════════
   BODY COPY STYLING
══════════════════════════════════ */
.prose p {
  font-size: 16.5px;
  line-height: 1.75;
  color: #333;
  margin-bottom: 20px;
}

.prose p:last-child { margin-bottom: 0; }

.prose strong {
  color: var(--black);
  font-weight: 600;
}

.prose .scream {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--black);
  font-weight: 400;
  font-style: italic;
  border-left: 3px solid var(--black);
  padding: 12px 0 12px 20px;
  margin: 28px 0;
  line-height: 1.4;
}

.callout-red {
  background: #fff1f1;
  border: 1px solid #fca5a5;
  border-radius: 8px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: #000000;
}

.callout-green {
  background: var(--green-light);
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: #14532d;
}

.sucks-callout {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  font-style: italic;
  color: #DC2626;
  padding: 32px 0 24px;
  letter-spacing: -1px;
}

/* ══════════════════════════════════
   COST CALCULATOR BLOCK
══════════════════════════════════ */
.cost-block {
  background: var(--black);
  color: var(--white);
  border-radius: 12px;
  padding: 36px 40px;
  margin: 36px 0;
}

.cost-block h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 18px;
  font-style: italic;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14.5px;
}

.cost-row:last-child { border-bottom: none; }
.cost-label { color: var(--gray-400); }
.cost-value { font-family: var(--font-mono); font-weight: 500; color: var(--white); }
.cost-value.red { color: #DC2626; }
.cost-value.green { color: #16A34A; }

/* ══════════════════════════════════
   INTRODUCING BLOCK
══════════════════════════════════ */
.introducing {
  background: var(--black);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.introducing::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.introducing-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #86EFAC;
  background: rgba(22,163,74,0.15);
  border: 1px solid rgba(22,163,74,0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
}

.introducing-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.introducing-sub {
  font-size: 17px;
  color: var(--gray-400);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(22,163,74,0.09);
  border: 1px solid rgba(22,163,74,0.25);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 8px;
  margin-bottom: 40px;
}

.proof-pill span {
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 500;
  color: #4ade80;
}

/* ══════════════════════════════════
   HOW IT WORKS STEPS
══════════════════════════════════ */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 36px;
}

.step-card {
  text-align: center;
  padding: 28px 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-500);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.step-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 13.5px;
  color: var(--gray-400);
  line-height: 1.6;
}

/* ══════════════════════════════════
   MODES SECTION
══════════════════════════════════ */
.modes-section {
  background: var(--gray-50);
  padding: 80px 24px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.modes-category {
  margin-bottom: 44px;
}

.modes-category:last-child { margin-bottom: 0; }

.modes-cat-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-400);
  font-weight: 500;
  margin-bottom: 16px;
}

.modes-cat-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}

.modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.mode-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 20px 22px;
  transition: border-color 0.15s, box-shadow 0.15s;
  position: relative;
}

.mode-card:hover {
  border-color: var(--gray-400);
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.mode-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gray-400);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.mode-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.mode-desc {
  font-size: 13.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

.mode-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: #16A34A;
  background: var(--green-light);
  padding: 3px 9px;
  border-radius: 20px;
  font-weight: 500;
}

/* ══════════════════════════════════
   WORKFLOWS
══════════════════════════════════ */
.workflows-section { padding: 80px 24px; }

.workflow-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 36px;
}

.workflow-card {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.15s;
}

.workflow-card:hover { border-color: var(--gray-400); }
.workflow-card.open { border-color: var(--black); }

.workflow-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  user-select: none;
}

.workflow-num {
  width: 34px;
  height: 34px;
  background: var(--black);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  flex-shrink: 0;
}

.workflow-title {
  flex: 1;
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.2px;
}

.workflow-arrow {
  font-size: 13px;
  color: var(--gray-400);
  transition: transform 0.2s;
}

.workflow-card.open .workflow-arrow { transform: rotate(180deg); }

.workflow-body {
  display: none;
  padding: 0 24px 22px;
  border-top: 1px solid var(--gray-100);
}

.workflow-card.open .workflow-body { display: block; }

.workflow-steps {
  list-style: none;
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.workflow-step {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.6;
}

.workflow-step-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green-light);
  border: 1.5px solid #86efac;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 3px;
}

.workflow-step-dot svg {
  width: 9px; height: 9px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ══════════════════════════════════
   BONUSES SECTION
══════════════════════════════════ */
.bonuses-section {
  background: var(--black);
  color: var(--white);
  padding: 80px 24px;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.bonus-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 22px;
  transition: border-color 0.15s;
}
.bonus-card img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%; 
  margin-bottom: 15px;
  border: 2px solid rgba(255,255,255,1);
  border-radius: 9px;
}

.bonus-card i {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%; 
  margin-bottom: 15px;
  font-size: 120px;
}

.bonus-card:hover { border-color: rgba(255,255,255,0.2); }

.bonus-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--gray-500);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.bonus-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.bonus-desc {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.6;
}

.bonus-plans-note {
  background: rgba(22, 163, 74, 0.09);
  border: 1px solid rgba(22,163,74,0.2);
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 13.5px;
  color: #86EFAC;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ══════════════════════════════════
   TESTIMONIALS
══════════════════════════════════ */
.testimonials-section {
  padding: 80px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 26px 28px;
}

.testimonial-quote {
  font-size: 15.5px;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-quote::before { content: '\201C'; color: var(--green); font-size: 24px; line-height: 0; vertical-align: -8px; margin-right: 3px; }

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 36px; height: 36px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 12px;
  font-weight: 600;
  flex-shrink: 0;
}

.testimonial-name { font-size: 13.5px; font-weight: 600; color: var(--black); }
.testimonial-role { font-size: 12.5px; color: var(--gray-500); }

.testimonial-placeholder {
  background: var(--gray-100);
  border: 1.5px dashed var(--gray-300);
  border-radius: 10px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 140px;
}

.testimonial-placeholder p {
  color: var(--gray-400);
  font-size: 13px;
  font-style: italic;
}

/* ══════════════════════════════════
   FAQ
══════════════════════════════════ */
.faq-section { padding: 80px 24px; }

.faq-list {
  margin-top: 36px;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  user-select: none;
  gap: 16px;
}

.faq-icon {
  width: 22px; height: 22px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 13px;
  color: var(--gray-500);
  transition: all 0.15s;
}

.faq-item.open .faq-icon {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.7;
  border-top: 1px solid var(--gray-100);
}

.faq-answer p { padding-top: 16px; }
.faq-item.open .faq-answer { display: block; }

/* ══════════════════════════════════
   GUARANTEE
══════════════════════════════════ */
.guarantee-section {
  padding: 72px 24px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  text-align: center;
}

.guarantee-badge {
  width: 80px; height: 80px;
  background: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
}

.guarantee-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 14px;
}

.guarantee-body {
  font-size: 16px;
  color: var(--gray-500);
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}

/* ══════════════════════════════════
   FINAL CTA SECTION
══════════════════════════════════ */
.final-cta {
  background: var(--black);
  color: var(--white);
  padding: 96px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.15;
}

.final-cta-sub {
  font-size: 16.5px;
  color: var(--gray-400);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.plan-chips {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.plan-chip {
  font-family: var(--font-mono);
  font-size: 11.5px;
  color: var(--white);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 14px;
  border-radius: 20px;
}

/* ══════════════════════════════════
   PS SECTION
══════════════════════════════════ */
.ps-section {
  padding: 48px 24px 60px;
  border-top: 1px solid var(--gray-200);
}

.ps-section .section-inner {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px 32px;
}

.ps-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.ps-text {
  font-size: 14.5px;
  color: var(--gray-500);
  line-height: 1.75;
}

.ps-text strong { color: var(--black); }
.ps-text a { color: var(--green); text-decoration: none; font-weight: 500; }

/* ══════════════════════════════════
   FOOTER
══════════════════════════════════ */
.footer {
  background: var(--black);
  color: var(--gray-500);
  padding: 32px 24px;
  text-align: center;
  font-size: 12.5px;
  line-height: 1.8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover { color: var(--white); }

.footer-disclaimer {
  font-size: 11.5px;
  max-width: 640px;
  margin: 14px auto 0;
  color: var(--gray-500);
}

/* ══════════════════════════════════
   DIVIDER ELEMENTS
══════════════════════════════════ */
.section-divider {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.section-divider::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: var(--gray-200);
}

.section-divider span {
  position: relative;
  background: var(--white);
  padding: 0 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--gray-400);
  letter-spacing: 1px;
}

/* ══════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════
   RESPONSIVE
══════════════════════════════════ */
@media (max-width: 700px) { /*ASIM*/
    .topbar span:last-of-type,
    .topbar span:nth-of-type(2),
    a {
        display: none;
    }
    .hero-eyebrow {
        display: none;
    }
    .cost-block {
    padding: 20px 16px; 
    margin: 20px -16px; 
    }
    .cost-row {
    font-size: 13.5px;
    gap: 10px;
}

    .cost-label {
    flex: 1;
    text-align: left;
}

    .cost-value {
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
}
    .proof-pill {
        display: block;
    }
}
.bonus-link {
    text-decoration: none;
    color: var(--green);
    display: inline-block; /* ensures it shows properly on mobile */
    margin-top: 8px;
    font-weight: 500;
}
.screenshot-container {
  width: 100%;
  overflow: hidden;
  text-align: center; /* centers image */
}

.screenshot-container img {
  max-width: 100%;
  height: auto;
  border: 5px solid rgba(0,0,0,0.5);
  display: inline-block;
}


@media (max-width: 700px) {
  .proof-bar { flex-wrap: wrap; gap: 0; }
  .proof-stat { padding: 14px 20px; width: 50%; border-right: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
  .proof-stat:nth-child(2n) { border-right: none; }
  .proof-stat:nth-child(3), .proof-stat:nth-child(4) { border-bottom: none; }
  .steps-row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .modes-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .cost-block { padding: 24px 20px; }
  .hero-headline { font-size: 28px; }
  .topbar { flex-direction: column; gap: 4px; }
}

@media (max-width: 500px) {
  .section { padding: 52px 18px; }
  .ps-section .section-inner { padding: 20px 18px; }
}