/* One Click Sites — Sales page styles.
   Professional affiliate SaaS design. Clean, modern, trustworthy.
   Green (#22c55e) accent, white bg, Inter font.
*/

/* ---- Reset & Variables ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-light: #dcfce7;
  --green-xlight: #f0fdf4;
  --dark: #111827;
  --dark-soft: #1f2937;
  --gray: #6b7280;
  --gray-light: #f9fafb;
  --gray-border: #e5e7eb;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.05);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12), 0 4px 16px rgba(0,0,0,.08);
  --shadow-green: 0 4px 20px rgba(34,197,94,.25);
  --transition: all .2s cubic-bezier(.4,0,.2,1);
}
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green-dark); text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* ---- Layout ---- */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 780px; }
.container.wide { max-width: 1200px; }

/* ---- Typography ---- */
h1, h2, h3, h4 { color: var(--dark); line-height: 1.2; }
h2 { font-size: clamp(1.7rem, 4vw, 2.25rem); font-weight: 900; margin-bottom: .5rem; }
h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .4rem; }
.section-sub {
  text-align: center;
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.text-center { text-align: center; }

/* ---- Section padding ---- */
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }
.section-alt { background: var(--gray-light); }
.section-dark { background: var(--dark); color: #fff; }
.section-dark h2 { color: #fff; }
.section-dark .section-sub { color: rgba(255,255,255,.65); }

/* ---- Navigation ---- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-weight: 800; font-size: 1.1rem; color: var(--dark); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.nav-logo:hover { text-decoration: none; color: var(--dark); }
.nav-logo-icon { font-size: 1.3rem; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-cta {
  background: var(--green); color: #fff; padding: 8px 20px; border-radius: 8px;
  font-weight: 600; font-size: .88rem; text-decoration: none;
  transition: var(--transition);
}
.nav-cta:hover { background: var(--green-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; cursor: pointer; font-family: inherit; font-weight: 700;
  border-radius: var(--radius); text-align: center; transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-dark); color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-green); }
.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-xl { padding: 18px 32px; font-size: 1.05rem; width: 100%; max-width: 440px; min-height: 58px; margin-left: auto; margin-right: auto; }

/* ---- Urgency Bar ---- */
#urgency-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9998;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff; font-family: 'Inter', sans-serif; font-size: .82rem; font-weight: 600;
  text-align: center; padding: 10px 16px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  box-shadow: 0 2px 12px rgba(220,38,38,.35);
  line-height: 1.3;
}
#urgency-bar .urgency-text { flex: 1; max-width: 680px; }
#urgency-bar .urgency-close {
  background: none; border: none; color: rgba(255,255,255,.75);
  cursor: pointer; font-size: 1.1rem; padding: 2px 8px; line-height: 1; flex-shrink: 0;
  transition: color .2s; border-radius: 4px;
}
#urgency-bar .urgency-close:hover { color: #fff; background: rgba(255,255,255,.1); }
body.urgency-bar-open .nav { top: 40px; }
body.urgency-bar-open .hero { padding-top: 160px; }

/* ---- Hero ---- */
.hero {
  padding: 110px 24px 72px; text-align: center;
  background: linear-gradient(180deg, var(--green-xlight) 0%, #fff 50%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,197,94,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e; font-weight: 700; font-size: .82rem; padding: 6px 16px;
  border-radius: 20px; margin-bottom: 20px;
  border: 1px solid rgba(245,158,11,.3);
}
.hero-badge-icon { font-size: .9rem; }
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.6rem); font-weight: 900;
  line-height: 1.1; margin-bottom: 20px; letter-spacing: -.5px;
}
.accent { color: var(--green); }
.hero-sub {
  font-size: 1.1rem; color: var(--gray); max-width: 560px; margin: 0 auto 32px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 0; }
.hero-note { margin-top: 12px; font-size: .82rem; color: var(--gray); display: flex; align-items: center; gap: 6px; }
.hero-note-icon { color: var(--green); }
.hosting-note {
  margin-top: 10px; font-size: .88rem; color: var(--green-dark);
  font-weight: 600; text-align: center; display: flex; align-items: center; gap: 6px;
  background: var(--green-xlight); border: 1.5px solid var(--green-light);
  border-radius: 8px; padding: 7px 16px;
}

/* ---- Animated Hero Sub ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero > .container > * { animation: fadeInUp 0.6s ease-out both; }
.hero > .container > *:nth-child(1) { animation-delay: 0ms; }
.hero > .container > *:nth-child(2) { animation-delay: 100ms; }
.hero > .container > *:nth-child(3) { animation-delay: 200ms; }
.hero > .container > *:nth-child(4) { animation-delay: 300ms; }

/* ---- Ticker (earnings) ---- */
.ticker-section { padding: 36px 24px; background: var(--dark); text-align: center; }
.ticker-box {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  padding: 14px 32px; border-radius: 14px;
}
.ticker-label { color: rgba(255,255,255,.8); font-size: .9rem; font-weight: 500; }
.ticker-amount {
  color: var(--green); font-size: 2.1rem; font-weight: 800;
  font-variant-numeric: tabular-nums; letter-spacing: -1px;
}
.ticker-sub { color: rgba(255,255,255,.55); font-size: .82rem; margin-top: 8px; }

