/* index.css — homepage only  v2 light theme */

/* ─── HERO ───────────────────────────────────────────────────────────── */
.hero {
  padding: calc(64px + 72px) 0 var(--space-12);
  text-align: center;
}
.hero__inner {
  max-width: 800px;
  margin: 0 auto;
}

/* Badge pill */
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 14px;
  margin-bottom: var(--space-6);
  background: var(--accent-light);
  border: 1px solid rgba(0,128,96,0.2);
  border-radius: var(--radius-pill);
  font-family: var(--fm);
  font-size: 11px; font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.hero__badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.65); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__badge .dot { animation: none; }
}

/* Heading */
.hero h1 {
  margin-bottom: var(--space-5);
}
/* Italic accent in headline */
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

/* Sub-headline */
.hero__sub {
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.65;
}

/* CTAs */
.hero__ctas {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  margin-top: var(--space-7);
}

/* Proof pills */
.hero__proof {
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 680px;
  margin: var(--space-5) auto 0;
}
.proof-item {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  transition: border-color .2s, transform .2s;
}
.proof-item:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.proof-item__icon { font-size: 14px; line-height: 1; flex-shrink: 0; }
.proof-item__text {
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  line-height: 1.2;
}

/* ─── MARQUEE ────────────────────────────────────────────────────────── */
.marquee {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  padding: 20px 0;
  overflow: hidden;
}
.marquee__track {
  display: flex; gap: 36px;
  width: max-content;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}
.marquee__track span {
  font-family: var(--fm);
  font-size: 11px; font-weight: 600;
  color: var(--text-dim);
  text-transform: uppercase; letter-spacing: 0.12em;
  white-space: nowrap;
}
.marquee__track .dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--border-md); align-self: center; flex-shrink: 0;
}

/* ─── FEATURES GRID ──────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  display: flex; flex-direction: column;
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.feature-icon-wrap,
.feature-icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-light);
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-5);
  font-size: 20px; line-height: 1;
  flex-shrink: 0;
}
.feature-card h3 {
  font-size: 17px; font-weight: 600; line-height: 1.3;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.feature-card p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ─── SCREENSHOTS ────────────────────────────────────────────────────── */
.screenshots-section { }
.screenshots-featured { margin-bottom: var(--space-6); }
.screenshots-featured .screenshot-frame { width: 100%; }
.screenshots-grid--featured {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-5);
}

.screenshot-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  box-shadow: var(--shadow-sm);
  margin: 0;
}
.screenshot-frame:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Browser chrome bar */
.screenshot-frame__bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
}
/* Traffic lights via ::before (red) and ::after (green), .dot-y for yellow */
.screenshot-frame__bar::before {
  content: '';
  width: 10px; height: 10px; border-radius: 50%;
  background: #ff5f56; flex-shrink: 0;
}
.screenshot-frame__bar::after {
  content: '';
  width: 10px; height: 10px; border-radius: 50%;
  background: #27c93f; flex-shrink: 0; order: 3;
}
.screenshot-frame__bar > .dot-y {
  width: 10px; height: 10px; border-radius: 50%;
  background: #ffbd2e; flex-shrink: 0; order: 2;
}
.screenshot-frame__bar > .url {
  margin-left: 10px;
  font-family: var(--fm);
  font-size: 10.5px; color: var(--text-dim);
  flex: 1; order: 4;
  text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  padding: 3px 10px;
  background: var(--bg);
  border-radius: var(--radius-pill);
  margin-right: 24px;
  border: 1px solid var(--border);
}

/* Image area */
.screenshot-frame__img {
  aspect-ratio: 16 / 10;
  background: var(--surface2);
  display: flex; align-items: stretch;
  position: relative; overflow: hidden;
  padding: 14px 14px 0;
}
.screenshot-frame__img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
  border-radius: 8px 8px 0 0;
  box-shadow: var(--shadow-sm);
}

/* Caption */
.screenshot-frame figcaption,
.screenshot-frame__cap {
  padding: 12px 16px 14px;
  font-family: var(--fu);
  font-size: 13px; font-weight: 500;
  color: var(--text-muted);
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--surface);
  line-height: 1.4;
}

