/* UpsellCat Blog - Stylesheet */
:root {
  --primary: #3B82F6;
  --primary-dark: #1E40AF;
  --primary-light: #DBEAFE;
  --accent: #F59E0B;
  --accent-dark: #D97706;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --bg-dark: #0F172A;
  --text: #1E293B;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --radius: 10px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }
.btn-icon { vertical-align: -0.15em; margin-right: 0.35rem; }

/* Shopify App Store badge */
.shopify-badge { display: inline-block; transition: transform 0.2s, filter 0.2s; }
.shopify-badge:hover { transform: scale(1.03); filter: drop-shadow(0 0 12px rgba(59,130,246,0.6)); }
.shopify-badge-img {
  height: 64px;
  width: auto;
  border-radius: 8px;
  animation: badge-glow 2.5s ease-in-out infinite alternate;
}
@keyframes badge-glow {
  0% { filter: drop-shadow(0 0 4px rgba(59,130,246,0.3)); }
  100% { filter: drop-shadow(0 0 14px rgba(59,130,246,0.55)); }
}

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 64px;
  gap: 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--text);
  flex-shrink: 0;
}
.logo:hover { color: var(--primary); }
.logo img { border-radius: 50%; }
.main-nav { display: flex; gap: 1.5rem; margin-left: auto; }
.main-nav a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.header-cta { margin-left: 1rem; white-space: nowrap; }
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, #EFF6FF 50%, #FEF3C7 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}
.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 1rem;
}
.hero .subtitle {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-banner {
  max-width: 700px;
  margin: 2.5rem auto 0;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}
.hero-video {
  max-width: 700px;
  margin: 2.5rem auto 0;
}

/* ---- Features ---- */
.features { padding: 4rem 0; }
.features h2 { text-align: center; font-size: 2rem; margin-bottom: 0.5rem; }
.features .section-sub { text-align: center; color: var(--text-muted); margin-bottom: 2.5rem; font-size: 1.05rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-card .icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.feature-card p { color: var(--text-muted); font-size: 0.95rem; }

/* ---- Pricing Slider ---- */
.pricing { padding: 4rem 0; background: var(--bg-alt); }
.pricing h2 { text-align: center; font-size: 2rem; margin-bottom: 0.5rem; }
.pricing .section-sub { text-align: center; color: var(--text-muted); margin-bottom: 0.5rem; font-size: 1.05rem; }
.pricing .section-hook { text-align: center; color: var(--accent-dark); font-weight: 700; font-size: 1.05rem; margin-bottom: 2.5rem; }

.pricing-slider-wrap {
  max-width: 600px;
  margin: 0 auto;
}
.pricing-display {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s;
}
.pricing-display:hover { box-shadow: var(--shadow-md); }

.pricing-revenue-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.pricing-revenue-value {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.pricing-revenue-value span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin: 0 -2rem 1.5rem;
}

.pricing-result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.pricing-plan-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
}
.pricing-cost {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--primary);
}
.pricing-cost span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Range slider */
.slider-container { padding: 0 0.5rem; }
.pricing-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--primary-light) 0%, var(--primary) 100%);
  outline: none;
  cursor: pointer;
}
.pricing-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(59,130,246,0.4);
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}
.pricing-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 12px rgba(59,130,246,0.5);
}
.pricing-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(59,130,246,0.4);
  cursor: pointer;
}
.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.pricing-pay-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.pricing-headline {
  text-align: center;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 2rem;
  line-height: 1.4;
}
.pricing-headline-sub {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 0.25rem;
  line-height: 1.4;
}
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.35rem;
  line-height: 1.5;
}

/* All tiers list below slider */
.pricing-tiers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.pricing-tiers .tier {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.pricing-tiers .tier-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 1.5px solid var(--primary);
  flex-shrink: 0;
}
.pricing-tiers .tier.active .tier-dot {
  background: var(--primary);
}

@media (max-width: 768px) {
  .pricing-revenue-value { font-size: 2.25rem; }
  .pricing-cost { font-size: 1.75rem; }
}