/* ---- Story / Problem ---- */
.story-section { padding: 80px 0; }
.story-section p { font-size: 1.08rem; margin-bottom: 1rem; color: var(--dark-soft); line-height: 1.75; }
.story-highlight {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  padding: 20px 24px; border-radius: var(--radius); margin: 1.5rem 0;
  border-left: 4px solid #f59e0b;
}
.story-highlight p { margin-bottom: 0; color: #92400e; font-weight: 500; }

/* ---- Features ---- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 2.5rem;
}
.feature-card {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  border: 1.5px solid var(--gray-border);
  transition: var(--transition);
}
.feature-card:hover {
  border-color: var(--green);
  box-shadow: 0 0 0 4px var(--green-xlight), var(--shadow-md);
  transform: translateY(-2px);
}
.feature-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { color: var(--gray); font-size: .92rem; line-height: 1.6; margin-bottom: 0; }
.math-line { text-align: center; margin-top: 2rem; font-size: 1.05rem; color: var(--dark-soft); font-weight: 600; }

/* ---- Demo section ---- */
.demo-section { padding: 60px 0 80px; text-align: center; }
.demo-section .section-caption {
  display: block; margin-top: 18px; font-size: .88rem; color: var(--gray); font-style: italic;
}

/* ---- Theme preview ---- */
.theme-preview-grid {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 2rem;
}
.theme-card { width: 120px; text-align: center; cursor: pointer; }
.theme-swatch {
  height: 76px; border-radius: 10px; margin-bottom: 8px;
  border: 2px solid var(--gray-border); transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.theme-card:hover .theme-swatch { border-color: var(--green); box-shadow: 0 0 0 4px var(--green-xlight); transform: scale(1.05); }
.theme-card span { font-size: .82rem; font-weight: 600; color: var(--gray); }

/* ---- Email capture band ---- */
.capture-section {
  background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 100%);
  padding: 56px 0;
}
.capture-section h2 { color: #fff; font-size: 1.9rem; margin-bottom: 8px; }
.capture-section p { color: rgba(255,255,255,.6); margin-bottom: 28px; font-size: .95rem; }

/* ---- Guides ---- */
.guide-list { margin-top: 1.5rem; }
.guide-item {
  background: #fff; border-radius: var(--radius); margin-bottom: 8px;
  border: 1.5px solid var(--gray-border); overflow: hidden;
  transition: var(--transition);
}
.guide-item:hover { border-color: var(--green); }
.guide-item summary {
  padding: 18px 24px; cursor: pointer; font-weight: 600; font-size: .95rem;
  display: flex; align-items: center; gap: 10px; list-style: none;
}
.guide-item summary::-webkit-details-marker { display: none; }
.guide-item summary::after { content: '▾'; margin-left: auto; color: var(--gray); transition: transform .2s; font-size: .85rem; }
.guide-item[open] summary::after { transform: rotate(180deg); }
.guide-item p { padding: 0 24px 18px; color: var(--gray); line-height: 1.65; }
.guide-icon { font-size: 1.1rem; }

/* ---- Testimonials ---- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 2rem;
}
.testimonial-card {
  background: #fff; border: 1.5px solid var(--gray-border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius-lg); padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.avatar-circle {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: #fff; flex-shrink: 0;
}
.avatar-green { background: linear-gradient(135deg, #10b981, #059669); }
.testimonial-meta { flex: 1; min-width: 0; }
.testimonial-name { font-size: .92rem; font-weight: 700; color: var(--dark); }
.testimonial-niche { font-size: .75rem; color: var(--green); font-weight: 600; }
.verified-badge {
  font-size: .68rem; font-weight: 600; color: var(--green-dark);
  border: 1px solid var(--green); border-radius: 20px;
  padding: 2px 10px; white-space: nowrap; background: var(--green-xlight);
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: .93rem; color: var(--dark-soft); line-height: 1.6;
  font-style: italic; margin-bottom: 0;
}
.testimonials-disclaimer { font-size: .72rem; color: #9ca3af; margin-top: 24px; text-align: center; font-style: italic; }

/* ---- Value Stack ---- */
.value-stack {
  background: #fff; border-radius: var(--radius-lg); border: 1.5px solid var(--gray-border);
  overflow: hidden; margin-top: 2rem; box-shadow: var(--shadow-sm);
}
.value-item {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 24px; border-bottom: 1px solid #f3f4f6;
  transition: background .15s;
}
.value-item:hover { background: var(--gray-light); }
.value-item:last-of-type { border-bottom: none; }
.value-name { font-weight: 500; font-size: .95rem; }
.value-price { font-weight: 700; color: var(--gray); font-size: .95rem; }
.value-price.struck { text-decoration: line-through; color: #ef4444; font-size: 1.2rem; font-weight: 700; }
.value-divider { height: 4px; background: linear-gradient(90deg, var(--green), var(--green-dark)); }
.value-total {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border-top: 2px solid #fca5a5;
}
.value-total .value-name { font-weight: 800; font-size: 1.05rem; color: #991b1b; }

/* ---- Pricing ---- */
.pricing-section { padding: 80px 0; }
.pricing-card {
  background: #fff; border: 2.5px solid var(--green);
  border-radius: 20px; padding: 52px 44px;
  position: relative; overflow: hidden;
  max-width: 520px; width: 100%; margin-left: auto; margin-right: auto;
  box-shadow: 0 8px 48px rgba(34,197,94,.18), 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .3s ease, transform .3s ease;
}
.pricing-card:hover {
  box-shadow: 0 16px 64px rgba(34,197,94,.25), 0 4px 20px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.pricing-badge {
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-weight: 800; font-size: .82rem; letter-spacing: 1.5px;
  text-align: center; padding: 10px;
}
.pricing-badge::after {
  content: ''; position: absolute; bottom: -12px; left: 50%;
  transform: translateX(-50%);
  border: 12px solid transparent;
  border-top-color: var(--green-dark);
}
.countdown-wrap { margin: 48px 0 28px; text-align: center; }
.countdown-wrap span { font-size: .88rem; color: var(--gray); }
.countdown { display: flex; justify-content: center; align-items: center; gap: 4px; margin-top: 10px; }
.cd-block {
  background: var(--dark); color: #fff; border-radius: 10px; padding: 10px 14px;
  min-width: 60px; text-align: center;
}
.cd-block span { display: block; font-size: 1.7rem; font-weight: 900; font-variant-numeric: tabular-nums; }
.cd-block small { font-size: .68rem; color: rgba(255,255,255,.55); font-weight: 600; }
.cd-sep { font-size: 1.5rem; font-weight: 700; color: var(--gray); align-self: center; }
.pricing-price { margin: 28px 0 24px; text-align: center; }
.price-old { font-size: 1.7rem; text-decoration: line-through; color: #ef4444; font-weight: 700; margin-right: 14px; }
.price-current { font-size: 4.2rem; font-weight: 900; color: var(--green); line-height: 1; }
.price-label { display: block; font-size: .9rem; color: var(--gray); margin-top: 6px; font-weight: 500; }
.pricing-features { list-style: none; text-align: left; margin: 24px 0; }
.pricing-features li {
  padding: 10px 0; font-size: .95rem; border-bottom: 1px solid #f3f4f6;
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.secure-badges {
  display: flex; justify-content: center; gap: 16px; margin-top: 20px;
  font-size: .78rem; color: var(--gray); flex-wrap: wrap; align-items: center;
}
.secure-badges span { display: flex; align-items: center; gap: 4px; }

/* ---- Guarantee ---- */
.guarantee-section { padding: 80px 0; background: var(--green-xlight); }
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px; margin-top: 2rem;
}
.guarantee-card {
  background: #fff; border-radius: var(--radius-lg); padding: 32px 28px;
  text-align: center; border: 1.5px solid var(--green-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.guarantee-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.guarantee-icon { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.guarantee-card h3 { font-weight: 700; margin-bottom: 10px; }
.guarantee-card p { color: var(--gray); font-size: .92rem; line-height: 1.6; margin-bottom: 0; }

/* ---- FAQ ---- */
.faq-section { padding: 80px 0; }
.faq-item { border-bottom: 1.5px solid var(--gray-border); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
  transition: color .2s;
}
.faq-item summary:hover { color: var(--green); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--gray); font-weight: 400; transition: transform .2s, color .2s; }
.faq-item[open] summary::after { content: '−'; color: var(--green); }
.faq-item p { padding-bottom: 20px; color: var(--gray); line-height: 1.65; }

/* ---- Final CTA ---- */
.final-cta-section { padding: 80px 24px; background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 100%); color: #fff; text-align: center; }
.final-cta-section h2 { color: #fff; margin-bottom: .5rem; }
.final-cta-section p { color: rgba(255,255,255,.65); margin-bottom: .8rem; font-size: 1rem; }
.final-cta-section .trajectory {
  font-size: 1.05rem; color: rgba(255,255,255,.85) !important;
  font-weight: 600; margin-bottom: .5rem !important;
}
.final-note { margin-top: 14px; font-size: .82rem; color: rgba(255,255,255,.58); }

/* ---- Buyer Counter ---- */
#buyer-counter { padding: 28px 24px; background: var(--dark); text-align: center; }
#buyer-counter .bc-inner {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  padding: 14px 28px; border-radius: 12px;
}
#buyer-counter .bc-fire { font-size: 1.4rem; }
#buyer-counter .bc-text { color: rgba(255,255,255,.7); font-size: .95rem; }
#buyer-counter .bc-count {
  color: var(--green); font-size: 1.3rem; font-weight: 800;
  font-variant-numeric: tabular-nums; transition: transform .15s;
}
#buyer-counter .bc-count.bc-tick { animation: bc-tick 0.25s ease-out; }
@keyframes bc-tick {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}
#buyer-counter .bc-label { color: rgba(255,255,255,.55); font-size: .75rem; margin-top: 8px; }

/* ---- Social Proof Toast ---- */
.sp-toast {
  position: fixed; bottom: 24px; left: 24px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: #1a1a1a; color: #fff; border-radius: 12px; padding: 12px 18px;
  font-family: 'Inter', sans-serif; font-size: .88rem; font-weight: 500;
  box-shadow: 0 4px 24px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.08);
  border-left: 4px solid var(--green); max-width: 300px; line-height: 1.4;
  animation: sp-slide-in 0.4s cubic-bezier(.22,.68,0,1.2) forwards;
}
@keyframes sp-slide-in {
  from { opacity: 0; transform: translateX(-100%); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes sp-slide-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(-100%); }
}
.sp-toast-icon {
  flex-shrink: 0; width: 22px; height: 22px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: .72rem; color: #fff;
}
.sp-toast-text { color: rgba(255,255,255,.9); flex: 1; }
.sp-toast-close {
  flex-shrink: 0; background: none; border: none; color: rgba(255,255,255,.7);
  cursor: pointer; font-size: 14px; padding: 2px 4px; line-height: 1;
  border-radius: 4px; transition: color .2s, background .2s; margin-left: 4px;
}
.sp-toast-close:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); }

/* ---- FOMO Toast (bottom-right) ---- */
.fomo-toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; align-items: center; gap: 10px;
  background: #1a1a1a; color: #fff; border-radius: 12px; padding: 11px 16px;
  font-family: 'Inter', sans-serif; font-size: .82rem; font-weight: 500;
  box-shadow: 0 4px 24px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.06);
  border-right: 4px solid #f59e0b; max-width: 270px; line-height: 1.4;
  animation: fomo-slide-in 0.4s cubic-bezier(.22,.68,0,1.2) forwards;
}
@keyframes fomo-slide-in {
  from { opacity: 0; transform: translateX(80px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fomo-slide-out {
  from { opacity: 1; transform: translateX(0); }
  to { opacity: 0; transform: translateX(80px); }
}
.fomo-toast-icon { flex-shrink: 0; font-size: .88rem; }
.fomo-toast-text { color: rgba(255,255,255,.85); flex: 1; }
.fomo-toast-close {
  flex-shrink: 0; background: none; border: none; color: rgba(255,255,255,.7);
  cursor: pointer; font-size: 13px; padding: 2px 4px; line-height: 1;
  border-radius: 4px; transition: color .2s, background .2s; margin-left: 4px;
}
.fomo-toast-close:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.1); }

@media (max-width: 480px) {
  .fomo-toast { bottom: 80px; right: 12px; left: 12px; font-size: .8rem; max-width: none; }
}

/* ---- Sticky CTA Bar ---- */
#stickyCta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: linear-gradient(135deg, #0f172a, #1a1a2e);
  border-top: 2px solid var(--green);
  box-shadow: 0 -4px 32px rgba(0,0,0,.35);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.2);
}
#stickyCta.visible { transform: translateY(0); }
.sticky-cta-inner {
  max-width: 1100px; margin: 0 auto; padding: 12px 24px;
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.sticky-cta-text { font-size: .92rem; font-weight: 600; color: rgba(255,255,255,.85); }
.sticky-cta-btn {
  background: var(--green); color: #fff; font-weight: 700; font-size: .92rem;
  border: none; border-radius: 8px; padding: 10px 26px; cursor: pointer;
  transition: var(--transition); white-space: nowrap;
  box-shadow: 0 2px 12px rgba(34,197,94,.3);
}
.sticky-cta-btn:hover {
  background: var(--green-dark); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(34,197,94,.4);
}
.sticky-cta-close {
  background: none; border: none; color: rgba(255,255,255,.7);
  font-size: 16px; cursor: pointer; padding: 4px 8px; border-radius: 4px;
  transition: color .2s; flex-shrink: 0;
}
.sticky-cta-close:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.08); }

