/* ================================================================
   X3WEB — Build An AI Website
   Design: Structured Premium Light
   Palette: #f5f5f7 bg · #0b2e67 navy · #1d1d1f near-black · #6e6e73 muted
   Font: Inter (400/500/600/700/800/900)
   ================================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #f5f5f7;
  --surface:    #ffffff;
  --brand:      #e8600a;
  --brand-mid:  #c94f06;
  --brand-soft: #fff0e6;
  --text:       #1d1d1f;
  --muted:      #6e6e73;
  --line:       rgba(29,29,31,.08);
  --shadow-1:   0 4px 16px rgba(0,0,0,.06);
  --shadow-2:   0 10px 32px rgba(0,0,0,.09);
  --r-sm:       10px;
  --r-md:       16px;
  --r-lg:       24px;
  /* Orange accent */
  --accent:       #e8600a;
  --accent-hover: #c94f06;
  --accent-soft:  #fff3eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Typography ── */
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; letter-spacing: -.04em; line-height: 1.05; }
h2 { font-size: clamp(2rem, 4vw, 3rem);   font-weight: 800; letter-spacing: -.04em; line-height: 1.1; }
h3 { font-size: 1.05rem; font-weight: 700; }
p  { color: var(--muted); line-height: 1.7; }

.lead { font-size: 1.1rem; color: var(--muted); line-height: 1.7; }
.eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand);
  margin-bottom: 18px;
}
.section-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--brand);
  display: block; margin-bottom: 16px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  font-size: .9rem; font-weight: 700; letter-spacing: -.01em;
  padding: 14px 26px; border-radius: 100px;
  border: none; cursor: pointer;
  transition: background .18s, transform .14s, box-shadow .18s;
  box-shadow: 0 4px 16px rgba(232,96,10,.28);
  white-space: nowrap;
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,96,10,.35); }
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--brand);
  font-size: .9rem; font-weight: 700;
  padding: 13px 24px; border-radius: 100px;
  border: 1.5px solid rgba(11,46,103,.25); cursor: pointer;
  transition: border-color .18s, background .18s;
}
.btn-secondary:hover { border-color: var(--brand); background: var(--brand-soft); }

.btn-sm { padding: 10px 20px; font-size: .82rem; }

/* ── Layout ── */
.container { width: 100%; max-width: 1500px; margin: 0 auto; padding: 0 20px; }
.section   { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Nav ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  height: 60px;
}
.nav-inner {
  max-width: 1500px; margin: 0 auto; padding: 0 20px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.logo { font-size: 1.1rem; font-weight: 900; color: var(--brand); letter-spacing: -.03em; }

/* ── Hero ── */
.hero { background: var(--surface); padding: 80px 0 96px; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}
.hero-copy { max-width: 580px; }
.hero-copy h1 { margin-bottom: 20px; }
.hero-copy .lead { margin-bottom: 28px; }

.bullet-list { list-style: none; margin: 0 0 28px; display: flex; flex-direction: column; gap: 10px; }
.bullet-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .975rem; color: var(--text);
}
.bullet-list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2e67' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'/%3E%3Cpolyline points='22 4 12 14.01 9 11.01'/%3E%3C/svg%3E") center/contain no-repeat;
}

.price-block {
  display: inline-flex; flex-direction: column; gap: 6px;
  padding: 16px 22px; margin-bottom: 24px;
  background: var(--brand-soft);
  border: 1px solid rgba(11,46,103,.1);
  border-radius: var(--r-md);
}
.price-amount { font-size: 2.2rem; font-weight: 900; letter-spacing: -.04em; color: var(--brand); }
.price-amount span { font-size: 1rem; font-weight: 500; }
.price-meta { display: flex; gap: 18px; flex-wrap: wrap; }
.price-meta-item { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 5px; }

.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }

.trust-line {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: .78rem; color: var(--muted);
}
.trust-line span { display: flex; align-items: center; gap: 5px; }
.trust-sep { color: var(--line); }

.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-visual::before {
  content: '';
  position: absolute;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(122,167,255,.2) 0%, transparent 70%);
  pointer-events: none;
}
.hero-visual img {
  position: relative; z-index: 1;
  filter: drop-shadow(0 20px 40px rgba(11,46,103,.15));
  max-width: 340px; width: 100%;
}