/* ---- Blog Grid ---- */
.blog-section { padding: 4rem 0; }
.blog-section h2 { text-align: center; font-size: 2rem; margin-bottom: 2rem; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.blog-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card-body { padding: 1.25rem; }
.blog-card .category-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.blog-card h3 {
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.blog-card h3 a { color: var(--text); }
.blog-card h3 a:hover { color: var(--primary); }
.blog-card .meta { font-size: 0.8rem; color: var(--text-muted); }

/* ---- Blog Index ---- */
.blog-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, #EFF6FF 100%);
  padding: 3rem 0;
  text-align: center;
}
.blog-hero h1 { font-size: 2.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.blog-hero p { color: var(--text-muted); font-size: 1.1rem; }

.category-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 1.5rem 0;
}
.category-filters button {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--text-muted);
  transition: all 0.2s;
}
.category-filters button:hover,
.category-filters button.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ---- Article Page ---- */
.article-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, #EFF6FF 100%);
  padding: 3rem 0 2.5rem;
}
.article-hero .container { max-width: 760px; }
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.article-hero h1 { font-size: 2.25rem; font-weight: 800; line-height: 1.2; margin-bottom: 0.75rem; }
.article-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.article-meta .category-tag { margin-bottom: 0; }

.article-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}
.article-content h2 {
  font-size: 1.5rem;
  margin: 2.25rem 0 0.75rem;
  color: var(--text);
}
.article-content h3 {
  font-size: 1.2rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--text);
}
.article-content p {
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
}
.article-content ul, .article-content ol {
  margin: 0 0 1.25rem 1.5rem;
}
.article-content li {
  margin-bottom: 0.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}
.article-content strong { color: var(--text); }

/* ---- Mid-Article Callout ---- */
.mid-callout {
  margin: 2.5rem 0;
  border: 2px solid var(--primary-light);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #EFF6FF 0%, #FEF3C7 100%);
  overflow: hidden;
}
.mid-callout-inner {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  align-items: flex-start;
}
.mid-callout-icon {
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.mid-callout strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.mid-callout p {
  font-size: 0.95rem !important;
  color: var(--text-muted);
  margin-bottom: 0.75rem !important;
  line-height: 1.5 !important;
}
.mid-callout .btn-sm {
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
}
@media (max-width: 768px) {
  .mid-callout-inner { flex-direction: column; align-items: center; text-align: center; }
}

/* ---- CTA Box ---- */
.cta-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3.5rem 0;
  text-align: center;
  color: #fff;
}
.cta-inner { max-width: 600px; }
.cta-icon { margin-bottom: 1rem; border-radius: 50%; border: 3px solid rgba(255,255,255,0.3); }
.cta-box h2 { font-size: 1.75rem; margin-bottom: 0.75rem; color: #fff; }
.cta-box p { font-size: 1.05rem; opacity: 0.9; margin-bottom: 1.5rem; line-height: 1.6; }

/* ---- Related Posts ---- */
.related-posts { padding: 3rem 0; background: var(--bg-alt); }
.related-posts h2 { text-align: center; font-size: 1.5rem; margin-bottom: 1.5rem; }

/* ---- FAQ ---- */
.faq-section { padding: 3rem 0; }
.faq-section h2 { font-size: 1.75rem; margin-bottom: 1.5rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  background: var(--bg);
  transition: background 0.2s;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text);
}
.faq-q:hover { background: var(--bg-alt); }
.faq-q .arrow { transition: transform 0.2s; font-size: 0.85rem; color: var(--text-muted); flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}
.faq-item.open .faq-a { display: block; }

/* ---- Legal Pages ---- */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}
.legal-page h1 { font-size: 2rem; margin-bottom: 0.25rem; }
.legal-page .updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.legal-page h2 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
.legal-page p { margin-bottom: 1rem; line-height: 1.7; }
.legal-page ul { margin: 0 0 1rem 1.5rem; }
.legal-page li { margin-bottom: 0.5rem; line-height: 1.7; }
.legal-page a { color: var(--primary); }

