/* Boundary Scripts Swipe File - giniosguides.com - Funnel Sales Page v4 */
/* Pattern: CV-style structure (dark hero + green CTA + yellow accents + sans-serif bold) */
/* Palette adjusted: deep slate-navy + bright green + warm gold (not pixel-cloning CV) */

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { overflow-x: hidden; background-color: #0E1B2E; }
img { max-width: 100%; height: auto; }

body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  color: #1A1A1A;
  font-size: 18px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: #16A34A; }
a:hover { color: #22C55E; }

/* =================== UTILITIES =================== */
.outer { padding: 60px 20px; }
.outer--lg { padding: 80px 20px; }
.inner { max-width: 1100px; margin: 0 auto; }
.inner--md { max-width: 900px; margin: 0 auto; }
.inner--sm { max-width: 760px; margin: 0 auto; }

.txt-center { text-align: center; }

/* =================== HERO (SECTION 1) =================== */
.s1-outer {
  background: linear-gradient(296deg, #1B3A5C 0%, #0A1220 64%, #06101A 100%);
  padding: 60px 20px 70px;
  text-align: center;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  position: relative;
  overflow: hidden;
}
.s1-outer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: radial-gradient(circle at 30% 0%, rgba(22, 163, 74, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.s1-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.s1-prehead {
  color: #FFD93D;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  line-height: 1.6;
  margin: 0 0 22px;
}
.s1-headline {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  color: #ffffff;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.5px;
}
.s1-headline .hl { color: #FFD93D; }
.s1-subhead {
  color: #B8C1CC;
  font-size: 20px;
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 760px;
}
.s1-subhead strong { color: #ffffff; }

.s1-image-wrap {
  margin: 0 auto 36px;
  max-width: 540px;
  padding: 8px;
  background: linear-gradient(135deg, #FFD93D 0%, #16A34A 100%);
  border-radius: 14px;
  box-shadow: 0 24px 60px -16px rgba(0,0,0,0.6);
}
.s1-image-wrap img {
  width: 100%;
  display: block;
  border-radius: 10px;
}

.s1-cta-block { margin: 0 auto; max-width: 540px; }
.s1-caption {
  color: #FFD93D;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
}

/* =================== CTA (used everywhere) =================== */
.cta {
  display: inline-block;
  background-color: #16A34A;
  color: #ffffff !important;
  text-decoration: none;
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  padding: 18px 50px;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(22, 163, 74, 0.45);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}
.cta:hover {
  background-color: #22C55E;
  color: #ffffff !important;
  transform: scale(1.02);
  box-shadow: 0 6px 24px rgba(22, 163, 74, 0.55);
  text-decoration: none;
}
.cta-large {
  font-size: 26px;
  padding: 22px 64px;
}
.cta-sub {
  font-family: 'Inter', sans-serif;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  margin: 14px 0 0;
}
.cta-sub--dark { color: #555555; }
.cta-sub a { color: inherit; }

/* =================== SECTION TEMPLATES =================== */
/* Dark section */
.dark-outer {
  background: linear-gradient(180deg, #0E1B2E 0%, #0A1220 100%);
  color: #ffffff;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
}
.dark-outer h2, .dark-outer h3 { color: #ffffff; font-family: 'Poppins', sans-serif; }
.dark-outer p { color: #B8C1CC; }
.dark-outer strong { color: #ffffff; }

/* Light section */
.light-outer {
  background: #ffffff;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
}
.light-outer h2, .light-outer h3 { color: #0E1B2E; font-family: 'Poppins', sans-serif; }
.light-outer p { color: #333333; }
.light-outer strong { color: #0E1B2E; }

/* Gray section (alternate) */
.gray-outer {
  background: #F4F6F9;
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  color: #1A1A1A;
}
.gray-outer h2, .gray-outer h3 { color: #0E1B2E; font-family: 'Poppins', sans-serif; }
.gray-outer p { color: #333333; }
.gray-outer strong { color: #0E1B2E; }

/* =================== HEADLINES =================== */
.section-prehead {
  color: #16A34A;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 16px;
}
.dark-outer .section-prehead { color: #FFD93D; }

.section-headline {
  font-family: 'Poppins', sans-serif;
  font-size: 42px;
  font-weight: 800;
  line-height: 1.18;
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: -0.5px;
}
.section-headline .hl { color: #FFD93D; }
.dark-outer .section-headline .hl { color: #FFD93D; }
.light-outer .section-headline .hl,
.gray-outer .section-headline .hl {
  background: linear-gradient(180deg, transparent 65%, #FFD93D 65%, #FFD93D 95%, transparent 95%);
  padding: 0 6px;
  color: inherit;
}

.section-sub {
  font-size: 19px;
  line-height: 1.7;
  text-align: center;
  margin: 0 auto 40px;
  max-width: 740px;
}

/* =================== BODY COPY (mid-funnel storytelling) =================== */
.body-copy {
  font-size: 19px;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 760px;
}
.body-copy p { margin: 0 0 22px; }
.body-copy p:last-child { margin-bottom: 0; }
.body-copy strong { font-weight: 700; }
.body-copy h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 40px 0 16px;
  letter-spacing: -0.3px;
}

/* Check-list bullets (funnel pattern) */
.checklist {
  list-style: none;
  padding: 0;
  margin: 28px 0;
  max-width: 760px;
}
.checklist li {
  position: relative;
  padding: 14px 0 14px 44px;
  font-size: 18px;
  line-height: 1.65;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.light-outer .checklist li, .gray-outer .checklist li {
  border-bottom: 1px solid #E5E7EB;
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 14px;
  width: 28px;
  height: 28px;
  background: #16A34A;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

/* Inline pull-quote block (boxed callout) */
.callout-box {
  background: rgba(255, 217, 61, 0.10);
  border-left: 4px solid #FFD93D;
  padding: 24px 28px;
  margin: 32px auto;
  max-width: 760px;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.45;
  font-family: 'Poppins', sans-serif;
}
.dark-outer .callout-box { background: rgba(255, 217, 61, 0.08); color: #ffffff; }

/* =================== STAT CARDS GRID =================== */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 auto 36px;
  max-width: 920px;
}
@media (min-width: 768px) {
  .stat-grid { grid-template-columns: repeat(4, 1fr); }
}
.stat-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 28px 18px;
  text-align: center;
}
.dark-outer .stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}
.stat-num {
  color: #16A34A;
  font-family: 'Poppins', sans-serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 10px;
}
.dark-outer .stat-num { color: #FFD93D; }
.stat-text {
  color: #555555;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.dark-outer .stat-text { color: #B8C1CC; }

/* Image inline in body copy */
.body-image {
  margin: 36px auto;
  max-width: 620px;
  text-align: center;
}
.body-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 50px -16px rgba(0,0,0,0.18);
  display: block;
}
.dark-outer .body-image img { box-shadow: 0 20px 50px -16px rgba(0,0,0,0.6); }
.body-image-cap {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin: 12px 0 0;
}

/* =================== "WHAT YOU GET" FEATURE CARDS =================== */
.feature-list {
  margin: 36px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-card {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 32px 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}
.dark-outer .feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
}
.feature-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 16px;
}
.feature-badge {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #FFD93D 0%, #F59E0B 100%);
  color: #0E1B2E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.feature-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}
.feature-desc {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.feature-value {
  color: #16A34A;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 16px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid #E5E7EB;
}
.dark-outer .feature-value { border-top-color: rgba(255,255,255,0.12); }

/* =================== BONUS CARDS =================== */
.bonus-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0 0;
}
.bonus-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}
.bonus-tag {
  color: #FFD93D;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.bonus-title {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 14px;
}
.bonus-desc {
  color: #B8C1CC;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.bonus-value {
  color: #16A34A;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

/* =================== PRICE STACK SECTION =================== */
.price-outer {
  background: linear-gradient(180deg, #0E1B2E 0%, #1B3A5C 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
}
.price-prehead {
  color: #FFD93D;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.price-title {
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 auto 40px;
  max-width: 740px;
  letter-spacing: -0.3px;
}
.price-stack {
  max-width: 580px;
  margin: 0 auto 40px;
  text-align: left;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 0;
}
.stack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px dashed rgba(255,255,255,0.12);
  gap: 16px;
}
.stack-row:last-child { border-bottom: none; }
.stack-row-label {
  color: #B8C1CC;
  font-size: 16px;
  line-height: 1.45;
  flex: 1;
}
.stack-row-value {
  color: #B8C1CC;
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.total-line {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 28px 0 8px;
}
.total-line .strike {
  color: #B8C1CC;
  text-decoration: line-through;
  font-weight: 500;
}
.today-line {
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFD93D;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 28px 0 8px;
}
.big-price {
  font-family: 'Poppins', sans-serif;
  color: #FFD93D;
  font-size: 108px;
  font-weight: 800;
  line-height: 1;
  margin: 0 0 8px;
  letter-spacing: -3px;
  text-shadow: 0 6px 24px rgba(255, 217, 61, 0.25);
}
.big-price .cents { font-size: 0.5em; vertical-align: top; line-height: 1.2; }
.price-savings {
  color: #16A34A;
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 32px;
}
.price-context {
  color: #B8C1CC;
  font-size: 15px;
  font-style: italic;
  line-height: 1.55;
  max-width: 480px;
  margin: 0 auto 36px;
}
.trust-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: #B8C1CC;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.trust-row span { display: flex; align-items: center; gap: 6px; }
.trust-row span::before {
  content: '\2713';
  color: #16A34A;
  font-weight: 700;
  font-size: 14px;
}

/* =================== GUARANTEE SECTION =================== */
.guarantee-box {
  background: #ffffff;
  border: 3px solid #FFD93D;
  border-radius: 16px;
  padding: 40px 32px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 40px -16px rgba(255, 184, 0, 0.4);
}
.guarantee-badge {
  width: 110px;
  height: 110px;
  background: linear-gradient(135deg, #FFD93D 0%, #F59E0B 100%);
  border-radius: 50%;
  margin: -70px auto 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.4);
}
.guarantee-badge-num {
  font-family: 'Poppins', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #0E1B2E;
  line-height: 1;
}
.guarantee-badge-text {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #0E1B2E;
  text-transform: uppercase;
  margin-top: 4px;
}
.guarantee-title {
  font-family: 'Poppins', sans-serif;
  color: #0E1B2E;
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 18px;
}
.guarantee-body {
  color: #333333;
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.guarantee-body:last-child { margin-bottom: 0; }

/* =================== BINARY CHOICE =================== */
.binary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 980px;
  margin: 40px auto 32px;
}
@media (min-width: 768px) {
  .binary-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
.binary-option {
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
}
.binary-option--bad {
  background: #ffffff;
  border: 2px solid #E5E7EB;
  color: #666666;
}
.binary-option--bad .binary-tag-text { color: #999; }
.binary-option--bad .binary-h { color: #555555; }
.binary-option--good {
  background: linear-gradient(180deg, #fffbe6 0%, #fff5cc 100%);
  border: 3px solid #16A34A;
  box-shadow: 0 12px 40px -12px rgba(22, 163, 74, 0.4);
}
.binary-option--good .binary-h { color: #0E1B2E; }
.binary-tag-text {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #16A34A;
  margin: 0 0 10px;
}
.binary-h {
  font-family: 'Poppins', sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 14px;
}
.binary-p {
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 14px;
}
.binary-inline-cta { margin-top: 22px; text-align: center; }

.post-binary-line {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 32px auto;
  max-width: 720px;
  color: #0E1B2E;
}

/* =================== FAQ =================== */
.faq-block {
  max-width: 760px;
  margin: 36px auto 0;
}
.faq-item {
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 10px;
  padding: 24px 28px;
  margin: 0 0 14px;
}
.faq-item h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #0E1B2E;
  margin: 0 0 10px;
  line-height: 1.4;
}
.faq-item p {
  font-size: 16px;
  line-height: 1.65;
  color: #444444;
  margin: 0;
}

/* =================== P.S. =================== */
.ps-block {
  max-width: 760px;
  margin: 0 auto;
  background: #fffbe6;
  border-left: 4px solid #FFD93D;
  padding: 32px 36px;
  border-radius: 8px;
}
.ps-block p {
  font-size: 18px;
  line-height: 1.7;
  color: #333333;
  margin: 0 0 16px;
}
.ps-block p:last-child { margin-bottom: 0; }
.ps-block strong { color: #0E1B2E; font-weight: 700; }
.ps-prefix {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #16A34A;
}

/* =================== IDENTITY FOOTER =================== */
.identity-block {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.identity-line {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45;
  color: #ffffff;
  margin: 0 0 22px;
}
.identity-line--accent { color: #FFD93D; font-size: 26px; }
.identity-final {
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin: 36px 0;
}

.page-foot {
  text-align: center;
  padding: 40px 20px 24px;
  color: #B8C1CC;
}
.foot-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 8px;
}
.foot-meta {
  font-size: 13px;
  color: #8A93A0;
}
.foot-meta a { color: #B8C1CC; }

/* =================== TESTIMONIAL CARDS =================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 36px 0 0;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px 26px;
  border-top: 4px solid #16A34A;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.10);
}
.t-stars {
  color: #FFD93D;
  font-size: 18px;
  letter-spacing: 3px;
  margin: 0 0 12px;
}
.t-body {
  color: #333333;
  font-size: 17px;
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 14px;
}
.t-sig {
  color: #888;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* =================== MOBILE STICKY =================== */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0E1B2E;
  border-top: 2px solid #FFD93D;
  padding: 10px 14px;
  z-index: 1000;
  display: none;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.sticky-bar--visible { transform: translateY(0); }
.sticky-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 700px;
  margin: 0 auto;
}
.sticky-price {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #B8C1CC;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.sticky-price strong {
  color: #FFD93D;
  font-size: 18px;
  font-weight: 800;
  margin-left: 6px;
}
.sticky-cta {
  background: #16A34A;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
}
.sticky-cta:hover { background: #22C55E; color: #fff !important; text-decoration: none; }

@media (max-width: 768px) {
  .sticky-bar { display: block; }
  body { padding-bottom: 70px; }
}

/* =================== MOBILE OVERRIDES =================== */
@media (max-width: 768px) {
  .outer, .outer--lg, .s1-outer, .dark-outer, .light-outer, .gray-outer, .price-outer { padding: 50px 16px; }
  .s1-outer { padding: 40px 16px 56px; }

  .s1-headline { font-size: 32px; }
  .s1-subhead { font-size: 17px; margin-bottom: 28px; }
  .s1-prehead { font-size: 12px; letter-spacing: 2px; }

  .section-headline { font-size: 28px; }
  .section-sub { font-size: 17px; }

  .body-copy { font-size: 17px; }
  .body-copy h3 { font-size: 22px; }
  .checklist li { font-size: 16px; padding: 12px 0 12px 40px; }

  .cta {
    font-size: 18px;
    padding: 16px 28px;
    width: 100%;
    box-sizing: border-box;
  }
  .cta-large { font-size: 19px; padding: 17px 32px; }

  .callout-box { font-size: 18px; padding: 20px 22px; }

  .stat-num { font-size: 30px; }
  .stat-card { padding: 22px 16px; }

  .feature-card { padding: 24px 22px; }
  .feature-title { font-size: 21px; }
  .feature-desc { font-size: 16px; }
  .feature-badge { width: 44px; height: 44px; font-size: 18px; }
  .feature-head { gap: 12px; }

  .bonus-card { padding: 26px 22px; }
  .bonus-title { font-size: 22px; }

  .price-title { font-size: 26px; }
  .big-price { font-size: 80px; letter-spacing: -2px; }
  .stack-row { padding: 14px 18px; }
  .stack-row-label { font-size: 14px; }
  .stack-row-value { font-size: 15px; }

  .guarantee-box { padding: 32px 22px; }
  .guarantee-badge { width: 90px; height: 90px; margin-top: -56px; }
  .guarantee-badge-num { font-size: 26px; }
  .guarantee-title { font-size: 22px; }

  .binary-option { padding: 26px 22px; }
  .binary-h { font-size: 22px; }
  .binary-p { font-size: 15px; }
  .post-binary-line { font-size: 19px; }

  .faq-item { padding: 20px 22px; }
  .faq-item h3 { font-size: 17px; }
  .faq-item p { font-size: 15px; }

  .ps-block { padding: 26px 22px; }
  .ps-block p { font-size: 17px; }

  .identity-line { font-size: 19px; }
  .identity-line--accent { font-size: 22px; }
  .identity-final { font-size: 28px; }

  .trust-row { gap: 14px; font-size: 11px; }
}