/* ---- Disclaimer ---- */
.disclaimer-section { padding: 36px 24px; background: #fafafa; border-top: 1px solid var(--gray-border); }
.disclaimer { font-size: .72rem; color: var(--gray); text-align: center; }

/* ---- Footer ---- */
.footer {
  padding: 72px 0 48px;
  background: #0a0f0d;
  color: rgba(255,255,255,.82);
  border-top: 1px solid rgba(34,197,94,.12);
}
.footer-brand { margin-bottom: 32px; text-align: center; }
.footer-logo {
  font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: -.3px;
  display: inline-block; margin-bottom: 6px;
}
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.6); letter-spacing: .2px; }
.footer-links {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.07);
  padding-bottom: 32px;
}
.footer-links a {
  font-size: .88rem; color: rgba(255,255,255,.6);
  transition: color .25s; font-weight: 500; letter-spacing: .2px;
}
.footer-links a:hover { color: var(--green); text-decoration: none; }
.footer-copy {
  font-size: .78rem; color: rgba(255,255,255,.5);
  text-align: center; padding-top: 0; letter-spacing: .3px;
}
.footer-copy a { color: rgba(255,255,255,.45); }
.footer-copy a:hover { color: rgba(255,255,255,.7); }

/* ---- Exit-intent popup ---- */
#exitIntentOverlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(17,24,39,.85); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
  opacity: 0; transition: opacity .3s ease;
}
#exitIntentOverlay.visible { display: flex; opacity: 1; }
#exitIntentModal {
  background: #fff; border-radius: 20px; padding: 44px 40px;
  max-width: 500px; width: 100%; text-align: center; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.4), 0 8px 24px rgba(0,0,0,.15);
  transform: translateY(30px) scale(.97);
  transition: transform .4s cubic-bezier(.22,.68,0,1.2), opacity .3s ease;
  opacity: 0;
}
#exitIntentOverlay.visible #exitIntentModal {
  transform: translateY(0) scale(1); opacity: 1;
}
#exitIntentClose {
  position: absolute; top: 16px; right: 18px;
  background: #f3f4f6; border: none; font-size: 1rem; cursor: pointer;
  color: #9ca3af; line-height: 1; padding: 6px 10px; border-radius: 8px;
  transition: background .2s, color .2s; font-weight: 600;
}
#exitIntentClose:hover { background: #e5e7eb; color: var(--dark); }
#exitIntentModal .popup-icon { font-size: 3rem; margin-bottom: 14px; }
#exitIntentModal h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 10px; color: var(--dark); }
#exitIntentModal p { color: #6b7280; font-size: 1rem; margin-bottom: 28px; line-height: 1.5; }
#exitIntentEmailWrap { display: flex; gap: 10px; margin-bottom: 14px; }
#exitIntentEmail {
  flex: 1; padding: 14px 16px; border: 2px solid #e5e7eb; border-radius: 12px;
  font-size: 1rem; font-family: inherit; outline: none; transition: border-color .2s, box-shadow .2s;
  background: #fafafa;
}
#exitIntentEmail:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,.12); background: #fff; }
#exitIntentSubmit {
  background: var(--green); color: #fff; border: none; border-radius: 12px;
  padding: 14px 22px; font-size: .95rem; font-weight: 700; cursor: pointer;
  white-space: nowrap; transition: background .2s, transform .15s;
  box-shadow: 0 4px 16px rgba(34,197,94,.35);
}
#exitIntentSubmit:hover {
  background: var(--green-dark); transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,197,94,.4);
}
#exitIntentSubmit:disabled { opacity: .6; cursor: default; transform: none; }
#exitIntentNote { font-size: .78rem; color: #9ca3af; }
#exitIntentDismiss {
  display: block; margin: 12px auto 0; font-size: .8rem; color: #9ca3af;
  cursor: pointer; text-decoration: underline; background: none; border: none;
  font-family: inherit; transition: color .2s;
}
#exitIntentDismiss:hover { color: #6b7280; }
#exitIntentSuccess { display: none; padding: 24px 0; }
#exitIntentSuccess.show { display: block; }
#exitIntentSuccess .success-icon { font-size: 3.5rem; }
#exitIntentSuccess h3 { font-size: 1.4rem; font-weight: 800; margin-top: 14px; }
#exitIntentSuccess p { color: #6b7280; margin-top: 8px; }

/* ---- Legal pages ---- */
.legal-wrap { max-width: 780px; margin: 0 auto; padding: 80px 24px; }
.legal-nav { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; }
.legal-nav a { color: var(--green-dark); font-weight: 600; font-size: .9rem; text-decoration: none; }
.legal-nav a:hover { color: var(--green-dark); text-decoration: underline; }
.legal-wrap h1 { font-size: 2.2rem; font-weight: 900; margin-bottom: 8px; }
.legal-wrap .last-updated { color: #9ca3af; font-size: .85rem; margin-bottom: 40px; }
.legal-card { background: #fff; border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-md); }
.legal-card h2 { font-size: 1.2rem; font-weight: 700; margin: 32px 0 12px; }
.legal-card h2:first-child { margin-top: 0; }
.legal-card p { color: #374151; margin-bottom: 12px; font-size: .95rem; line-height: 1.65; }
.legal-card ul { margin: 12px 0 16px 20px; }
.legal-card li { color: #374151; margin-bottom: 8px; font-size: .95rem; line-height: 1.65; }
.highlight-box { background: var(--green-xlight); border: 1px solid var(--green-light); border-radius: var(--radius); padding: 24px; margin: 24px 0; }
.highlight-box h3 { font-weight: 700; margin-bottom: 8px; color: #166534; }
.highlight-box p { margin-bottom: 0; color: #166534; }
.contact-box { background: #f3f4f6; border-radius: 10px; padding: 16px 20px; margin: 16px 0; font-size: .95rem; }

/* ---- Mobile ---- */
@media (max-width: 768px) {
  html { overflow-x: hidden; }
  body { overflow-x: hidden; }
  .section { padding: 56px 0; }
  .section-alt { padding: 56px 0; }
  .hero { padding: 90px 16px 56px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 1rem; }
  .hero-badge { font-size: .75rem; }
  .pricing-card { padding: 40px 20px; }
  .price-current { font-size: 3rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .guarantee-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .value-item { flex-direction: column; gap: 4px; }
  .footer-links { gap: 14px; }
  .footer-links a { font-size: .82rem; }
  .cd-block { padding: 8px 8px; min-width: 46px; }
  .cd-block span { font-size: 1.2rem; }
  .ticker-box { padding: 12px 20px; }
  .ticker-amount { font-size: 1.7rem; }
  .sticky-cta-inner { padding: 10px 16px; gap: 10px; flex-wrap: wrap; }
  .sticky-cta-text { font-size: .82rem; }
  .sticky-cta-btn { font-size: .82rem; padding: 9px 18px; }
  .nav-inner { padding: 0 16px; }
  .nav-cta { padding: 8px 14px; font-size: .82rem; }
  .faq-item summary { padding: 16px 0; font-size: .95rem; }
  .guide-item summary { padding: 14px 16px; }
  .secure-badges { gap: 10px; font-size: .72rem; }
  /* Exit-intent popup */
  #exitIntentModal { padding: 32px 24px; border-radius: 16px; }
  #exitIntentEmailWrap { flex-direction: column; }
  #exitIntentEmail { min-width: 0; }
  #exitIntentSubmit { width: 100%; }
  /* Legal pages */
  .legal-wrap { padding: 40px 16px; }
  .legal-card { padding: 28px 20px; }
  .legal-wrap h1 { font-size: 1.6rem; }
  #buyer-counter .bc-inner { padding: 12px 20px; }
  #buyer-counter .bc-fire { font-size: 1.2rem; }
  #buyer-counter .bc-count { font-size: 1.1rem; }
}

@media (max-width: 480px) {
  .btn-xl { font-size: 1rem; padding: 16px 20px; }
  .countdown { gap: 2px; }
  .cd-sep { font-size: 1.1rem; }
  .sp-toast { bottom: 16px; left: 12px; right: 12px; font-size: .82rem; padding: 10px 14px; max-width: none; }
}

/* ---- Scroll reveal animations ---- */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease-out, transform .6s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }

/* ---- Smooth section dividers ---- */
.section-divider {
  width: 60px; height: 4px; background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 2px; margin: 0 auto 1.5rem;
}

/* ---- Countdown subtle pulse ---- */
.cd-block { animation: cd-pulse 3s ease-in-out infinite; }
@keyframes cd-pulse {
  0%, 100% { box-shadow: none; }
  50% { box-shadow: 0 0 0 4px rgba(34,197,94,.12); }
}

/* ---- Feature card top accent ---- */
.feature-card { position: relative; overflow: hidden; }
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  opacity: 0; transition: opacity .3s ease;
}
.feature-card:hover::before { opacity: 1; }

/* ---- Pricing card ambient glow ---- */
.pricing-card::before {
  content: ''; position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(34,197,94,.12), transparent 40%, rgba(34,197,94,.12));
  border-radius: 22px; opacity: 0; transition: opacity .4s ease;
  pointer-events: none;
}
.pricing-card:hover::before { opacity: 1; }

/* ---- Testimonial card shadow on hover ---- */
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border-left-color: var(--green-dark);
}

/* ---- Nav CTA subtle shine ---- */
.nav-cta { position: relative; overflow: hidden; }
.nav-cta::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15), transparent);
  opacity: 0; transition: opacity .2s;
}
.nav-cta:hover::after { opacity: 1; }

/* ---- Story section callout ---- */
.story-highlight { position: relative; padding-left: 48px; }
.story-highlight::before {
  content: '💡'; position: absolute; left: 20px; top: 22px;
  font-size: 1.3rem;
}

/* ---- Guide items polish ---- */
.guide-item summary { color: var(--dark); }
.guide-item summary:hover { color: var(--green); }

/* ---- Buyer counter glow ---- */
#buyer-counter .bc-count { text-shadow: 0 0 20px rgba(34,197,94,.3); }

/* ---- Scroll progress indicator ---- */
.scroll-progress { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: rgba(255,255,255,.1); }
.scroll-progress::after {
  content: ''; position: absolute; top: 0; left: 0; height: 100%;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  width: var(--scroll, 0%);
  transition: width .1s linear;
}

/* ============================================
   DESIGN OVERHAUL — Premium Polish
   ============================================ */

/* ---- Hero section: Mesh gradient background ---- */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 120px;
  background: radial-gradient(ellipse, rgba(34,197,94,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  border: none;
  position: relative;
  overflow: hidden;
}
.hero-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.hero-badge:hover::before { opacity: 1; }

/* ---- Better section dividers ---- */
.section-divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 2px;
  margin: 0 auto 1.5rem;
  position: relative;
}
.section-divider::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}