/* ─── HOW IT WORKS (STEPS) ───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
/* Dashed connector on desktop only */
.steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: 16.66%; right: 16.66%;
  border-top: 1px dashed var(--border-md);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 1023px) { .steps::before { display: none; } }

.step {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
}
.step:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.step__num {
  font-family: var(--fm);
  font-size: 13px; font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
  line-height: 1;
}
.step h3 {
  font-size: 18px; font-weight: 600; line-height: 1.3;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.step p {
  font-size: 14.5px; line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

/* ─── USE CASES ──────────────────────────────────────────────────────── */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.usecase-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-top: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-5) var(--space-7);
  display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.usecase-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.usecase-card__tag {
  display: inline-block;
  font-family: var(--fm);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.usecase-card__title {
  font-family: var(--fh); font-size: 17px; font-weight: 600;
  color: var(--text); margin-bottom: var(--space-2);
  line-height: 1.3;
}
.usecase-card__body {
  font-size: 14px; color: var(--text-muted); line-height: 1.65;
  margin: 0;
}

/* ─── COMPARISON TABLE ───────────────────────────────────────────────── */
.compare-table {
  display: grid;
  grid-template-columns: 1.3fr 1.15fr 1fr 1fr;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-row { display: contents; }
.compare-cell {
  padding: 18px 22px;
  font-size: 14px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
  line-height: 1.5;
}
.compare-row:last-child .compare-cell { border-bottom: none; }

/* Light zebra — even data rows */
.compare-row:nth-of-type(even):not(.compare-row--head) .compare-cell:not(.compare-cell--us) {
  background: var(--bg-alt);
}

/* Row label */
.compare-cell--rowlabel {
  font-family: var(--fh); font-weight: 600; font-size: 14px;
}
.compare-rowlabel-text {
  font-family: var(--fm);
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-dim);
}

/* Header row */
.compare-cell--head {
  font-family: var(--fh); font-size: 14px; font-weight: 700;
  background: var(--surface);
  padding-top: 20px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border-md);
}
.compare-cell--rowlabel.compare-cell--head { background: var(--surface2); }
.compare-cell--head .compare-cell__title { font-size: 14px; font-weight: 700; color: var(--text); }
.compare-cell--head.compare-cell--us .compare-cell__title { color: var(--accent); }
.compare-cell--head.compare-cell--them .compare-cell__title { color: var(--text-muted); font-weight: 600; }

/* Our column */
.compare-cell--us {
  background: rgba(0,128,96,0.05);
  font-weight: 500;
  position: relative;
}
.compare-cell--us::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; bottom: 0;
  pointer-events: none;
  box-shadow: inset 1px 0 0 rgba(0,128,96,.2), inset -1px 0 0 rgba(0,128,96,.2);
}
.compare-row.compare-row--head .compare-cell--us {
  background: rgba(0,128,96,0.10);
  border-bottom: 2px solid var(--accent);
}
.compare-row:last-child .compare-cell--us::before {
  box-shadow: inset 1px 0 0 rgba(0,128,96,.2), inset -1px 0 0 rgba(0,128,96,.2),
              inset 0 -1px 0 rgba(0,128,96,.2);
}

/* "Best" badge */
.compare-cell__badge {
  display: inline-flex; align-items: center;
  font-family: var(--fm);
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: var(--accent); color: #fff;
  line-height: 1;
}

/* Them columns */
.compare-cell--them { color: var(--text-muted); }
.compare-cell__value { font-size: 13.5px; line-height: 1.45; }
.compare-cell--us .compare-cell__value { color: var(--text); }
.compare-cell--them .compare-cell__value { color: var(--text-muted); }

/* Check / Cross / Dash marks */
.compare-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%;
  font-weight: 700; font-size: 11px; line-height: 1;
  flex-shrink: 0;
}
.compare-mark--yes {
  background: var(--accent); color: #fff;
  box-shadow: 0 0 0 3px var(--accent-light);
}
.compare-mark--no {
  background: #fee2e2; color: #ef4444;
  box-shadow: 0 0 0 3px #fef2f2;
}
.compare-mark--mid {
  background: var(--surface2); color: var(--text-dim);
}
.compare-cell--head .compare-mark { display: none; }