/* ---- Footer ---- */
.site-footer {
  background: var(--bg-dark);
  color: #CBD5E1;
  padding: 2.5rem 0;
  font-size: 0.9rem;
}
.footer-inner { text-align: center; }
.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-brand img { border-radius: 50%; }
.footer-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.footer-links a { color: #94A3B8; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: #64748B; font-size: 0.8rem; }

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero .subtitle { font-size: 1rem; }
  .main-nav { display: none; }
  .header-cta { display: none; }
  .mobile-toggle { display: block; }
  body.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    box-shadow: var(--shadow-md);
  }
  body.nav-open .header-cta {
    display: block;
    position: absolute;
    top: 64px;
    right: 1rem;
  }
  .blog-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .article-hero h1 { font-size: 1.75rem; }
}

/* ---- Contact Page ---- */
.contact-card {
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}
.contact-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.contact-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-card p { color: var(--text-muted); margin-bottom: 1.25rem; }
.contact-email {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.contact-email:hover { background: var(--primary); color: #fff; }
.contact-topics h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.contact-topics ul { list-style: none; padding: 0; }
.contact-topics li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.6;
}
.contact-topics li:last-child { border-bottom: none; }

/* ---- Landing Page ---- */
.lp-hero {
  background: linear-gradient(135deg, var(--primary-light) 0%, #EFF6FF 50%, #FEF3C7 100%);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}
.lp-emphasis {
  font-style: normal;
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
}
.lp-hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 1rem;
}
.lp-hero .subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}
.lp-hero-actions { margin-bottom: 2rem; }
.lp-email-capture {
  max-width: 480px;
  margin: 0 auto;
}
.lp-email-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.lp-email-form {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
}
.lp-email-input {
  flex: 1;
  padding: 0.65rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.lp-email-input:focus { border-color: var(--primary); }
.lp-badge-sub {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.lp-trust-line {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Landing page sections */
.lp-section { padding: 4rem 0; }
.lp-section-alt { background: var(--bg-alt); }
.lp-section h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.lp-section-sub {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

/* Asset placeholders */
.lp-asset-slot {
  background: #F1F5F9;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  color: var(--text-muted);
}
.lp-asset-slot-sm { padding: 2rem 1.5rem; }
.lp-asset-icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.lp-asset-slot strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: 0.04em;
}
.lp-asset-slot p { font-size: 0.85rem; margin: 0; line-height: 1.5; }

/* Video placeholder */
.lp-video-placeholder {
  max-width: 720px;
  margin: 2rem auto 0;
}

/* Video embed */
.lp-video-wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.lp-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Stat line under video */
.lp-stat-line {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 1.5rem;
}
.lp-stat-ref {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-style: italic;
}

/* Steps */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 800px;
  margin: 2.5rem auto 0;
  text-align: center;
}
.lp-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.lp-step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.lp-step p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ROI box */
.lp-roi-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
}
.lp-roi-box h2 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.lp-roi-calc {
  text-align: left;
  max-width: 360px;
  margin: 0 auto;
}
.lp-roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
}
.lp-roi-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.lp-roi-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.lp-roi-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0;
}
.lp-roi-total .lp-roi-label {
  font-weight: 700;
  color: var(--text);
}
.lp-roi-highlight {
  font-size: 1.5rem;
  color: var(--primary);
}
.lp-roi-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Screenshots grid */
.lp-screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.lp-screenshot-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.lp-screenshot-label {
  padding: 0.75rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  text-align: center;
  border-top: 1px solid var(--border);
}

/* Benefits grid */
.lp-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.lp-benefit {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.lp-benefit-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.lp-benefit h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.lp-benefit p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.6; }

/* Testimonials grid */
.lp-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.lp-testimonial {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Email capture box (second instance) */
.lp-email-capture-box {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.lp-email-capture-box h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.lp-email-capture-box > p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.lp-guide-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.lp-guide-list li {
  padding: 0.35rem 0;
  font-size: 0.95rem;
  color: var(--text);
}
.lp-guide-list li::before {
  content: "\2713 ";
  color: var(--primary);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Landing page responsive */
@media (max-width: 768px) {
  .lp-hero h1 { font-size: 2rem; }
  .lp-hero .subtitle { font-size: 1.05rem; }
  .lp-email-form { flex-direction: column; }
  .lp-steps { grid-template-columns: 1fr; gap: 1.5rem; }
  .lp-screenshots-grid { grid-template-columns: 1fr; }
  .lp-testimonials-grid { grid-template-columns: 1fr; }
  .lp-benefits-grid { grid-template-columns: 1fr; }
}

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