/* ---- Feature cards: top accent on hover ---- */
.feature-card {
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--gray-border);
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  border-color: var(--green-light);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1), 0 0 0 4px var(--green-xlight);
}
.feature-icon { font-size: 2rem; display: block; margin-bottom: 14px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.08)); }

/* ---- Testimonial cards: elevated ---- */
.testimonial-card {
  position: relative;
  border-left: 4px solid var(--green);
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, transparent 50%, var(--green-xlight) 50%);
  border-radius: 0 0 0 12px;
  opacity: 0;
  transition: opacity .3s;
}
.testimonial-card:hover::after { opacity: 1; }
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  border-left-color: var(--green-dark);
  transform: translateY(-2px);
}
.stars { color: #fbbf24; letter-spacing: 3px; }

/* ---- Guarantee section: glassmorphism cards ---- */
.guarantee-card {
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.guarantee-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34,197,94,.04), transparent 60%);
  pointer-events: none;
}
.guarantee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(34,197,94,.15);
  border-color: var(--green-light);
}
.guarantee-section { background: linear-gradient(180deg, var(--green-xlight), #fff); }
.guarantee-icon { font-size: 2.8rem; display: block; margin-bottom: 16px; filter: drop-shadow(0 3px 6px rgba(0,0,0,.1)); }

/* ---- Pricing card: floating glow + premium border ---- */
.pricing-section { position: relative; }
.pricing-card {
  border: 2.5px solid var(--green);
  box-shadow: 0 8px 48px rgba(34,197,94,.15), 0 0 0 1px rgba(34,197,94,.1);
}
.pricing-card::after {
  content: '';
  position: absolute;
  top: -1px; left: 50%; transform: translateX(-50%);
  width: 80%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(34,197,94,.22), 0 0 0 1px rgba(34,197,94,.2);
}
.price-current { color: var(--green); text-shadow: 0 2px 20px rgba(34,197,94,.3); }

/* ---- FAQ: clean accordion ---- */
.faq-item { border-bottom: 1.5px solid var(--gray-border); position: relative; }
.faq-item::before {
  content: '';
  position: absolute;
  left: 0; top: 50%; transform: translateY(-50%);
  width: 3px; height: 0;
  background: var(--green);
  transition: height .3s;
  border-radius: 0 2px 2px 0;
}
.faq-item[open]::before { height: 100%; }
.faq-item summary { padding: 20px 16px; font-weight: 600; font-size: 1rem; color: var(--dark); }
.faq-item summary:hover { color: var(--green); }
.faq-item p { padding: 0 16px 20px; color: var(--gray); line-height: 1.7; }

/* ---- Buyer counter: pulsing live dot ---- */
#buyer-counter { border-top: 1px solid rgba(255,255,255,.05); }
.bc-fire { position: relative; }
.bc-fire::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: rgba(34,197,94,.15);
  animation: bc-pulse 2s infinite;
}
@keyframes bc-pulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.3); opacity: 0; }
}

/* ---- Story section: better callout ---- */
.story-section p { font-size: 1.08rem; color: var(--dark-soft); line-height: 1.8; }
.story-highlight {
  background: linear-gradient(135deg, #fef9e7, #fef3c7);
  padding: 22px 28px;
  border-radius: var(--radius);
  border-left: 4px solid #f59e0b;
  margin: 1.5rem 0;
  box-shadow: 0 2px 12px rgba(245,158,11,.1);
}
.story-highlight p { margin-bottom: 0; color: #92400e; font-weight: 500; }

/* ---- What section: section heading accent ---- */
.what-section { background: var(--gray-light); }
.what-section h2 {
  position: relative;
  display: inline-block;
  width: 100%;
}
.what-section h2::after {
  content: '';
  display: block;
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 2px;
  margin: 12px auto 0;
}

/* ---- Demo section: cleaner header ---- */
.demo-anim-section { padding: 80px 0; background: #fff; }
.demo-anim-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }

/* ---- Value stack: bold pricing ---- */
.value-stack { overflow: hidden; }
.value-divider { height: 4px; background: linear-gradient(90deg, var(--green), var(--green-dark), var(--green)); }
.value-price.struck { font-size: 1.3rem; }

/* ---- Email capture: glassmorphism ---- */
.capture-section { position: relative; overflow: hidden; }
.capture-section::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(34,197,94,.08) 0%, transparent 60%);
  pointer-events: none;
}
.capture-section h2 { text-shadow: 0 2px 20px rgba(255,255,255,.1); }

/* ---- Guides: better list styling ---- */
.guide-list { margin-top: 1.5rem; }
.guide-item summary { padding: 20px 24px; font-weight: 600; font-size: .97rem; }

/* ---- Final CTA: dramatic ---- */
.final-cta-section {
  background: linear-gradient(135deg, #0a0f0d 0%, #111827 50%, #0a0f0d 100%);
  position: relative;
  overflow: hidden;
}
.final-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(34,197,94,.07) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-section h2 {
  color: #fff;
  text-shadow: 0 2px 30px rgba(255,255,255,.1);
}

/* ---- Better sticky CTA: more prominent ---- */
#stickyCta {
  background: linear-gradient(135deg, #0a0f0d, #111827, #0a0f0d);
  border-top: 3px solid var(--green);
  box-shadow: 0 -8px 48px rgba(0,0,0,.5);
}
.sticky-cta-btn {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  padding: 12px 28px;
  font-size: .95rem;
  border-radius: 10px;
}
.sticky-cta-btn:hover {
  background: linear-gradient(135deg, var(--green-dark), #15803d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34,197,94,.4);
}
.sticky-cta-text { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,.9); }

/* ---- Footer: cleaner structure ---- */
.footer { position: relative; }
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,.3), transparent);
}
.footer-logo {
  font-size: 1.3rem;
  color: #fff;
  display: inline-block;
  margin-bottom: 8px;
}
.footer-links { gap: 32px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.5); letter-spacing: .3px; }
.footer-links a:hover { color: var(--green); }

/* ---- Email form: premium input ---- */
.capture-form { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.capture-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
}
.capture-form input::placeholder { color: rgba(255,255,255,.6); }
.capture-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(34,197,94,.15);
  background: rgba(255,255,255,.12);
}
.capture-form button {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.capture-form button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

@media (max-width: 640px) {
  .capture-form { flex-direction: column; }
  .capture-form button { width: 100%; }
}

/* ---- Trust bar under hero ---- */
.trust-bar {
  display: flex; justify-content: center; align-items: center; gap: 24px;
  flex-wrap: wrap; margin-top: 24px;
}
.trust-item { display: flex; align-items: center; gap: 8px; font-size: .88rem; color: var(--gray); font-weight: 500; }
.trust-item .check { color: var(--green); font-size: 1.1rem; }

/* ---- Section badges ---- */
.section-badge {
  display: inline-block;
  background: var(--green-xlight);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--green-light);
}