/* ─── FOUNDER SECTION ────────────────────────────────────────────────── */
.founder-card {
  max-width: 720px; margin: 0 auto;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  text-align: left;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}
/* Decorative quote mark */
.founder-card__qmark {
  position: absolute;
  top: 16px; left: 22px;
  font-family: var(--fh), Georgia, serif;
  font-size: 80px; font-weight: 800; line-height: 1;
  color: var(--accent);
  opacity: 0.10;
  pointer-events: none;
}
/* Credentials chips */
.founder-card__credentials {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: var(--space-5);
  position: relative; z-index: 1;
}
.founder-card__chip {
  display: inline-flex; align-items: center;
  font-family: var(--fm);
  font-size: 10px; font-weight: 600; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.3;
}
.founder-card__chip--accent {
  color: var(--accent); background: var(--accent-light);
  border-color: rgba(0,128,96,.3);
}
/* Pull quote */
.founder-card__quote {
  margin: 0 0 var(--space-7);
  position: relative; z-index: 1;
}
.founder-card__pullquote {
  font-family: var(--fh);
  font-size: clamp(19px, 2.2vw, 24px);
  font-weight: 600; font-style: italic;
  line-height: 1.45; letter-spacing: -.01em;
  color: var(--text);
  margin: 0 0 var(--space-5);
}
.founder-card__quote p {
  font-size: 15px; line-height: 1.75;
  color: var(--text-muted); margin: 0 0 12px;
}
.founder-card__quote p:last-child { margin-bottom: 0; }
/* Author block at card bottom */
.founder-card__head {
  display: flex; align-items: center; gap: var(--space-3);
  margin-bottom: var(--space-7);
  position: relative; z-index: 1;
}
.founder-card__head--bottom {
  margin-bottom: 0; margin-top: var(--space-7);
  padding-top: var(--space-6);
  border-top: 1px solid var(--border);
}
/* Founder photo — real image */
.founder-card__photo {
  flex-shrink: 0;
  width: 52px; height: 52px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
}
.founder-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 50%;
}
/* Fallback monogram (hidden if img loads) */
.founder-card__photo-inner {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; border-radius: 50%;
  background: var(--surface2);
  font-family: var(--fh); font-size: 16px; font-weight: 700;
  color: var(--accent);
}
.founder-card__meta { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.founder-card__name-block { display: flex; flex-direction: column; line-height: 1.3; }
.founder-card__name {
  font-family: var(--fh); font-size: 16px; font-weight: 700;
  color: var(--text); letter-spacing: -.01em;
}
.founder-card__role {
  font-size: 13px; font-weight: 500; color: var(--text-muted); margin-top: 1px;
}
/* Glow div removed in light theme — leave it in PHP but hide it */
.founder-card__glow { display: none; }

/* ─── PRICING ────────────────────────────────────────────────────────── */
.billing-toggle {
  display: inline-flex; background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 4px; gap: 4px;
  margin-top: var(--space-6);
}
.tbtn {
  padding: 8px 20px; border-radius: var(--radius-pill);
  font-family: var(--fu); font-size: 13px; font-weight: 600;
  color: var(--text-muted); transition: all .2s;
  cursor: pointer; border: none; background: none; min-height: 36px;
}
.tbtn.active { background: #fff; color: var(--text); box-shadow: var(--shadow-xs); }
.save { font-size: 11px; color: var(--accent); font-weight: 700; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 20px;
  margin-top: var(--space-8);
}
.plan {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-7);
  position: relative;
  display: flex; flex-direction: column;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.plan:hover {
  transform: translateY(-2px);
  border-color: var(--border-md);
  box-shadow: var(--shadow-md);
}
/* Popular plan */
.plan--popular {
  transform: scale(1.03);
  border: 2px solid var(--accent);
  background: linear-gradient(180deg, rgba(0,128,96,.04), #fff);
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(0,128,96,.08), var(--shadow-md);
}
.plan--popular:hover {
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 0 0 4px rgba(0,128,96,.12), var(--shadow-lg);
}
.popular-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-family: var(--fm);
  font-size: 10px; font-weight: 700;
  padding: 5px 14px; border-radius: var(--radius-pill);
  white-space: nowrap; letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,128,96,.3);
}
.plan__name {
  font-family: var(--fh); font-size: 20px; font-weight: 600;
  color: var(--text); margin-bottom: var(--space-3);
}
.plan__price {
  font-family: var(--fh); font-size: 48px; font-weight: 700;
  line-height: 1; color: var(--text); margin-bottom: var(--space-1);
  animation: priceFade .3s ease; letter-spacing: -.02em;
}
.plan__price span { font-size: 16px; font-weight: 400; color: var(--text-muted); }
@keyframes priceFade {
  from { opacity: .5; transform: translateY(-3px); }
  to   { opacity: 1; transform: translateY(0); }
}
.plan__credits {
  font-family: var(--fm); font-size: 12px; font-weight: 600;
  color: var(--accent); margin-bottom: var(--space-6);
  letter-spacing: 0.04em;
}
.plan__features {
  margin-bottom: var(--space-7);
  display: flex; flex-direction: column; gap: 10px;
  flex: 1;
}
.plan__features li {
  font-size: 14px; color: var(--text-muted);
  line-height: 1.5; display: flex; align-items: flex-start; gap: 8px;
}
.plan__features li.off { opacity: .35; }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }
.pricing-note {
  text-align: center; margin-top: var(--space-7);
  font-size: 13px; color: var(--text-dim);
}