/* ── Credibility strip ── */
.credibility {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.credibility-inner {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; align-items: center;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 100px; padding: 8px 16px;
  font-size: .8rem; font-weight: 600; color: var(--text);
}

/* ── Problem section ── */
.problem { background: var(--surface); }
.problem-intro { max-width: 640px; margin-bottom: 56px; }
.problem-intro h2 { margin-bottom: 16px; }
.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .cards-3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-1);
  transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-2); transform: translateY(-2px); }
.card-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--accent-soft);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.card-icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: 8px; }

/* ── What's included ── */
.whats-included { background: var(--bg); }
.cards-6 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}
@media (min-width: 640px)  { .cards-6 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cards-6 { grid-template-columns: repeat(3, 1fr); } }

.card-light {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px;
  box-shadow: var(--shadow-1);
}
.card-light h3 { margin-bottom: 6px; }

/* Mid-section CTA banner */
.mid-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
  box-shadow: var(--shadow-1);
}
.mid-cta-text h3 { margin-bottom: 4px; }
.mid-cta-text p  { margin: 0; font-size: .9rem; }
.mid-cta-right { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* ── Process ── */
.process { background: var(--surface); }
.process-intro { max-width: 580px; margin-bottom: 56px; }
.process-intro h2 { margin-bottom: 12px; }
.steps { display: flex; flex-direction: column; }
.step {
  display: grid; grid-template-columns: 96px 1fr;
  gap: 32px; align-items: flex-start;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-size: 2.8rem; font-weight: 900; letter-spacing: -.05em;
  color: var(--brand-soft); line-height: 1;
  /* outlined effect */
  -webkit-text-stroke: 2px var(--brand);
  color: transparent;
}
.step-body h3 { margin-bottom: 6px; font-size: 1.1rem; }

/* ── Who it's for ── */
.for-section { background: var(--bg); }
.for-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 700px) { .for-grid { grid-template-columns: 1fr 1fr; } }
.for-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 44px; box-shadow: var(--shadow-1); }
.for-card h3 { margin-bottom: 16px; }
.for-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.for-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; }
.for-list li.yes::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c7a43' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/contain no-repeat;
}
.for-list li.no::before {
  content: '';
  width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c0392b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ── Download pack ── */
.download-pack { background: #e8eef8; }
.pack-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}
@media (min-width: 900px) { .pack-grid { grid-template-columns: 1fr 1fr; } }
.pack-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.pack-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: .95rem; font-weight: 500; color: var(--text);
}
.pack-list li::before {
  content: '';
  width: 18px; height: 18px; flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2e67' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='3' width='20' height='14' rx='2'/%3E%3Cline x1='8' y1='21' x2='16' y2='21'/%3E%3Cline x1='12' y1='17' x2='12' y2='21'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pack-visual { display: flex; justify-content: center; }
.pack-visual img { max-width: 280px; filter: drop-shadow(0 16px 32px rgba(11,46,103,.15)); }

/* ── FAQ ── */
.faq-section { background: var(--surface); }
.faq-intro { max-width: 560px; margin-bottom: 48px; }
.faq-intro h2 { margin-bottom: 12px; }
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; gap: 16px;
  font-size: 1rem; font-weight: 700; color: var(--text);
  text-align: left;
}
.faq-question .icon { flex-shrink: 0; transition: transform .22s; }
.faq-question.open .icon { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden; max-height: 0;
  transition: max-height .28s ease, padding .22s ease;
}
.faq-answer p { padding-bottom: 20px; font-size: .95rem; }
.faq-answer.open { max-height: 400px; }