/* ---- Hero stats row ---- */
.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 16px 0 20px; font-size: .9rem; color: var(--gray);
}
.hero-stat { display: flex; align-items: center; gap: 4px; }
.hero-stat strong { color: var(--dark); font-weight: 700; }
.hero-stat-divider { color: var(--gray-border); font-size: 1.2rem; }

/* ---- Pricing comparison ---- */
.pricing-compare {
  max-width: 520px; margin: 0 auto 28px; width: 100%;
}
.pricing-compare-row {
  display: flex; align-items: center; justify-content: center; gap: 20px;
}
.pricing-compare-item {
  background: #fff; border-radius: 12px; padding: 20px 24px; text-align: center;
  border: 1.5px solid var(--gray-border); flex: 1; max-width: 180px;
}
.pricing-compare-before { opacity: .7; }
.pricing-compare-now { border-color: var(--green); background: var(--green-xlight); }
.pricing-compare-item .compare-label {
  font-size: .7rem; font-weight: 600; color: var(--gray); text-transform: uppercase;
  letter-spacing: .8px; margin-bottom: 6px;
}
.pricing-compare-item .compare-price {
  font-size: 2rem; font-weight: 900; color: var(--dark); line-height: 1;
}
.pricing-compare-item .compare-price span { font-size: .85rem; font-weight: 600; color: var(--gray); }
.pricing-compare-now .compare-price { color: var(--green); }
.pricing-compare-item .compare-note { font-size: .72rem; color: var(--gray); margin-top: 4px; }
.pricing-compare-arrow { font-size: 1.8rem; color: var(--gray); font-weight: 300; }

/* ---- Guarantee banner ---- */
.guarantee-section { background: var(--green-xlight); padding: 60px 0; }
.guarantee-banner {
  background: #fff; border-radius: 20px; padding: 44px 48px;
  display: flex; align-items: flex-start; gap: 28px;
  box-shadow: 0 4px 24px rgba(34,197,94,.1), 0 1px 3px rgba(0,0,0,.06);
  border: 2px solid var(--green-light);
  text-align: left;
}
.guarantee-banner-icon { font-size: 3.5rem; flex-shrink: 0; filter: drop-shadow(0 3px 6px rgba(0,0,0,.1)); }
.guarantee-banner-content { flex: 1; }
.guarantee-banner-content h3 {
  font-size: 1.6rem; font-weight: 900; color: var(--dark);
  margin-bottom: 10px; line-height: 1.2;
}
.guarantee-banner-content p { color: var(--gray); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.guarantee-banner-seal { display: flex; gap: 10px; flex-wrap: wrap; }
.guarantee-seal-badge {
  background: var(--green-xlight); color: var(--green-dark);
  font-weight: 700; font-size: .78rem; padding: 6px 14px; border-radius: 20px;
  border: 1px solid var(--green-light);
}

/* ---- Final CTA improvements ---- */
.final-cta-badge {
  display: inline-block; background: var(--green);
  color: #fff; font-weight: 700; font-size: .8rem; letter-spacing: 1px;
  padding: 6px 18px; border-radius: 20px; margin-bottom: 16px;
}
.final-trust-row {
  display: flex; justify-content: center; align-items: center; gap: 12px;
  margin: 18px 0 14px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.6);
}

/* ---- Demo section polish ---- */
.demo-anim-section { padding: 80px 0; background: #fff; }
.demo-anim-section h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 8px; }

/* ---- Buyer counter compact ---- */
#buyer-counter { padding: 28px 24px; background: var(--dark); text-align: center; }
#buyer-counter .bc-inner {
  display: inline-flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  padding: 14px 28px; border-radius: 12px;
}