/* ─── TRUST SECTION ──────────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.trust-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.trust-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}
.trust-card__icon {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); background: var(--accent-light);
  font-size: 18px; margin-bottom: var(--space-3);
}
.trust-card__title {
  font-family: var(--fh); font-size: 15px; font-weight: 600;
  color: var(--text); margin-bottom: var(--space-1);
}
.trust-card__desc {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.55; margin: 0;
}

/* ─── LANGUAGES ──────────────────────────────────────────────────────── */
.lang-grid {
  display: flex; flex-wrap: wrap;
  gap: 10px; justify-content: center;
  max-width: 680px; margin: 0 auto;
}
.lang-chip {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  transition: border-color .2s, background .2s, color .2s, transform .2s;
}
.lang-chip:hover {
  border-color: var(--accent); background: var(--accent-light);
  color: var(--accent); transform: translateY(-1px);
}

/* ─── TESTIMONIALS (empty state) ─────────────────────────────────────── */
.testimonials-empty {
  max-width: 600px; margin: 0 auto; text-align: center;
  padding: var(--space-8);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
}
.testimonials-empty p {
  font-size: 15px; color: var(--text-muted);
  margin: 0 auto var(--space-6); max-width: 440px; line-height: 1.7;
}

/* ─── FAQ ────────────────────────────────────────────────────────────── */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-5) 0;
  font-family: var(--fu); font-size: 16px; font-weight: 500;
  color: var(--text); text-align: left; gap: 16px;
  cursor: pointer; background: none; border: none;
  transition: color .2s; min-height: 44px;
}
.faq-q:hover { color: var(--accent); }
/* CSS chevron arrow */
.faq-arrow {
  flex-shrink: 0; width: 14px; height: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-dim); transition: transform .3s ease, color .2s ease;
  font-size: 0; line-height: 1;
}
.faq-arrow::before {
  content: '';
  display: block; width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p {
  padding-top: var(--space-2); padding-bottom: var(--space-5);
  font-size: 15px; line-height: 1.7; color: var(--text-muted);
}
.faq-cta { text-align: center; margin-top: var(--space-7); }
.faq-cta a {
  color: var(--accent); font-weight: 600; font-size: 15px;
  transition: opacity .2s;
}
.faq-cta a:hover { opacity: .75; }

/* ─── CTA STRIP ──────────────────────────────────────────────────────── */
.cta-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: var(--section-py) 0;
}
.cta-strip__inner { text-align: center; }
.cta-strip__inner h2 { margin-bottom: var(--space-5); }
.cta-strip__sub {
  max-width: 520px; margin: 0 auto var(--space-7);
  font-size: 16px; color: var(--text-muted); line-height: 1.65;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid  { grid-template-columns: repeat(2, 1fr); }
  .trust-grid     { grid-template-columns: repeat(2, 1fr); }
  .usecase-grid   { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px; margin-left: auto; margin-right: auto;
  }
  .plan--popular { transform: none; }
  .plan--popular:hover { transform: translateY(-2px); }
  .screenshots-grid--featured { gap: 16px; }
  .compare-table { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .compare-cell { padding: 15px 18px; font-size: 13.5px; gap: 8px; }
  .compare-cell--head { padding: 17px 18px; }
  .cta-strip { padding: var(--section-py-tablet) 0; }
}

@media (max-width: 768px) {
  .hero { padding-top: calc(64px + 40px); padding-bottom: var(--space-10); }
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 320px; }

  .steps            { grid-template-columns: 1fr; }
  .features-grid    { grid-template-columns: 1fr; }
  .trust-grid       { grid-template-columns: 1fr; }
  .usecase-grid     { grid-template-columns: 1fr; }

  .screenshots-grid--featured { grid-template-columns: 1fr; gap: var(--space-4); }
  .screenshot-frame__img { padding: 12px 12px 0; }
  .screenshot-frame figcaption, .screenshot-frame__cap { font-size: 12px; padding: 10px 14px 12px; }
  .screenshot-frame__bar { padding: 9px 12px; }
  .screenshot-frame__bar > .url { font-size: 10px; margin-right: 14px; }

  /* Comparison → stacked cards on mobile */
  .compare-section .compare-table {
    display: flex; flex-direction: column; gap: 12px;
    background: transparent; border: none; border-radius: 0;
    overflow: visible; box-shadow: none;
  }
  .compare-row {
    display: block;
    background: var(--card-bg); border: 1px solid var(--border);
    border-radius: var(--radius-md); overflow: hidden;
  }
  .compare-row.compare-row--head { display: none; }
  .compare-row .compare-cell {
    display: flex; align-items: center; width: 100%;
    padding: 11px 16px; border-bottom: 1px solid var(--border);
    font-size: 13.5px; gap: 10px;
  }
  .compare-row .compare-cell:last-child { border-bottom: none; }
  .compare-row .compare-cell--rowlabel {
    font-family: var(--fm); font-size: 10px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.12em;
    color: var(--accent); background: var(--accent-light);
    padding: 10px 16px; border-bottom: 1px solid rgba(0,128,96,.15);
  }
  .compare-row .compare-cell--us {
    background: rgba(0,128,96,.06); font-weight: 600;
    border-bottom: 1px solid rgba(0,128,96,.2);
  }
  .compare-row .compare-cell--us::before { display: none; }
  .compare-row .compare-cell--us::after {
    content: 'MetaGenius AI';
    margin-left: auto; flex-shrink: 0; align-self: center;
    font-family: var(--fm); font-size: 9px; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 3px 8px; border-radius: var(--radius-pill);
    background: var(--accent); color: #fff; line-height: 1;
  }
  .compare-row .compare-cell--them { color: var(--text-muted); font-size: 13px; }
  .compare-row .compare-cell--them::after {
    content: attr(data-col); margin-left: auto; flex-shrink: 0;
    font-family: var(--fm); font-size: 9px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-dim);
  }
  .compare-row .compare-cell--us .compare-cell__value { flex: 1; }
  .compare-row .compare-cell--them .compare-cell__value { flex: 1; }

  .founder-card { padding: var(--space-6); }
  .founder-card__pullquote { font-size: 18px; }
  .founder-card__qmark { font-size: 60px; top: 12px; left: 18px; }

  .cta-strip { padding: var(--section-py-mobile) 0; }
}

@media (max-width: 480px) {
  .hero__proof { gap: 8px; }
  .proof-item { padding: 6px 12px; }
  .proof-item__text { font-size: 12px; }
  .founder-card { padding: 24px 20px; }
  .founder-card__pullquote { font-size: 17px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 32px; }
  .hero__sub { font-size: 15px; }
  .founder-card { padding: 20px 16px; }
}
