:root {
  /* theme vars injected above via ThemeHelper::cssVars() */
  --blue-deep: var(--hero-from);
  --blue-mid:  var(--accent);
  --blue-sky:  var(--sky);
  --blue-soft: var(--soft);
  --blue-pale: var(--pale);
  --bg:        var(--bg-color);
  --bg2:       var(--soft);
  --border:    var(--border-color);

  /* neutral vars */
  --white:     #FFFFFF;
  --navy:      #0F172A;
  --slate:     #1E293B;
  --muted:     #64748B;
  --green:     #10B981;
  --coral:     #EF4444;
  --amber:     #F59E0B;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,.09);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--slate);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ── HERO ───────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, var(--hero-from) 0%, var(--hero-to) 50%, var(--hero-from) 100%);
  padding: 96px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 120px;
  background: var(--bg);
  border-radius: 50%;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #BAE6FD;
  margin-bottom: 22px;
  width: fit-content;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38BDF8;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--h1-span);
}

.hero-sub {
  font-size: 18px;
  color: var(--trust-txt);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-hero-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  background: #fff;
  border: none;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,.2);
}

.btn-hero-secondary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  cursor: pointer;
  transition: all .2s;
}

.btn-hero-secondary:hover {
  background: rgba(255,255,255,.2);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust-text {
  font-size: 13px;
  color: var(--trust-txt);
}

.hero-trust-stars {
  display: flex;
  gap: 2px;
}

.hero-trust-stars span {
  color: #FCD34D;
  font-size: 14px;
}

/* ── PHONE MOCKUP ─────────────────────────────────── */
.phone-mockup {
  background: #1E293B;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 32px 80px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.06);
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  position: relative;
}

.phone-notch {
  width: 100px;
  height: 26px;
  background: #0F172A;
  border-radius: 13px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.phone-cam {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1E293B;
}

.phone-screen {
  background: #F0F7FF;
  border-radius: 26px;
  overflow: hidden;
}

.mock-card {
  background: #fff;
}

.mock-header {
  padding: 14px 16px;
  border-bottom: 1px solid #F0F0F0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mock-logo-sq {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: #EFF6FF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.mock-biz-name {
  font-size: 13px;
  font-weight: 700;
  color: #1E293B;
}

.mock-visit {
  font-size: 11px;
  color: #94A3B8;
  margin-top: 2px;
}

.mock-body {
  padding: 14px 16px;
}

.mock-q {
  font-size: 12px;
  font-weight: 700;
  color: #1E293B;
  text-align: center;
  margin-bottom: 2px;
}

.mock-qs {
  font-size: 10px;
  color: #94A3B8;
  text-align: center;
  margin-bottom: 12px;
}

.mock-ems {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mock-em {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  border: 2px solid #F0F0F0;
  background: #FAFAFA;
}

.mock-em.active {
  border-color: #10B981;
  background: #ECFDF5;
  transform: translateX(3px);
}

.mock-em-emoji {
  font-size: 18px;
  flex-shrink: 0;
}

.mock-em-lbl {
  font-size: 11px;
  font-weight: 700;
  flex: 1;
  color: #1E293B;
}

.mock-em-sub {
  font-size: 9px;
  color: #94A3B8;
  margin-top: 1px;
}

.mock-em.active .mock-em-lbl {
  color: #065F46;
}

.mock-em.active .mock-em-sub {
  color: #6EE7B7;
}

.mock-em-arr {
  font-size: 12px;
  color: #D1D5DB;
}

.mock-em.active .mock-em-arr {
  color: #10B981;
}

.mock-footer {
  padding: 8px 16px;
  border-top: 1px solid #F5F5F5;
  text-align: center;
  font-size: 9px;
  color: #CBD5E1;
}

.phone-pill,
.phone-pill2 {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  padding: 8px 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.phone-pill {
  right: -30px;
  top: 80px;
  color: #065F46;
}

.phone-pill2 {
  left: -36px;
  bottom: 100px;
  color: var(--accent);
}

.phone-pill-dot,
.phone-pill2-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.phone-pill-dot {
  background: #10B981;
}

.phone-pill2-dot {
  background: var(--accent);
}

/* ── LOGOS BAR ────────────────────────────────────── */
.logos-bar {
  padding: 40px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.logos-bar-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.logos-bar p {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logo-item-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.logo-item-brand:hover {
  opacity: 1;
}

.logo-item-brand svg {
  display: block;
  flex-shrink: 0;
}

.logo-item-brand span {
  font-size: 13px;
  font-weight: 500;
  color: #64748B;
  white-space: nowrap;
}

/* ── STATS ────────────────────────────────────────── */
.stats-strip {
  background: var(--accent);
  padding: 48px 24px;
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 4px;
}

.stat-number span {
  color: var(--h1-span);
}

.stat-label {
  font-size: 13px;
  color: var(--trust-txt);
  font-weight: 500;
}

/* ── SHARED SECTION STYLES ────────────────────────── */
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ── PAIN SECTION ─────────────────────────────────── */
.pain {
  padding: 96px 24px;
  background: var(--bg);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pain-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #E2E8F0);
  border-radius: var(--radius-lg, 16px);
  padding: 32px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg, 0 8px 32px rgba(0,0,0,0.08));
}

.pain-card.red {
  border-top: 4px solid var(--coral, #DC2626);
}

.pain-card.amber {
  border-top: 4px solid var(--amber, #D97706);
}

.pain-card.blue {
  border-top: 4px solid var(--sky, #2563EB);
}

.pain-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pain-icon-wrap.red {
  background: #FEF2F2;
}

.pain-icon-wrap.amber {
  background: #FFFBEB;
}

.pain-icon-wrap.blue {
  background: #EFF6FF;
}

.pain-card-body {
  flex: 1;
}

.pain-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy, #0F172A);
  margin: 0 0 10px;
  line-height: 1.35;
}

.pain-text {
  font-size: 14px;
  color: var(--muted, #475569);
  line-height: 1.7;
  margin: 0;
}

.pain-stat-wrap {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: auto;
}

.pain-stat-wrap.red {
  background: #FEF2F2;
  color: #DC2626;
}

.pain-stat-wrap.amber {
  background: #FFFBEB;
  color: #B45309;
}

.pain-stat-wrap.blue {
  background: #EFF6FF;
  color: #2563EB;
}

/* ── COMMUNITY QUESTIONS ──────────────────────────── */
.community-qs {
  margin-top: 60px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  padding: 40px 36px;
}

.community-qs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.community-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 16px 18px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.community-q:hover {
  border-color: #2563EB;
  box-shadow: 0 2px 12px rgba(37,99,235,0.08);
}

.cq-icon {
  width: 34px;
  height: 34px;
  background: #EFF6FF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.community-q p {
  font-size: 14px;
  color: #334155;
  margin: 0;
  line-height: 1.55;
  padding-top: 6px;
}

.community-qs-answer {
  text-align: center;
  font-size: 15px;
  color: #475569;
  margin: 0;
}

.community-qs-answer strong {
  color: #0F172A;
}

/* ── HOW IT WORKS ─────────────────────────────────── */
.how {
  padding: 96px 24px;
  background: var(--white);
}

.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.step-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.how-visual {
  background: var(--pale);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.flow-row {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  box-shadow: var(--shadow-sm);
}

.flow-row.highlight {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.flow-row.green {
  background: #ECFDF5;
  border-color: #A7F3D0;
  color: #065F46;
}

.flow-row.red {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #991B1B;
}

.flow-icon {
  font-size: 20px;
  flex-shrink: 0;
}

.flow-arrow {
  text-align: center;
  font-size: 16px;
  color: var(--border);
}

.flow-badge {
  margin-left: auto;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 20px;
  font-weight: 700;
}

.flow-badge.green {
  background: #D1FAE5;
  color: #065F46;
}

.flow-badge.red {
  background: #FEE2E2;
  color: #991B1B;
}

.flow-badge.blue {
  background: var(--soft);
  color: var(--accent);
}

/* ── FEATURES ─────────────────────────────────────── */
.features {
  padding: 96px 24px;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #E2E8F0);
  border-radius: var(--radius-lg, 16px);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md, 0 8px 28px rgba(0,0,0,0.07));
}

.feat-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm, 13px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 22px;
}

.feat-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy, #0F172A);
  margin: 0;
  line-height: 1.35;
}

.feat-text {
  font-size: 14px;
  color: var(--muted, #475569);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.feat-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: #2563EB;
  background: #EFF6FF;
  border-radius: 20px;
  padding: 4px 12px;
  align-self: flex-start;
  margin-top: auto;
}

/* ── PRICING PREVIEW ───────────────────────────────── */
.pricing-preview {
  padding: 80px 0 64px;
  background: var(--pale, #F8FAFC);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border: 0.5px solid var(--border, #E2E8F0);
  border-radius: 16px;
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: var(--border-hover, #CBD5E1);
}

.pricing-card.featured {
  border: 2px solid #3B82F6;
  border-radius: 16px;
}

.pricing-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #EFF6FF;
  color: #1D4ED8;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.pricing-plan-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--muted, #64748B);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.pricing-amount {
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
  color: var(--text, #0F172A);
}

.pricing-period {
  font-size: 14px;
  color: var(--muted, #94A3B8);
}

.pricing-desc {
  font-size: 13px;
  color: var(--muted, #64748B);
  line-height: 1.55;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--border, #E2E8F0);
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  margin-bottom: 28px;
  padding: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text, #1E293B);
  line-height: 1.45;
}

.pricing-features li svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-cta-primary,
.pricing-cta-secondary {
  display: block;
  width: 100%;
  padding: 12px 0;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  line-height: 1;
}

.pricing-cta-primary {
  background: var(--text, #0F172A);
  color: #fff;
  border: none;
  transition: opacity 0.15s;
}

.pricing-cta-primary:hover {
  opacity: 0.82;
}

.pricing-cta-secondary {
  background: transparent;
  color: var(--text, #1E293B);
  border: 0.5px solid var(--border, #CBD5E1);
  transition: background 0.15s, border-color 0.15s;
}

.pricing-cta-secondary:hover {
  background: var(--pale, #F1F5F9);
  border-color: var(--border-hover, #94A3B8);
}

.pricing-note {
  text-align: center;
  font-size: 12.5px;
  color: var(--muted, #94A3B8);
  margin-top: 24px;
}

/* ── COMPARISON TABLE ─────────────────────────────── */
.comparison {
  padding: 80px 0 64px;
  background: #fff;
}

.comparison-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 0.5px solid var(--border, #E2E8F0);
  -webkit-overflow-scrolling: touch;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  table-layout: fixed;
  min-width: 580px;
}

.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  text-align: center;
  border-bottom: 0.5px solid var(--border, #E2E8F0);
  vertical-align: middle;
}

.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  width: 34%;
  font-size: 13.5px;
  color: var(--text, #1E293B);
}

.comparison-table th {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted, #64748B);
  background: var(--pale, #F8FAFC);
  border-bottom: 0.5px solid var(--border, #CBD5E1);
  white-space: nowrap;
}

.comparison-table th.col-us {
  background: #EFF6FF;
}

.comparison-table td.col-us {
  background: #F7FBFF;
}

.col-us-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #1D4ED8;
  line-height: 1.3;
}

.col-us-price {
  display: block;
  font-size: 11px;
  color: #3B82F6;
  margin-top: 3px;
  font-weight: 400;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: var(--pale, #F8FAFC);
}

.comparison-table tbody tr:hover td.col-us {
  background: #EEF4FF;
}

.comp-yes,
.comp-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.comp-no {
  opacity: 0.45;
}

/* ── Comparison callout cards (reward + social) ───────────── */
.comp-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.comp-callout-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white, #fff);
  border: 1px solid var(--border, #E2E8F0);
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
}

.comp-callout-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.comp-callout-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy, #0F172A);
  margin-bottom: 6px;
}

.comp-callout-text {
  font-size: 0.84rem;
  color: var(--muted, #64748B);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .comp-callouts {
    grid-template-columns: 1fr;
  }
}

.price-cell {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted, #64748B);
}

.price-cell.ours {
  color: #16A34A;
  font-weight: 600;
}

.link-subtle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: #2563EB;
  text-decoration: none;
  padding: 9px 18px;
  border: 0.5px solid #BFDBFE;
  border-radius: 8px;
  transition: background 0.15s, border-color 0.15s;
  font-weight: 500;
}

.link-subtle:hover {
  background: #EFF6FF;
  border-color: #93C5FD;
}

/* ── REGION TRUST TAGS ────────────────────────────── */
.region-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 0.5px solid var(--border, #E2E8F0);
}

.region-trust-label {
  font-size: 13px;
  color: var(--muted, #64748B);
  font-weight: 500;
  margin-right: 4px;
}

.region-tag {
  display: inline-block;
  font-size: 12.5px;
  color: #1E40AF;
  background: #EFF6FF;
  border: 0.5px solid #BFDBFE;
  border-radius: 20px;
  padding: 4px 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* ── FAQ ──────────────────────────────────────────── */
.faq {
  padding: 96px 24px;
  background: var(--bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white, #fff);
  border: 1px solid var(--border, #E2E8F0);
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.faq-item.open {
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  border-color: var(--sky, #2563EB);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy, #0F172A);
  line-height: 1.4;
  transition: background 0.15s ease;
}

.faq-trigger:hover {
  background: var(--bg, #F8FAFC);
}

.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--muted, #64748B);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--sky, #2563EB);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 24px;
}

.faq-item.open .faq-body {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-body p {
  font-size: 14px;
  color: var(--muted, #475569);
  line-height: 1.75;
  margin: 0;
  border-top: 1px solid var(--border, #E2E8F0);
  padding-top: 16px;
}

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials {
  padding: 96px 24px;
  background: var(--white, #fff);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testi-card {
  background: var(--bg, #F8FAFC);
  border: 1px solid var(--border, #E2E8F0);
  border-radius: var(--radius-lg, 16px);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.07);
}

.testi-quote-icon {
  margin-bottom: 2px;
}

.testi-stars {
  display: flex;
  gap: 3px;
}

.testi-text {
  font-size: 14px;
  color: var(--slate, #334155);
  line-height: 1.75;
  margin: 0;
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border, #E2E8F0);
  margin-top: auto;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testi-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy, #0F172A);
  margin: 0;
}

.testi-role {
  font-size: 12px;
  color: var(--muted, #64748B);
  margin: 0;
  margin-top: 2px;
}

/* ── GEO TRUST ────────────────────────────────────── */
.geo-trust {
  padding: 96px 24px;
  background: var(--bg, #F8FAFC);
}

.geo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.geo-card {
  background: var(--white, #fff);
  border: 1px solid var(--border, #E2E8F0);
  border-radius: var(--radius-lg, 16px);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.geo-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.07);
  border-color: var(--sky, #2563EB);
}

.geo-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.geo-card-body {
  flex: 1;
}

.geo-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy, #0F172A);
  margin: 0 0 8px;
  line-height: 1.3;
}

.geo-card p {
  font-size: 13px;
  color: var(--muted, #475569);
  line-height: 1.65;
  margin: 0;
}

/* ── CTA BAND ─────────────────────────────────────── */
.cta-band {
  padding: 80px 24px;
  background: var(--stats-bg);
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.cta-band p {
  font-size: 18px;
  color: var(--trust-txt);
  margin-bottom: 36px;
}

.cta-band-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── UTILS ────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.mb-header {
  margin-bottom: 56px;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .phone-mockup {
    max-width: 280px;
  }

  .phone-pill,
  .phone-pill2 {
    display: none;
  }

  .pain-grid,
  .features-grid,
  .testi-grid,
  .geo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .community-qs-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }

  .how-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing-card.featured {
    order: -1;
  }
}

@media (max-width: 640px) {
  .pain-grid,
  .features-grid,
  .testi-grid,
  .geo-grid {
    grid-template-columns: 1fr;
  }

  .community-qs-grid {
    grid-template-columns: 1fr;
  }

  .community-qs {
    padding: 28px 20px;
  }

  .faq-trigger {
    font-size: 14px;
    padding: 16px 18px;
  }

  .comparison-table th:first-child,
  .comparison-table td:first-child {
    width: 44%;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px 12px;
    font-size: 12.5px;
  }

  .col-us-label {
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}