/* ---- Story section polish ---- */
.story-section { padding: 80px 0; }
.story-section p { font-size: 1.05rem; color: var(--dark-soft); line-height: 1.8; }
.story-highlight {
  background: linear-gradient(135deg, #fef9e7, #fef3c7);
  padding: 22px 28px; border-radius: var(--radius);
  border-left: 4px solid #f59e0b; margin: 1.5rem 0;
  box-shadow: 0 2px 12px rgba(245,158,11,.1);
}
.story-highlight p { margin-bottom: 0; color: #92400e; font-weight: 500; }

/* ---- Ticker section ---- */
.ticker-section { padding: 36px 24px; background: var(--dark); text-align: center; }
.ticker-box {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  padding: 14px 32px; border-radius: 14px;
}

/* ---- Testimonials polish ---- */
.testimonials-section { padding: 80px 0; background: var(--gray-light); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px; margin-top: 2rem;
}
.testimonial-card {
  background: #fff; border: 1.5px solid var(--gray-border);
  border-left: 4px solid var(--green); border-radius: var(--radius-lg); padding: 28px;
  transition: all .2s;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.avatar-circle {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem; color: #fff; flex-shrink: 0;
}
.avatar-green { background: linear-gradient(135deg, #10b981, #059669); }
.testimonial-meta { flex: 1; min-width: 0; }
.testimonial-name { font-size: .92rem; font-weight: 700; color: var(--dark); }
.testimonial-niche { font-size: .75rem; color: var(--green); font-weight: 600; }
.verified-badge {
  font-size: .68rem; font-weight: 600; color: var(--green-dark);
  border: 1px solid var(--green); border-radius: 20px;
  padding: 2px 10px; white-space: nowrap; background: var(--green-xlight);
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-card p {
  font-size: .93rem; color: var(--dark-soft); line-height: 1.6;
  font-style: italic; margin-bottom: 0;
}
.testimonials-disclaimer { font-size: .72rem; color: #9ca3af; margin-top: 24px; text-align: center; font-style: italic; }

/* ---- Guides polish ---- */
.guides-section { padding: 80px 0; }
.guide-list { margin-top: 1.5rem; }
.guide-item {
  background: #fff; border-radius: var(--radius); margin-bottom: 8px;
  border: 1.5px solid var(--gray-border); overflow: hidden; transition: all .2s;
}
.guide-item:hover { border-color: var(--green); }
.guide-item summary {
  padding: 18px 24px; cursor: pointer; font-weight: 600; font-size: .95rem;
  display: flex; align-items: center; gap: 10px; list-style: none;
}
.guide-item summary::-webkit-details-marker { display: none; }
.guide-item summary::after { content: '▾'; margin-left: auto; color: var(--gray); transition: transform .2s; font-size: .85rem; }
.guide-item[open] summary::after { transform: rotate(180deg); }
.guide-item p { padding: 0 24px 18px; color: var(--gray); line-height: 1.65; }
.guide-icon { font-size: 1.1rem; }

/* ---- What section ---- */
.what-section { padding: 80px 0; background: var(--gray-light); text-align: center; }
.what-section h2 {
  position: relative; display: inline-block; width: 100%;
}
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px; margin-top: 2.5rem;
}
.feature-card {
  background: #fff; border-radius: var(--radius-lg); padding: 28px;
  border: 1.5px solid var(--gray-border); transition: all .2s;
}
.feature-card:hover {
  border-color: var(--green); box-shadow: 0 0 0 4px var(--green-xlight), 0 4px 16px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.feature-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p { color: var(--gray); font-size: .92rem; line-height: 1.6; margin-bottom: 0; }
.math-line { text-align: center; margin-top: 2rem; font-size: 1.05rem; color: var(--dark-soft); font-weight: 600; }

/* ---- Email capture ---- */
.capture-section {
  background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 100%);
  padding: 56px 0; position: relative; overflow: hidden;
}
.capture-section::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(34,197,94,.08) 0%, transparent 60%);
  pointer-events: none;
}
.capture-section h2 { color: #fff; font-size: 1.9rem; margin-bottom: 8px; }
.capture-section p { color: rgba(255,255,255,.6); margin-bottom: 28px; font-size: .95rem; }

/* ---- Pricing section ---- */
.pricing-section { padding: 80px 0; text-align: center; }
.pricing-card {
  background: #fff; border: 2.5px solid var(--green);
  border-radius: 20px; padding: 52px 44px; position: relative; overflow: hidden;
  max-width: 520px; width: 100%; margin-left: auto; margin-right: auto;
  box-shadow: 0 8px 48px rgba(34,197,94,.18), 0 2px 8px rgba(0,0,0,.06);
}
.pricing-card:hover {
  box-shadow: 0 16px 64px rgba(34,197,94,.25), 0 4px 20px rgba(0,0,0,.1);
  transform: translateY(-3px);
}
.pricing-badge {
  position: absolute; top: 0; left: 0; right: 0;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-weight: 800; font-size: .82rem; letter-spacing: 1.5px;
  text-align: center; padding: 10px;
}
.countdown-wrap { margin: 48px 0 28px; text-align: center; }
.countdown-wrap span { font-size: .88rem; color: var(--gray); }
.countdown { display: flex; justify-content: center; align-items: center; gap: 4px; margin-top: 10px; }
.cd-block {
  background: var(--dark); color: #fff; border-radius: 10px; padding: 10px 14px;
  min-width: 60px; text-align: center;
}
.cd-block span { display: block; font-size: 1.7rem; font-weight: 900; font-variant-numeric: tabular-nums; }
.cd-block small { font-size: .68rem; color: rgba(255,255,255,.55); font-weight: 600; }
.cd-sep { font-size: 1.5rem; font-weight: 700; color: var(--gray); align-self: center; }
.pricing-price { margin: 28px 0 24px; text-align: center; }
.price-old { font-size: 1.7rem; text-decoration: line-through; color: #ef4444; font-weight: 700; margin-right: 14px; }
.price-current { font-size: 4.2rem; font-weight: 900; color: var(--green); line-height: 1; }
.price-label { display: block; font-size: .9rem; color: var(--gray); margin-top: 6px; font-weight: 500; }
.pricing-features { list-style: none; text-align: left; margin: 24px 0; }
.pricing-features li {
  padding: 10px 0; font-size: .95rem; border-bottom: 1px solid #f3f4f6;
  display: flex; align-items: flex-start; gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.secure-badges {
  display: flex; justify-content: center; gap: 16px; margin-top: 20px;
  font-size: .78rem; color: var(--gray); flex-wrap: wrap; align-items: center;
}
.secure-badges span { display: flex; align-items: center; gap: 4px; }

/* ---- FAQ section ---- */
.faq-section { padding: 80px 0; }
.faq-item { border-bottom: 1.5px solid var(--gray-border); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  padding: 20px 0; cursor: pointer; font-weight: 600; font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary:hover { color: var(--green); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.4rem; color: var(--gray); font-weight: 400; transition: transform .2s, color .2s; }
.faq-item[open] summary::after { content: '−'; color: var(--green); }
.faq-item p { padding-bottom: 20px; color: var(--gray); line-height: 1.65; }

/* ---- Final CTA section ---- */
.final-cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 50%, #0f172a 100%);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(34,197,94,.07) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-section h2 { color: #fff; margin-bottom: .5rem; font-size: clamp(1.8rem, 4vw, 2.5rem); }
.final-cta-section p { color: rgba(255,255,255,.65); margin-bottom: .8rem; font-size: 1rem; }
.final-cta-section .trajectory {
  font-size: 1.05rem; color: rgba(255,255,255,.85) !important;
  font-weight: 600; margin-bottom: .5rem !important;
}
.final-note { margin-top: 14px; font-size: .82rem; color: rgba(255,255,255,.58); }

/* ---- Disclaimer section ---- */
.disclaimer-section { padding: 36px 24px; background: #fafafa; border-top: 1px solid var(--gray-border); }
.disclaimer { font-size: .72rem; color: var(--gray); text-align: center; }

/* ---- Footer polish ---- */
.footer { padding: 72px 0 48px; background: #0a0f0d; color: rgba(255,255,255,.82); border-top: 1px solid rgba(34,197,94,.12); }
.footer-brand { margin-bottom: 32px; text-align: center; }
.footer-logo {
  font-size: 1.2rem; font-weight: 800; color: #fff; letter-spacing: -.3px; display: inline-block; margin-bottom: 6px;
}
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.6); letter-spacing: .2px; }
.footer-links {
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  margin-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.07); padding-bottom: 32px;
}
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .25s; font-weight: 500; letter-spacing: .2px; }
.footer-links a:hover { color: var(--green); text-decoration: none; }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.5); text-align: center; padding-top: 0; letter-spacing: .3px; }
.footer-copy a { color: rgba(255,255,255,.45); }
.footer-copy a:hover { color: rgba(255,255,255,.7); }

/* ---- Mobile responsive ---- */
@media (max-width: 768px) {
  /* Urgency bar: full width, no overflow */
  #urgency-bar {
    padding: 8px 12px;
    font-size: .75rem;
    gap: 8px;
  }
  #urgency-bar .urgency-text { font-size: .75rem; }
  #urgency-bar .urgency-timer { font-size: .75rem; }
  #urgency-bar .urgency-close { font-size: 1rem; padding: 2px 6px; }
  /* Body: prevent any horizontal spill */
  html, body { overflow-x: hidden; max-width: 100vw; }
  .section { padding: 56px 0; }
  .hero { padding: 90px 16px 56px; }
  .hero h1 { font-size: 1.9rem; }
  .hero-stats { font-size: .82rem; gap: 8px; }
  .pricing-compare-row { flex-direction: column; gap: 12px; }
  .pricing-compare-item { max-width: 100%; width: 100%; }
  .pricing-compare-arrow { transform: rotate(90deg); }
  .pricing-card { padding: 40px 20px; }
  .price-current { font-size: 3rem; }
  .feature-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .cd-block { padding: 8px 8px; min-width: 46px; }
  .cd-block span { font-size: 1.2rem; }
  .ticker-box { padding: 12px 20px; }
  .ticker-amount { font-size: 1.7rem; }
  .sticky-cta-inner { padding: 10px 16px; gap: 10px; flex-wrap: wrap; }
  .sticky-cta-text { font-size: .82rem; }
  .sticky-cta-btn { font-size: .82rem; padding: 9px 18px; }
  .nav-inner { padding: 0 16px; }
  .nav-cta { padding: 8px 14px; font-size: .82rem; }
  .faq-item summary { padding: 16px 0; font-size: .95rem; }
  .guide-item summary { padding: 14px 16px; }
  .secure-badges { gap: 10px; font-size: .72rem; }
  .guarantee-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .guarantee-banner-icon { font-size: 3rem; }
  .guarantee-banner-seal { justify-content: center; }
  .final-trust-row { font-size: .78rem; gap: 8px; }
}

@media (max-width: 480px) {
  .btn-xl { font-size: 1rem; padding: 16px 20px; }
  .countdown { gap: 2px; }
  .cd-sep { font-size: 1.1rem; }
}

/* ============================================
   PREMIUM POLISH — Fortune 500 look
   ============================================ */

/* ---- Section center alignment ---- */
.section-badge { display: inline-block; text-align: center; }
.what-section .container,
.guides-section .container,
.testimonials-section .container,
.value-section .container,
.pricing-section .container,
.gallery-section .container,
.comparison-section .container,
.guarantee-full-section .container,
.faq-section .container,
.final-cta-section .container,
.affiliate-section .container { text-align: center; }
.what-section h2, .what-section .section-sub,
.guides-section h2, .guides-section .section-sub,
.testimonials-section h2, .testimonials-section .section-sub,
.value-section h2,
.gallery-section h2, .gallery-section .section-sub,
.comparison-section h2, .comparison-section .section-sub,
.guarantee-full-section h2,
.faq-section h2,
.final-cta-section h2,
.affiliate-section h2, .affiliate-section > .container > p,
.pricing-compare { text-align: center; }

/* ---- Scroll reveal animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s cubic-bezier(.22,.68,0,1.2), transform .55s cubic-bezier(.22,.68,0,1.2);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .40s; }
.reveal-delay-6 { transition-delay: .48s; }

/* ---- Smoother scroll ---- */
html { scroll-behavior: smooth; }

/* ---- Button premium hover effects ---- */
.btn-primary {
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(34,197,94,.3);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .2s;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,.45), 0 0 0 3px rgba(34,197,94,.12);
  background: var(--green-dark);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 8px rgba(34,197,94,.3); }
.btn-lg:hover { transform: translateY(-3px) scale(1.02); }
.btn-xl:hover { transform: translateY(-2px) scale(1.01); }

/* ---- Premium section dividers ---- */
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,.08); color: var(--green-dark);
  font-weight: 700; font-size: .8rem; padding: 5px 14px;
  border-radius: 20px; margin-bottom: 16px;
  border: 1px solid rgba(34,197,94,.2);
  letter-spacing: .3px;
}

/* ---- Card hover depth ---- */
.feature-card, .testimonial-card, .gallery-card, .theme-card {
  transition: transform .3s cubic-bezier(.22,.68,0,1.2), box-shadow .3s;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1), 0 4px 12px rgba(0,0,0,.06);
}
.gallery-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,.15);
}
.theme-card:hover { transform: translateY(-4px); }

/* ---- Feature card icon elevation ---- */
.feature-icon { font-size: 1.8rem; display: block; margin-bottom: 12px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.1)); }

/* ---- Hero section premium polish ---- */
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #fef9e7, #fde8aa);
  color: #92400e; font-weight: 700; font-size: .82rem; padding: 6px 16px;
  border-radius: 20px; margin-bottom: 20px;
  border: 1px solid rgba(245,158,11,.25);
  box-shadow: 0 2px 12px rgba(245,158,11,.2);
}

/* ---- Buyer counter polish ---- */
#buyer-counter { padding: 36px 0; background: linear-gradient(135deg, #0f172a, #111827); }
.bc-inner { display: flex; align-items: center; justify-content: center; gap: 14px; }
.bc-fire { font-size: 1.6rem; }
.bc-text { font-size: 1.1rem; color: #fff; }
.bc-count { color: var(--green); }
.bc-label { text-align: center; color: rgba(255,255,255,.55); font-size: .78rem; margin-top: 6px; }
.btn-primary:active { transform: translateY(1px) !important; }

/* ---- Sticky CTA fade-in animation ---- */
@keyframes sticky-slide-in {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
#stickyCta.visible {
  animation: sticky-slide-in 0.4s cubic-bezier(.22,.68,0,1.2) forwards;
}

/* ---- Demo section: subtle float animation for browser frame ---- */
.browser-frame {
  animation: float-gently 6s ease-in-out infinite;
}
@keyframes float-gently {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-6px); }
}