/* ── Final CTA ── */
.final-cta { background: var(--brand); color: #fff; }
.final-cta h2 { color: #fff; }
.final-cta p  { color: rgba(255,255,255,.75); }
.final-cta-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 48px; align-items: center;
}
@media (min-width: 900px) { .final-cta-grid { grid-template-columns: 1fr 1fr; } }
.final-cta-copy h2 { margin-bottom: 16px; }
.final-cta-copy p  { margin-bottom: 28px; }
.final-cta .btn-primary {
  background: #fff; color: var(--brand);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.final-cta .btn-primary:hover { background: #f0f4ff; }
.final-cta-trust {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 16px; font-size: .78rem; color: rgba(255,255,255,.65);
}
.final-cta-trust span { display: flex; align-items: center; gap: 5px; }
.final-cta-visual { display: flex; justify-content: center; }
.final-cta-visual img { max-width: 300px; filter: drop-shadow(0 20px 40px rgba(0,0,0,.25)); }

/* ── Footer ── */
.site-footer { background: #0b2e67; border-top: none; padding: 40px 0; }
.footer-inner { max-width: 1500px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.footer-brand p { font-size: .85rem; max-width: 360px; margin-top: 8px; color: rgba(255,255,255,0.65); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,0.65); transition: color .15s; }
.footer-links a:hover { color: #ffffff; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,0.45); }

/* ── Mobile sticky CTA ── */
.mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  padding: 12px 16px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(0,0,0,.08);
}
@media (max-width: 640px) {
  .mobile-cta.visible { display: block; }
}

/* ── Checkout page ── */
.checkout-wrap { max-width: 880px; margin: 0 auto; padding: 40px 20px 80px; }
.checkout-wrap h1 { margin-bottom: 32px; }
.checkout-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 640px) { .checkout-grid { grid-template-columns: 1fr 1fr; } }

.order-summary {
  background: var(--bg); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
}
.order-summary h2 { font-size: 1rem; margin-bottom: 20px; }
.order-product { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 20px; }
.order-product img { width: 72px; border-radius: 10px; box-shadow: 0 4px 12px rgba(11,46,103,.12); flex-shrink: 0; }
.order-product-info strong { display: block; font-size: .95rem; margin-bottom: 4px; }
.order-product-info p { font-size: .82rem; }
.order-rows { border-top: 1px solid var(--line); padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.order-row { display: flex; justify-content: space-between; font-size: .85rem; color: var(--muted); }
.order-total { display: flex; justify-content: space-between; font-size: 1.1rem; font-weight: 800; color: var(--brand); margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--line); }
.order-trust { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.order-trust-item { display: flex; align-items: center; gap: 8px; font-size: .78rem; color: var(--muted); }

.checkout-form-wrap {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-2);
}
.checkout-form-wrap h2 { font-size: 1rem; margin-bottom: 20px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 6px; }
.form-group input,
.form-group select {
  width: 100%; height: 48px; padding: 0 14px;
  border-radius: 12px; border: 1px solid rgba(29,29,31,.15);
  font-size: .95rem; color: var(--text); background: #fff;
  font-family: inherit; outline: none;
  transition: border-color .15s;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--brand); }
.payfast-info {
  background: var(--brand-soft); border: 1px solid rgba(11,46,103,.1);
  border-radius: 12px; padding: 16px; display: flex; gap: 12px; align-items: flex-start;
  margin: 20px 0 16px;
}
.payfast-info strong { display: block; font-size: .875rem; color: var(--brand); margin-bottom: 3px; }
.payfast-info p { font-size: .78rem; margin: 0; }
.form-legal { font-size: .75rem; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.6; }
.form-legal a { color: var(--brand); }
.payment-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.payment-header h3 { font-size: 1rem; }
.card-badges { font-size: .75rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }

/* ── Policy pages ── */
.policy-wrap { max-width: 760px; margin: 0 auto; padding: 52px 20px 80px; }
.policy-wrap h1 { margin-bottom: 32px; }
.policy-body {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 36px 40px;
  box-shadow: var(--shadow-2);
  line-height: 1.75; font-size: .95rem;
}
.policy-body h2 { font-size: 1.1rem; margin: 28px 0 10px; color: var(--text); }
.policy-body p  { color: var(--muted); margin-bottom: 12px; }
.policy-body a  { color: var(--brand); }
.policy-date { font-size: .82rem; color: var(--muted); margin-bottom: 28px; display: block; }

/* ── Order received ── */
.order-received-wrap {
  min-height: calc(100vh - 60px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px 20px;
}
.order-received-box { max-width: 520px; width: 100%; text-align: center; }
.success-icon { margin: 0 auto 24px; }
.order-received-box h1 { margin-bottom: 12px; }
.order-received-box .lead { margin-bottom: 32px; }
.order-btn-stack { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.email-hint {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px 24px;
  display: flex; gap: 12px; align-items: flex-start;
  text-align: left; box-shadow: var(--shadow-1);
}
.email-hint strong { display: block; font-size: .875rem; margin-bottom: 4px; }
.email-hint p { font-size: .82rem; margin: 0; }

/* ── Contact support ── */
.contact-wrap { max-width: 640px; margin: 0 auto; padding: 52px 20px 80px; }
.contact-wrap h1 { margin-bottom: 12px; }
.contact-wrap > .lead { margin-bottom: 36px; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px 28px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: var(--shadow-1);
  transition: box-shadow .2s;
}
.contact-card:hover { box-shadow: var(--shadow-2); }
.contact-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-soft);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card-icon svg { width: 20px; height: 20px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-card strong { display: block; font-size: .95rem; margin-bottom: 3px; }
.contact-card span  { font-size: .875rem; color: var(--muted); }
.contact-issues {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px;
  box-shadow: var(--shadow-1);
}
.contact-issues h2 { font-size: 1rem; margin-bottom: 16px; }
.issue-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.issue-list li { display: flex; align-items: flex-start; gap: 10px; font-size: .875rem; color: var(--muted); }
.issue-list li::before {
  content: '';
  width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b2e67' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.contact-footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 24px; font-size: .8rem; }
.contact-footer-links a { color: var(--brand); }

/* ── Checkout email notice ── */
.checkout-email-notice {
  display: flex; align-items: flex-start; gap: 10px;
  background: #f0f4ff; border: 1px solid rgba(11,46,103,.15);
  border-radius: 10px; padding: 14px 16px;
  font-size: .85rem; color: #3d3d3f; line-height: 1.6;
  margin-top: 4px;
}
.checkout-email-notice svg { flex-shrink: 0; margin-top: 2px; }
.checkout-email-notice strong { color: #1d1d1f; }

/* ── Minimal header (checkout / policy pages) ── */
.minimal-header {
  background: var(--surface); border-bottom: 1px solid var(--line);
  height: 56px; display: flex; align-items: center;
}
.minimal-header-inner {
  max-width: 1500px; margin: 0 auto; padding: 0 20px;
  width: 100%; display: flex; align-items: center; justify-content: space-between;
}
.minimal-header .back-link { font-size: .82rem; color: var(--muted); }
.minimal-header .back-link:hover { color: var(--brand); }

/* ── Utilities ── */
.text-center { text-align: center; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }


/* ═══════════════════════════════════════════════════════════
   NEW SECTION SYSTEM — pasted_content_3.txt spec
   ═══════════════════════════════════════════════════════════ */

/* ── Shared section tokens (supplement existing :root) ── */
:root {
  --surface-soft: #fbfbfd;
  --shadow-soft:  0 10px 30px rgba(0,0,0,.06);
  --shadow-mid:   0 18px 50px rgba(0,0,0,.08);
  --radius-xl:    28px;
  --radius-lg:    20px;
  --radius-md:    16px;
  --max:          1380px;
}

/* ── Section base ── */
.page-section { padding: 110px 0; }

.section-shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 48px;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -.04em;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 14px;
}

.section-desc {
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

.section-cta-center {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* ── hero-cta (alias for btn-primary) ── */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  border: none;
  cursor: pointer;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 4px 18px rgba(232,96,10,.28);
  white-space: nowrap;
  text-decoration: none;
}
.hero-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(232,96,10,.35);
}

/* ── Shared info-card ── */
.info-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.info-card:hover { box-shadow: var(--shadow-mid); transform: translateY(-2px); }
.info-card h3 {
  font-size: 1.3rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  font-weight: 750;
  color: var(--text);
  margin: 0 0 12px;
}
.info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Credibility strip (new spec) ── */
.credibility-strip {
  padding: 24px 32px;
  background: #f5f5f7;
}
.credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: 100%;
}
.credibility-item {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(11,46,103,.12);
  box-shadow: 0 2px 10px rgba(11,46,103,.06);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  width: 100%;
}

/* ── Problem section (new spec) ── */
.problem-section { background: var(--surface-soft); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.info-card--img {
  padding: 0 !important;
  overflow: hidden;
}
.info-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #eef2f8;
}
.info-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.info-card--img:hover .info-card-img img {
  transform: scale(1.04);
}
.info-card--img h3,
.info-card--img p {
  padding-left: 28px;
  padding-right: 28px;
}
.info-card--img h3 {
  padding-top: 24px;
  margin-bottom: 10px;
}
.info-card--img p {
  padding-bottom: 28px;
}

/* ── What you get (new spec) ── */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offer-grid .info-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.offer-grid .info-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #eef2f8;
  flex-shrink: 0;
}
.offer-grid .info-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.offer-grid .info-card:hover .info-card-img img {
  transform: scale(1.04);
}
.offer-grid .info-card h3 {
  padding: 22px 24px 10px;
  margin: 0;
}
.offer-grid .info-card p {
  padding: 0 24px 24px;
  margin: 0;
  flex: 1;
}

/* ── Process timeline (new spec) ── */
.process-section { background: var(--surface-soft); }
.timeline {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  gap: 22px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 32px;
}
.timeline-step {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}
.timeline-item h3 {
  margin: 4px 0 8px;
  font-size: 1.2rem;
  font-weight: 750;
  color: var(--text);
}
.timeline-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

/* ── Who it's for (new spec) ── */
.two-col-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.compare-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.compare-card-img {
  width: 100%;
  overflow: hidden;
  flex-shrink: 0;
  background: #fff;
}
.compare-card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}
.compare-card:hover .compare-card-img img {
  transform: scale(1.02);
}
.compare-card h3 {
  padding: 28px 32px 0;
}
.compare-card .compare-list {
  padding: 0 32px 32px;
}
.compare-card h3 {
  margin: 0 0 14px;
  font-size: 1.3rem;
  font-weight: 750;
  color: var(--text);
}
.compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.compare-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.7;
}
.compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}
.compare-no .compare-list li::before {
  background: #c0c0c8;
}