/* ---- Pricing card: shimmer on hover ---- */
.pricing-card {
  transition: transform .3s cubic-bezier(.34,1.56,.64,1),
              box-shadow .3s cubic-bezier(.34,1.56,.64,1);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(34,197,94,.22), 0 0 0 1px rgba(34,197,94,.2);
}

/* ---- Comparison table: animated rows ---- */
.comparison-table tbody tr {
  transition: background .2s;
}
.comparison-table tbody tr:hover td {
  background: rgba(34,197,94,.04);
}

/* ---- Gallery cards: lift on hover ---- */
.gallery-card {
  position: relative;
  overflow: hidden;
}
.gallery-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  transform-origin: left;
}
.gallery-card:hover::after { transform: scaleX(1); }
.gallery-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

/* ---- Affiliate section button ---- */
.affiliate-cta {
  display: inline-block;
  padding: 16px 40px;
  background: linear-gradient(135deg, #7c3aed, #5b21b6);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 4px 20px rgba(124,58,237,.35);
  margin: 0 auto;
}
.affiliate-cta:hover {
  background: linear-gradient(135deg, #6d28d9, #4c1d95);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(124,58,237,.5);
  color: #fff;
  text-decoration: none;
}

/* ---- Feature cards: more dramatic hover ---- */
.feature-card {
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }

/* ---- Testimonial: quote icon ---- */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; right: 16px;
  font-size: 4rem;
  font-family: Georgia, serif;
  color: var(--green-xlight);
  line-height: 1;
  pointer-events: none;
}

/* ---- Section: Better visual hierarchy ---- */
.section-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-xlight);
  color: var(--green-dark);
  font-size: .72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--green-light);
}

/* ---- Nav: premium CTA ---- */
.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  transition: all .2s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 2px 10px rgba(34,197,94,.3);
}
.nav-cta:hover {
  background: var(--green-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(34,197,94,.4);
  text-decoration: none;
}

/* ---- Hero: live badge pulse ---- */
.hero-badge {
  animation: hero-badge-pulse 3s ease-in-out infinite;
}
@keyframes hero-badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,158,11,.2); }
  50%       { box-shadow: 0 0 0 8px rgba(245,158,11,0); }
}

/* ---- Guide items: left border on open ---- */
.guide-item[open] {
  border-color: var(--green-light);
  border-left: 3px solid var(--green);
}

/* ---- FAQ: left green border on open ---- */
.faq-item[open] {
  border-left: 3px solid var(--green);
  padding-left: 12px;
  transition: padding-left .3s;
}

/* ---- Live visitor bar: glass effect ---- */
.live-visitor-bar {
  background: rgba(34,197,94,.05);
  border-bottom: 1px solid rgba(34,197,94,.15);
}

/* ---- Story section: subtle depth ---- */
.story-section {
  position: relative;
}
.story-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,.2), transparent);
}

/* ---- Value stack: animated divider ---- */
.value-divider {
  position: relative;
  overflow: hidden;
}
.value-divider::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; right: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.5), transparent);
  animation: shimmer 3s ease-in-out infinite;
}
@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 100%; }
}

/* ---- Comparison table: animated row entrance ---- */
.comparison-table tbody tr {
  animation: row-reveal 0.5s ease-out both;
}
.comparison-table tbody tr:nth-child(1) { animation-delay: 0ms; }
.comparison-table tbody tr:nth-child(2) { animation-delay: 50ms; }
.comparison-table tbody tr:nth-child(3) { animation-delay: 100ms; }
.comparison-table tbody tr:nth-child(4) { animation-delay: 150ms; }
.comparison-table tbody tr:nth-child(5) { animation-delay: 200ms; }
.comparison-table tbody tr:nth-child(6) { animation-delay: 250ms; }
.comparison-table tbody tr:nth-child(7) { animation-delay: 300ms; }
@keyframes row-reveal {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- Buyer counter: pulsing dot ---- */
#buyer-counter .bc-fire {
  display: inline-flex; align-items: center;
}

/* ---- Demo section: browser frame shadow ---- */
.browser-frame {
  box-shadow:
    0 24px 80px rgba(0,0,0,.35),
    0 0 0 1px rgba(255,255,255,.06),
    inset 0 1px 0 rgba(255,255,255,.08);
}

/* ---- What section: card hover with subtle glow ---- */
.what-section .feature-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.08), 0 0 0 4px var(--green-xlight);
}

/* ---- Demo-anim section: background texture ---- */
.demo-anim-section {
  position: relative;
}
.demo-anim-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(34,197,94,.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ---- Ticker section: ambient glow ---- */
.ticker-section {
  position: relative;
  overflow: hidden;
}
.ticker-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(34,197,94,.05) 0%, transparent 60%);
  pointer-events: none;
}
.ticker-amount {
  text-shadow: 0 0 30px rgba(34,197,94,.4);
}

/* ---- Final CTA: floating particles effect via CSS ---- */
.final-cta-section::after {
  content: '';
  position: absolute;
  top: 20%; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(34,197,94,.06) 0%, transparent 70%);
  pointer-events: none;
  animation: final-glow 4s ease-in-out infinite;
}
@keyframes final-glow {
  0%, 100% { opacity: .5; transform: translateX(-50%) scale(1); }
  50%       { opacity: 1;   transform: translateX(-50%) scale(1.1); }
}

/* ---- Footer: subtle gradient top border ---- */
.footer {
  position: relative;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34,197,94,.3), transparent);
}

/* ---- Scroll reveal: also target gallery and other sections ---- */
.reveal-gallery { opacity: 0; transform: translateY(20px); transition: opacity .6s, transform .6s; }
.reveal-gallery.visible { opacity: 1; transform: translateY(0); }

/* ---- Affiliate section: purple gradient top ---- */
.affiliate-section {
  background: linear-gradient(135deg, #1a0a2e, #16082a);
}

/* ---- Premium image placeholders (gradient swatches) ---- */
.gallery-preview {
  position: relative;
  overflow: hidden;
}
.gallery-preview::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 60px;
  background: linear-gradient(transparent, rgba(0,0,0,.15));
  pointer-events: none;
}

/* ---- Urgency bar: sleek red gradient ---- */
#urgency-bar {
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  box-shadow: 0 2px 16px rgba(220,38,38,.4);
}

/* ---- Demo section title text shadow ---- */
.demo-anim-section h2 {
  text-shadow: 0 2px 10px rgba(0,0,0,.05);
}

/* ---- Comparison section title underline ---- */
.comparison-section h2 {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* ---- Value stack total: pulsing highlight ---- */
.value-total {
  position: relative;
}
.value-total::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,242,242,.5), rgba(254,226,226,.5));
  border-radius: inherit;
}

/* ---- Mobile polish ---- */
@media (max-width: 768px) {
  .browser-frame {
    animation: none;
    border-radius: 10px;
  }
  .pricing-card { border-radius: 16px; }
  .affiliate-cta { padding: 14px 32px; font-size: .95rem; }
  .gallery-card:hover { transform: translateY(-3px); }
}

/* ============================================
   OVERHAUL 2.0 — New Sections
   ============================================ */

/* ---- Live Visitor Counter ---- */
.live-visitor-bar {
  padding: 10px 24px; background: transparent; text-align: center;
  border-bottom: 1px solid rgba(34,197,94,.15);
}
.live-visitor-inner {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .88rem; font-weight: 600; color: var(--dark);
}
.live-visitor-dot {
  width: 10px; height: 10px; background: var(--green); border-radius: 50%;
  animation: live-pulse 2s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: .7; }
}
.live-visitor-count { color: var(--dark); font-weight: 800; font-variant-numeric: tabular-nums; }

/* ---- Story Blockquote (direct-response storytelling) ---- */
.story-narrative {
  position: relative;
  padding: 40px 0;
}
.story-narrative blockquote {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.18rem;
  line-height: 1.9;
  color: var(--dark-soft);
  font-style: italic;
  padding: 28px 36px;
  border-left: 5px solid var(--green);
  background: var(--green-xlight);
  border-radius: 0 12px 12px 0;
  margin: 0;
}
.story-narrative blockquote p { margin-bottom: .8rem; font-size: 1.05rem; color: var(--dark-soft); }
.story-narrative blockquote p:last-child { margin-bottom: 0; }
.story-narrative blockquote strong { color: var(--dark); font-style: normal; }
.story-narrative blockquote em { color: var(--green-dark); font-style: normal; font-weight: 600; }

/* ---- Comparison Table ---- */
.comparison-section { padding: 80px 0; background: #fff; }
.comparison-section .section-badge { margin-bottom: 12px; }
.comparison-table-wrap { overflow-x: auto; margin-top: 2.5rem; border-radius: var(--radius-lg); border: 1.5px solid var(--gray-border); box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.comparison-table th {
  padding: 16px 20px; font-size: .82rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; background: var(--dark); color: #fff; text-align: left;
}
.comparison-table th:first-child { border-radius: 12px 0 0 0; }
.comparison-table th:last-child { background: var(--green); border-radius: 0 12px 0 0; text-align: center; }
.comparison-table td { padding: 16px 20px; font-size: .95rem; border-bottom: 1px solid #f3f4f6; vertical-align: middle; }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:nth-child(even) td { background: #fafafa; }
.comparison-table .comp-ocs { font-weight: 700; color: var(--green-dark); }
.comparison-table .comp-diy { color: var(--gray); }
.comparison-table .comp-check { color: var(--green); font-size: 1.1rem; font-weight: 700; }
.comparison-table .comp-x { color: #ef4444; font-size: 1rem; }
.comparison-table .comp-highlight td { background: var(--green-xlight); font-weight: 600; }
.comparison-table .comp-highlight .comp-ocs { color: var(--green-dark); }
.comparison-table .comp-highlight td:first-child { border-left: 4px solid var(--green); }

/* ---- Example Sites Gallery ---- */
.gallery-section { padding: 80px 0; background: var(--gray-light); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px; margin-top: 2rem;
}
.gallery-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1.5px solid var(--gray-border); transition: all .25s;
  box-shadow: var(--shadow-sm);
}
.gallery-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); border-color: var(--green); }
.gallery-preview {
  height: 180px; background: linear-gradient(135deg, #1a1a2e, #16213e);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
  position: relative;
}
.gallery-badge {
  position: absolute; top: 10px; right: 10px; background: var(--green);
  color: #fff; font-size: .65rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; letter-spacing: .5px;
}
.gallery-meta { padding: 16px 20px; }
.gallery-niche { font-weight: 700; font-size: .95rem; color: var(--dark); margin-bottom: 4px; }
.gallery-desc { font-size: .8rem; color: var(--gray); }

/* ---- Order Bump (bump.html) ---- */
.bump-page-body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #0a0f0d; min-height: 100vh;
  display: flex; align-items: center; justify-content: center; padding: 20px;
}
.bump-main-card {
  background: linear-gradient(145deg, #1a1a3e, #111827);
  border: 2px solid var(--green); border-radius: 20px;
  padding: 48px 44px; max-width: 560px; width: 100%;
  box-shadow: 0 0 60px rgba(34,197,94,.12);
  position: relative; overflow: hidden;
}
.bump-main-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: linear-gradient(90deg, var(--green), var(--green-dark));
}
.bump-eyebrow {
  display: inline-block; background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-size: .7rem; font-weight: 800; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 5px 14px; border-radius: 20px; margin-bottom: 20px;
}
.bump-headline { font-size: 1.9rem; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 10px; }
.bump-headline .hl-price { color: var(--green); }
.bump-subtext { color: rgba(255,255,255,.55); font-size: 1rem; line-height: 1.6; margin-bottom: 28px; }
.bump-checkboxes { margin-bottom: 28px; }
.bump-line-item {
  background: rgba(34,197,94,.06); border: 2px solid rgba(34,197,94,.25);
  border-radius: 12px; padding: 18px 20px; margin-bottom: 12px;
  cursor: pointer; transition: all .2s; display: flex; align-items: flex-start; gap: 14px;
}
.bump-line-item:hover { border-color: var(--green); background: rgba(34,197,94,.12); }
.bump-line-item.selected { border-color: var(--green); background: rgba(34,197,94,.15); }
.bump-line-item input[type="checkbox"] {
  width: 22px; height: 22px; accent-color: var(--green); cursor: pointer; flex-shrink: 0; margin-top: 2px;
}
.bump-item-body { flex: 1; }
.bump-item-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 3px; }
.bump-item-price { font-size: .85rem; color: var(--green); font-weight: 700; }
.bump-item-desc { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 2px; }
.bump-offers { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.bump-offer-tag { font-size: .68rem; color: rgba(34,197,94,.8); background: rgba(34,197,94,.08); padding: 2px 8px; border-radius: 10px; }
.bump-order-summary {
  background: rgba(255,255,255,.04); border-radius: 10px; padding: 16px 20px;
  margin-bottom: 20px; border: 1px solid rgba(255,255,255,.08);
}
.bump-summary-row { display: flex; justify-content: space-between; font-size: .9rem; padding: 4px 0; }
.bump-summary-row .bump-label { color: rgba(255,255,255,.5); }
.bump-summary-row .bump-value { color: #fff; font-weight: 600; }
.bump-summary-row.total { border-top: 1px solid rgba(255,255,255,.1); margin-top: 8px; padding-top: 10px; font-size: 1.1rem; }
.bump-summary-row.total .bump-label { color: #fff; font-weight: 700; }
.bump-summary-row.total .bump-value { color: var(--green); font-weight: 800; }
.bump-cta {
  display: block; width: 100%; padding: 17px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-weight: 800; font-size: 1.05rem; border: none;
  border-radius: 12px; cursor: pointer; transition: all .2s;
  box-shadow: 0 4px 20px rgba(34,197,94,.3);
}
.bump-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(34,197,94,.4); }
.bump-cta:active { transform: translateY(0); }
.bump-skip {
  display: block; width: 100%; padding: 14px; background: transparent;
  color: rgba(255,255,255,.35); font-size: .88rem; border: none;
  cursor: pointer; text-align: center; margin-top: 8px; transition: color .2s;
}
.bump-skip:hover { color: rgba(255,255,255,.6); }
.bump-note { font-size: .68rem; color: rgba(255,255,255,.48); text-align: center; margin-top: 12px; }

/* ---- Email Capture Success (post-submit) ---- */
.capture-success-msg { display: none; margin-top: 20px; text-align: left; }
.capture-success-msg.show { display: block; }
.capture-success-msg h3 { color: #fff; font-size: 1.15rem; font-weight: 800; margin-bottom: 16px; }
.capture-success-msg .success-list { list-style: none; padding: 0; margin: 0 0 20px; }
.capture-success-msg .success-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: .88rem; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.07); }
.capture-success-msg .success-list li:last-child { border-bottom: none; }
.capture-success-msg .success-list li::before { content: '📧'; flex-shrink: 0; }
.capture-success-msg .success-nudge { font-size: .82rem; color: rgba(255,255,255,.45); margin-bottom: 18px; font-style: italic; }
.capture-success-msg .bump-mini-cta {
  display: inline-block; padding: 13px 28px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; font-weight: 700; font-size: .95rem; border-radius: 10px;
  text-decoration: none; transition: all .2s; box-shadow: 0 4px 16px rgba(34,197,94,.3);
}
.capture-success-msg .bump-mini-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(34,197,94,.4); color: #fff; text-decoration: none; }

/* ---- Enhanced Guarantee Banner (full-width shield) ---- */
.guarantee-full-section { padding: 72px 0; background: linear-gradient(180deg, var(--green-xlight), #fff); }
.guarantee-shield-card {
  background: #fff; border: 2.5px solid var(--green); border-radius: 20px;
  padding: 56px 48px; text-align: center; box-shadow: 0 8px 40px rgba(34,197,94,.12);
  max-width: 720px; margin: 0 auto;
}
.guarantee-shield-icon { font-size: 4rem; margin-bottom: 16px; display: block; }
.guarantee-shield-card h2 { font-size: clamp(1.6rem, 3vw, 2rem); font-weight: 900; color: var(--dark); margin-bottom: 12px; }
.guarantee-shield-card p { color: var(--gray); font-size: 1.05rem; line-height: 1.7; max-width: 520px; margin: 0 auto 28px; }
.guarantee-trust-badges { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-top: 24px; }
.guarantee-trust-badges span { display: flex; align-items: center; gap: 6px; font-size: .85rem; font-weight: 600; color: var(--dark); }

/* ---- Affiliate Section (near footer) ---- */
.affiliate-section {
  padding: 72px 0; background: var(--dark); text-align: center; position: relative; overflow: hidden;
}
.affiliate-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(34,197,94,.06) 0%, transparent 70%);
  pointer-events: none;
}
.affiliate-section h2 { color: #fff; font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 900; margin-bottom: 14px; }
.affiliate-section p { color: rgba(255,255,255,.6); font-size: 1rem; line-height: 1.7; max-width: 540px; margin: 0 auto 32px; }
.affiliate-cta {
  display: inline-block; padding: 15px 36px;
  background: var(--green); color: #fff; font-weight: 700; font-size: 1rem;
  border-radius: 12px; text-decoration: none; transition: all .2s;
  box-shadow: 0 4px 20px rgba(34,197,94,.3);
}
.affiliate-cta:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); text-decoration: none; box-shadow: 0 8px 28px rgba(34,197,94,.4); }
.affiliate-footnote { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 16px; }

/* ---- Comparison section mobile ---- */
@media (max-width: 640px) {
  .comparison-table th, .comparison-table td { padding: 12px 14px; font-size: .85rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .bump-main-card { padding: 36px 24px; }
  .bump-headline { font-size: 1.5rem; }
  .guarantee-shield-card { padding: 40px 24px; }
  .guarantee-trust-badges { gap: 12px; }
}