/* ── Download pack included (new spec) ── */
.included-section {
  background: linear-gradient(180deg, #eef4ff 0%, #f7f9fd 100%);
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.included-card {
  background: #0b2e67;
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(11,46,103,0.25);
  padding: 32px;
  text-align: center;
  color: #ffffff;
  font-weight: 650;
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1.5;
  transition: transform .2s ease, box-shadow .2s ease;
}
.included-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(11,46,103,0.35);
}

/* ── FAQ (new spec — details/summary) ── */
.faq-list {
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 0 28px;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  min-height: 80px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── Final CTA close (new spec) ── */
.final-cta-section {
  padding-top: 34px;
  padding-bottom: 90px;
}
.final-cta-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  border: 1px solid rgba(11,46,103,.08);
  border-radius: 32px;
  box-shadow: 0 24px 70px rgba(11,46,103,.10);
  padding: 52px 34px;
}
.final-cta-actions {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}
.final-trust-line {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

/* ── Footer (new spec) ── */
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand strong {
  color: #ffffff;
  font-size: 1rem;
}
.footer-brand p {
  margin: 6px 0 0;
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* ── Responsive (new spec) ── */
@media (max-width: 991px) {
  .credibility-grid    { grid-template-columns: repeat(2, 1fr); }
  .problem-grid        { grid-template-columns: 1fr; }
  .offer-grid          { grid-template-columns: 1fr; }
  .two-col-compare     { grid-template-columns: 1fr; }
  .included-grid       { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .page-section        { padding: 56px 0; }
  .section-shell       { padding: 0 16px; }
  .section-heading     { margin-bottom: 30px; }
  .section-title       { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  .section-desc        { font-size: 15px; line-height: 1.65; }
  .credibility-item    { min-height: 56px; font-size: 13px; border-radius: 18px; }
  .timeline-item       { grid-template-columns: 1fr; gap: 14px; }
  .final-cta-box       { padding: 36px 20px; border-radius: 22px; }
  .final-cta-section   { padding-bottom: 100px; }
}


/* ════════════════════════════════════════════════
   SECTION BACKGROUND VARIANTS (rhythm)
════════════════════════════════════════════════ */
.bg-white     { background: #ffffff; }
.bg-grey      { background: #f5f5f7; }
.bg-blue-tint { background: #fff0e6; }
.bg-navy      { background: #e8600a; }

/* ════════════════════════════════════════════════
   PRODUCT SPOTLIGHT SECTION
════════════════════════════════════════════════ */
.spotlight-section { padding: 110px 0; }

.spotlight-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.spotlight-media {
  position: relative;
}

.spotlight-image {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  transition: transform .3s ease;
}
.spotlight-image:hover { transform: translateY(-6px); }

.spotlight-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: grid;
  gap: 12px;
}
.spotlight-list li {
  position: relative;
  padding-left: 22px;
  color: #6e6e73;
  font-size: 0.97rem;
  line-height: 1.65;
}
.spotlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.spotlight-learn-more {
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8600a;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(232,96,10,.3);
  padding-bottom: 1px;
  transition: border-color .2s;
}
.spotlight-learn-more:hover { border-color: #e8600a; }

@media (max-width: 991px) {
  .spotlight-grid { grid-template-columns: 1fr; gap: 32px; }
  .spotlight-image { max-width: 340px; }
}

/* ════════════════════════════════════════════════
   INCLUDED SECTION — two-column with book image
════════════════════════════════════════════════ */
.included-inner {
  display: grid;
  grid-template-columns: 1fr .55fr;
  gap: 72px;
  align-items: center;
}

.included-book-img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

@media (max-width: 991px) {
  .included-inner { grid-template-columns: 1fr; }
  .included-media { display: none; }
}

/* ════════════════════════════════════════════════
   FINAL CTA — book image above text
════════════════════════════════════════════════ */
.final-cta-book {
  width: 220px;
  max-width: 100%;
  margin: 0 auto 28px;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

/* ════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
════════════════════════════════════════════════ */
.single-product-hero {
  padding: 48px 0 72px;
  background: #f5f5f7;
}

.single-product-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.single-product-media {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-product-content {
  background: #ffffff;
  border: 1px solid rgba(29,29,31,.08);
  border-radius: 28px;
  box-shadow: 0 14px 40px rgba(0,0,0,.06);
  padding: 44px;
}

.single-product-image {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
}

.single-product-short {
  color: #6e6e73;
  line-height: 1.75;
  margin: 0 0 20px;
  font-size: 0.97rem;
}

.single-product-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 12px;
}
.single-product-highlights li {
  position: relative;
  padding-left: 22px;
  color: #6e6e73;
  line-height: 1.7;
  font-size: 0.95rem;
}
.single-product-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.single-product-price-wrap { margin-bottom: 22px; }
.single-product-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: #e8600a;
}
.single-product-meta {
  font-size: 14px;
  color: #6e6e73;
  margin-top: 6px;
}
.single-product-trust {
  margin-top: 14px;
  color: #6e6e73;
  font-size: 13px;
}

/* Product body grid (description + sidebar) */
.product-body-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

.product-body-card {
  background: #ffffff;
  border: 1px solid rgba(29,29,31,.08);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,.05);
  padding: 32px;
}

.product-body-heading {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1d1d1f;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.product-body-text p {
  color: #6e6e73;
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.97rem;
}
.product-body-text p:last-child { margin-bottom: 0; }

.product-body-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.product-body-list li {
  position: relative;
  padding-left: 24px;
  color: #6e6e73;
  font-size: 0.95rem;
  line-height: 1.7;
}
.product-body-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.product-who-card { background: #fff0e6; border-color: rgba(232,96,10,.12); }

.product-delivery-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f5f5f7;
  border: 1px solid rgba(29,29,31,.08);
  border-radius: 16px;
  padding: 22px 24px;
}
.product-delivery-note svg { flex-shrink: 0; margin-top: 2px; }
.product-delivery-note strong { display: block; color: #1d1d1f; font-weight: 700; margin-bottom: 4px; font-size: 0.97rem; }
.product-delivery-note p { color: #6e6e73; font-size: 0.9rem; line-height: 1.6; margin: 0; }

.product-sidebar-card {
  background: #ffffff;
  border: 1px solid rgba(29,29,31,.08);
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(0,0,0,.05);
  padding: 24px;
  position: sticky;
  top: 90px;
}

@media (max-width: 1100px) {
  .product-body-grid { grid-template-columns: 1fr; }
  .product-sidebar-card { position: static; }
}

@media (max-width: 991px) {
  .single-product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .single-product-hero { padding: 20px 0 44px; }
  .single-product-media,
  .single-product-content { border-radius: 20px; padding: 22px; }
  .single-product-image { max-width: 260px; }
  .product-body-grid { padding: 0 1rem; }
  .product-body-card { padding: 22px; }
}

/* ── Back to Home bar ──────────────────────────────────── */
.back-home-bar {
  background: #0b2e67;
  padding: 10px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.back-home-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.back-home-btn svg {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.back-home-btn:hover {
  color: #ffffff;
}

.back-home-btn:hover svg {
  transform: translateX(-3px);
}


/* ==========================================================================
   SOCIAL PROOF — Purchase toast + Viewer pill
   ========================================================================== */
.social-proof-toast{position:fixed;left:20px;bottom:20px;z-index:999;width:min(340px,calc(100vw - 32px));background:rgba(255,255,255,.96);border:1px solid rgba(11,46,103,.10);border-radius:18px;box-shadow:0 14px 40px rgba(0,0,0,.10);padding:14px 16px;display:flex;align-items:center;gap:12px;backdrop-filter:blur(10px);opacity:0;transform:translateY(18px);pointer-events:none;transition:opacity .28s ease,transform .28s ease;}
.social-proof-toast.is-visible{opacity:1;transform:translateY(0);}
.social-proof-dot{width:10px;height:10px;border-radius:50%;background:#0b2e67;flex:0 0 10px;}
.social-proof-text{color:#1d1d1f;font-size:14px;line-height:1.5;}
.social-proof-text strong{font-weight:700;color:#0b2e67;}
.viewer-pill{display:inline-flex;align-items:center;gap:8px;min-height:36px;padding:0 14px;border-radius:999px;background:rgba(234,241,255,.72);border:1px solid rgba(11,46,103,.08);color:#1d1d1f;font-size:13px;font-weight:600;opacity:0;transition:opacity .4s ease;}
.viewer-pill-dot{width:8px;height:8px;border-radius:50%;background:#0b2e67;animation:viewer-pulse 2.4s ease-in-out infinite;}
@keyframes viewer-pulse{0%,100%{opacity:1;}50%{opacity:.4;}}
@media(max-width:767px){.social-proof-toast{left:12px;right:12px;bottom:12px;width:auto;border-radius:16px;padding:12px 14px;}.social-proof-text{font-size:13px;}}


/* ==========================================================================
   FLOATING BUY BAR — Homepage + Product page only
   ========================================================================== */

.floating-buy-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(18px);
  width: min(920px, calc(100% - 32px));
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease, transform .28s ease;
}

.floating-buy-bar.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.floating-buy-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 20px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(11, 46, 103, .10);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .13);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.floating-buy-copy {
  display: grid;
  gap: 3px;
}

.floating-buy-copy strong {
  font-size: 15px;
  line-height: 1.2;
  color: #1d1d1f;
  font-weight: 800;
  letter-spacing: -.02em;
}

.floating-buy-copy span {
  font-size: 13px;
  line-height: 1.4;
  color: #6e6e73;
}

.floating-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: #e8600a;
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  white-space: nowrap;
  box-shadow: 0 14px 32px rgba(232, 96, 10, .28);
  transition: background .18s ease, transform .18s ease;
}

.floating-buy-btn:hover {
  background: #c94f06;
  color: #ffffff;
  transform: translateY(-1px);
}

/* Page bottom padding so footer is not hidden behind the bar */
.page-home,
.page-product {
  padding-bottom: 20px;
}

/* Social proof toast lifts above the buy bar only on pages that show the buy bar */
.page-home .social-proof-toast,
.page-product .social-proof-toast {
  bottom: 80px;
}

/* Mobile */
@media (max-width: 767px) {
  .floating-buy-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    transform: translateY(18px);
  }

  .floating-buy-bar.is-visible {
    transform: translateY(0);
  }

  .floating-buy-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .floating-buy-copy {
    text-align: center;
  }

  .floating-buy-copy strong {
    font-size: 14px;
  }

  .floating-buy-copy span {
    font-size: 12px;
  }

  .floating-buy-btn {
    width: 100%;
    min-height: 54px;
    font-size: 15px;
    border-radius: 14px;
  }

  .page-home,
  .page-product {
    padding-bottom: 20px;
  }

  .page-home .social-proof-toast,
  .page-product .social-proof-toast {
    bottom: 100px;
  }
}

/* Very small screens — hide copy, show button only */
@media (max-width: 480px) {
  .floating-buy-copy {
    display: none;
  }
}
