/* ============================================================
   inner.css  
   ============================================================ */

/* ── Design tokens ────────────────────────────────────────── */
:root {
  --color-brand:        #1A73E8;
  --color-brand-dark:   #1558B0;
  --color-brand-light:  #EBF3FD;
  --color-success:      #16A34A;
  --color-danger:       #DC2626;
  --color-warning:      #D97706;
  --color-text:         #111827;
  --color-text-muted:   #6B7280;
  --color-text-light:   #9CA3AF;
  --color-border:       #E5E7EB;
  --color-border-light: #F3F4F6;
  --color-bg:           #FFFFFF;
  --color-bg-alt:       #F9FAFB;
  --color-bg-dark:      #111827;

  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-xs:  0 1px 2px rgba(0,0,0,.05);
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:  0 4px 12px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  --shadow-lg:  0 10px 30px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.05);
  --shadow-xl:  0 20px 50px rgba(0,0,0,.12);

  --max-width:  1160px;
  --section-py: 80px;
  --inner-py:   64px;
}

/* ── Reset / base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

a { color: var(--color-brand); text-decoration: none; }
a:hover { text-decoration: none; }
ul, ol { list-style: none; }
/*img, svg { display: block; }*/
button { cursor: pointer; font-family: inherit; border: none; background: none; }
pre { font-family: inherit; white-space: pre-wrap; }

/* ── Layout helpers ───────────────────────────────────────── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.content-section {
  padding: var(--inner-py) 0;
}

.alt-bg {
  background: var(--color-bg-alt);
}

.text-center { text-align: center; }

.mb-header {
  margin-bottom: 48px;
}

.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
/* ── section image ───────────────────────────────── */
.section-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 600px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
}
.section-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* ── Typography ───────────────────────────────────────────── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 20px;
  letter-spacing: 0.08em;
  background-color: aliceblue;
  padding: 3px 12px 3px 12px;
  text-transform: uppercase;
  color: var(--color-brand);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  max-width: 640px;
  margin-bottom: 0;
}

.body-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.body-text:last-child { margin-bottom: 0; }

.subsection-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 14px;
}

/* ── Breadcrumb ───────────────────────────────────────────── 
.breadcrumb-bar {
  background: linear-gradient(135deg, #F0F7FF 0%, #FAFBFF 90%);
  padding: 12px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: var(--color-text-muted);
}

.breadcrumb-list li { display: flex; align-items: center; gap: 6px; }
.breadcrumb-list a {  color: var(--color-brand); }
.breadcrumb-list a:hover { color: var(--color-brand); text-decoration: none; }
.breadcrumb-list li[aria-current="page"] { color: var(--color-brand); font-weight: 500; }*/

/* ── Buttons ──────────────────────────────────────────────── */
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-brand);
  color: #fff;
  padding: 13px 24px;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 2px 8px rgba(26,115,232,.25);
  white-space: nowrap;
}
.btn-hero-primary:hover {
  background: var(--color-brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(26,115,232,.35);
  text-decoration: none;
  color: #fff;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--color-text);
  padding: 13px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color .18s, background .18s, transform .15s;
  white-space: nowrap;
}
.btn-hero-secondary:hover {
  border-color: var(--color-brand);
  color: var(--color-brand);
  background: var(--color-brand-light);
  transform: translateY(-1px);
  text-decoration: none;
}

/* ── Page hero ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #F0F7FF 0%, #FAFBFF 60%, #F5F9FF 100%);
  border-bottom: 1px solid var(--color-border);
  padding: 64px 0 56px;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.page-hero-content h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.hero-trust-stars {
  color: #FBBF24;
  font-size: 1rem;
  letter-spacing: 1px;
}

.hero-trust-text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.page-hero-stats {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
    gap: 16px;
}

.hero-stat-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stat-number {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1;
  white-space: nowrap;
}

.hero-stat-number span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-brand);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

/* ── Pain grid ────────────────────────────────────────────── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
}

.pain-card.red   { border-top: 3px solid var(--color-danger); }
.pain-card.amber { border-top: 3px solid var(--color-warning); }
.pain-card.blue  { border-top: 3px solid var(--color-brand); }

.pain-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  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 { display: flex; flex-direction: column; gap: 8px; }
.pain-title { font-size: 1rem; font-weight: 700; color: var(--color-text); }
.pain-text  { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.6; }

/* ── Channel grid ─────────────────────────────────────────── */
.channel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.channel-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow .2s, transform .2s;
  box-shadow: var(--shadow-sm);
}
.channel-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.channel-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.channel-title { font-size: 0.95rem; font-weight: 700; color: var(--color-text); }
.channel-text  { font-size: 0.875rem; color: var(--color-text-muted); line-height: 1.6; flex: 1; }
.channel-link  {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.83rem; font-weight: 500; color: var(--color-brand);
  margin-top: auto;
}
.channel-link:hover { text-decoration: none; opacity: .8; }

/* ── Channel compare grid ─────────────────────────────────── */
.channel-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.channel-compare-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-sm);
}

.channel-compare-top {
  display: flex; align-items: center; gap: 12px;
}

.channel-compare-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.channel-compare-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.channel-compare-rate {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--color-text);
}

.channel-compare-rate span {
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--color-text-muted);
  display: block;
}

.channel-compare-best {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.channel-compare-tip {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  flex: 1;
}

/* ── Info card stack ──────────────────────────────────────── */
.info-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  box-shadow: var(--shadow-xs);
}

.info-card-icon {
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.info-card-title { font-size: 0.93rem; font-weight: 700; color: var(--color-text); margin-bottom: 4px; }
.info-card-text  { font-size: 0.86rem; color: var(--color-text-muted); line-height: 1.55; }

/* ── Dashboard preview ────────────────────────────────────── */
.dashboard-preview { }

.dash-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.dash-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}

.dash-card-title  { font-size: 0.9rem; font-weight: 700; color: var(--color-text); }
.dash-card-period { font-size: 0.78rem; color: var(--color-text-muted); }

.dash-stats-row {
  display: flex;
  padding: 20px;
  gap: 24px;
  border-bottom: 1px solid var(--color-border);
}

.dash-stat { flex: 1; text-align: center; }
.dash-stat-num { font-size: 1.6rem; font-weight: 800; color: var(--color-text); line-height: 1; }
.dash-stat-lbl  { font-size: 0.75rem; color: var(--color-text-muted); margin-top: 4px; }

.dash-review-list { padding: 12px 0; }

.dash-review-item {
  padding: 12px 20px;
  border-bottom: 1px solid var(--color-border-light);
}
.dash-review-item:last-child { border-bottom: none; }

.dash-review-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 4px;
}

.dash-review-name     { font-size: 0.82rem; font-weight: 700; color: var(--color-text); }
.dash-review-stars    { display: flex; gap: 1px; }
.dash-review-platform { font-size: 0.75rem; color: var(--color-text-muted); }
.dash-review-time     { font-size: 0.75rem; color: var(--color-text-light); margin-left: auto; }
.dash-review-text     { font-size: 0.82rem; color: var(--color-text-muted); font-style: italic; }

/* ── Response cards ───────────────────────────────────────── */
.response-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.response-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.response-card.positive { border-top: 3px solid var(--color-success); }
.response-card.negative { border-top: 3px solid var(--color-danger); }

.response-card-header {
  display: flex; align-items: center; gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.response-tips {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
}
.response-tips li {
  display: flex; align-items: flex-start;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--color-border-light);
  line-height: 1.5;
}
.response-tips li:last-child { border-bottom: none; }
.response-tips li::before {
  content: '·';
  color: var(--color-text-light);
  margin-right: 8px;
  flex-shrink: 0;
}

.response-example {
  padding: 16px 20px;
  background: var(--color-bg-alt);
}
.response-example-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.response-example-text {
  font-size: 0.875rem;
  color: var(--color-text);
  line-height: 1.6;
  font-style: italic;
}

/* ── Smart routing callout ────────────────────────────────── */
.smart-routing-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--color-brand-light);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 32px;
}

.smart-routing-callout-icon {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.smart-routing-callout-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.smart-routing-callout-text {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ── Mistakes grid ────────────────────────────────────────── */
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mistake-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-xs);
}

.mistake-num {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 10px;
}

.mistake-title { font-size: 0.93rem; font-weight: 700; color: var(--color-text); margin-bottom: 8px; }
.mistake-text  { font-size: 0.86rem; color: var(--color-text-muted); line-height: 1.6; }

/* ── Steps ────────────────────────────────────────────────── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  padding-bottom: 32px;
}

.step::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.step:last-child { padding-bottom: 0; }
.step:last-child::before { display: none; }

.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--color-brand);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step-content { padding-top: 8px; }
.step-title { font-size: 1rem; font-weight: 700; color: var(--color-text); margin-bottom: 6px; }
.step-text  { font-size: 0.9rem; color: var(--color-text-muted); line-height: 1.65; }

/* ── Features grid ────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feat-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .2s, transform .2s;
}
.feat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.feat-icon-wrap {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.feat-title { font-size: 0.93rem; font-weight: 700; color: var(--color-text); }
.feat-text  { font-size: 0.86rem; color: var(--color-text-muted); line-height: 1.6; flex: 1; }

.feat-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--color-brand-light);
  color: var(--color-brand);
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-top: auto;
  align-self: flex-start;
}

.feat-tag-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-brand);
  margin-top: auto;
}
.feat-tag-link:hover { text-decoration: none; opacity: .8; }

/* ── Platform grid ────────────────────────────────────────── */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.platform-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  text-decoration: none;
  transition: box-shadow .2s, border-color .2s, transform .15s;
  color: inherit;
  box-shadow: var(--shadow-xs);
}
.platform-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-brand);
  transform: translateY(-2px);
  text-decoration: none;
}

.platform-card-featured {
  border-color: var(--color-brand);
  background: var(--color-brand-light);
}

.platform-card-icon { flex-shrink: 0; }
.platform-card-body { flex: 1; min-width: 0; }
.platform-card-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.platform-card-desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}
.platform-card-arrow { flex-shrink: 0; color: var(--color-text-muted); }

.platform-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  background: var(--color-brand);
  color: #fff;
  padding: 1px 7px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.platform-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-pill {
  display: inline-block;
  font-size: 0.83rem;
  font-weight: 500;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

/* ── Check list ───────────────────────────────────────────── */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.check-list li svg { flex-shrink: 0; margin-top: 2px; }

/* ── Flow visual (simple) ─────────────────────────────────── */
.flow-visual-simple {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.flow-step-simple {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flow-step-icon-wrap {
  width: 42px; height: 42px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.flow-step-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.flow-step-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.flow-step-sub {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.flow-step-connector {
  width: 2px;
  height: 20px;
  background: var(--color-border);
  margin-left: 20px;
}

/* ── Industry examples grid ───────────────────────────────── */
.industry-examples-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-example-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-xs);
}

.industry-example-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 4px;
}

.industry-example-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.industry-example-name { font-size: 0.93rem; font-weight: 700; color: var(--color-text); }

.industry-example-row {
  display: flex; flex-direction: column; gap: 2px;
}

.industry-example-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-light);
}

.industry-example-value {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--color-text);
}

.industry-example-tip {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}

/* ── Related links grid ───────────────────────────────────── */
.related-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.related-link-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-decoration: none;
  transition: box-shadow .2s, border-color .2s;
  box-shadow: var(--shadow-xs);
}
.related-link-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-brand);
  text-decoration: none;
}

.related-link-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.related-link-text {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  flex: 1;
}

.related-link-arrow {
  display: flex;
  color: var(--color-brand);
  margin-top: auto;
}

/* ── Section CTA row ──────────────────────────────────────── */
.section-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

/* ── Problem compare ──────────────────────────────────────── */
.problem-compare-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
}

.problem-compare-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.problem-compare-card.bad  { border-top: 3px solid var(--color-danger); }
.problem-compare-card.good { border-top: 3px solid var(--color-success); }

.problem-compare-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

.problem-compare-list {
  display: flex; flex-direction: column; gap: 10px;
}

.problem-compare-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.problem-compare-divider {
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text-light);
  flex-shrink: 0;
}

/* ── Use case grid ────────────────────────────────────────── */
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.use-case-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xs);
}

.use-case-header {
  display: flex; align-items: center; gap: 10px;
}

.use-case-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
}

.use-case-business {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
}

.use-case-row { display: flex; flex-direction: column; gap: 3px; }
.use-case-row.result { background: var(--color-bg-alt); border-radius: var(--radius-sm); padding: 10px 12px; }

.use-case-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-light);
}

.use-case-label.result { color: var(--color-success); }

.use-case-text {
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ── Method grid ──────────────────────────────────────────── */
.method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.method-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xs);
}

.method-card-header {
  display: flex; align-items: flex-start; gap: 12px;
}

.method-rank {
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 2px solid currentColor;
}

.method-title { font-size: 0.93rem; font-weight: 700; color: var(--color-text); margin-bottom: 2px; }
.method-rate  { font-size: 0.8rem; font-weight: 500; color: var(--color-text-muted); }
.method-row   { display: flex; flex-direction: column; gap: 3px; }
.method-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--color-text-light); }
.method-text  { font-size: 0.86rem; color: var(--color-text-muted); line-height: 1.6; }

/* ── Timing grid ──────────────────────────────────────────── */
.timing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.timing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-xs);
}

.timing-window {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
}

.timing-rate {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  align-self: flex-start;
}

.timing-desc {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ── Template grid ────────────────────────────────────────── */
.template-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.template-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.template-card-header {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-alt);
}

.template-channel-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 2px solid;
  flex-shrink: 0;
}

.template-channel-name {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--color-text);
}

.template-text {
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  padding: 16px;
  white-space: pre-wrap;
}

/* ── Callout card ─────────────────────────────────────────── */
.callout-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-brand);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.callout-card-icon {
  width: 52px; height: 52px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.callout-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.4;
}

.callout-card-text {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

/* ── Comparison table ─────────────────────────────────────── */
.comparison { padding: var(--inner-py) 0; }

.comparison-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 600px;
}

.comparison-table thead tr {
  background: var(--color-bg-alt);
  border-bottom: 2px solid var(--color-border);
}

.comparison-table th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.comparison-table th.col-us {
  background: var(--color-brand-light);
  color: var(--color-brand);
}

.col-us-label { display: block; font-size: 0.85rem; font-weight: 800; color: var(--color-brand); text-transform: none; letter-spacing: 0; }
.col-us-price { display: block; font-size: 0.75rem; font-weight: 400; color: var(--color-brand); margin-top: 2px; text-transform: none; letter-spacing: 0; }

.comparison-table tbody tr {
  border-bottom: 1px solid var(--color-border);
  transition: background .12s;
}
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody tr:hover { background: var(--color-bg-alt); }

.comparison-table td {
  padding: 13px 16px;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}

.comparison-table td.col-us { background: rgba(235, 243, 253, .35); }
.comparison-table td strong { color: var(--color-text); }

.comp-yes, .comp-no {
  display: inline-flex; align-items: center;
}

.price-cell {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--color-text);
}

.price-cell.ours { color: var(--color-success); }

.link-subtle {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-brand);
}
.link-subtle:hover { text-decoration: none; opacity: .8; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq { padding: var(--inner-py) 0; }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--color-bg);
  text-align: left;
  cursor: pointer;
  transition: background .15s;
}
.faq-trigger:hover { background: var(--color-bg-alt); }

.faq-trigger span:first-child {
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform .2s;
}

.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-body {
  display: none;
  padding: 0 22px 20px;
  background: var(--color-bg);
}

.faq-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-body { display: block; }

/* ── CTA band ─────────────────────────────────────────────── */
.cta-band {
  background: var(--color-brand);
  padding: 64px 0;
  text-align: center;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.25;
}

.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  max-width: 580px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.cta-band-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-band .btn-hero-primary {
  background: #fff;
  color: var(--color-brand);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.cta-band .btn-hero-primary:hover {
  background: #F0F7FF;
  color: var(--color-brand-dark);
}

.cta-band .btn-hero-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.cta-band .btn-hero-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: #fff;
  color: #fff;
}

/* ── Pricing cards (used on inner pages) ──────────────────── */
.pricing-preview { padding: var(--inner-py) 0; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card.featured {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 2px var(--color-brand), var(--shadow-lg);
  background: #FAFCFF;
}

.pricing-popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-brand);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.pricing-plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-muted);
}

.pricing-price { display: flex; align-items: baseline; gap: 4px; }
.pricing-amount {
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1;
}
.pricing-period {
  font-size: 0.83rem;
  color: var(--color-text-muted);
}

.pricing-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

.pricing-features {
  display: flex; flex-direction: column; gap: 9px;
  flex: 1;
}

.pricing-features li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 0.86rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.pricing-cta-primary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%;
  padding: 12px;
  background: var(--color-brand);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  transition: background .15s, transform .15s;
  margin-top: auto;
}
.pricing-cta-primary:hover { background: var(--color-brand-dark); transform: translateY(-1px); color: #fff; text-decoration: none; }

.pricing-cta-secondary {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color .15s, background .15s;
  margin-top: auto;
  cursor: pointer;
  text-align: center;
}
.pricing-cta-secondary:hover { border-color: var(--color-brand); color: var(--color-brand); background: var(--color-brand-light); text-decoration: none; }

.pricing-note {
  text-align: center;
  font-size: 0.83rem;
  color: var(--color-text-muted);
  margin-top: 20px;
}

/* ── Calculator ───────────────────────────────────────────── */
.calculator-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.calc-inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.calc-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-text);
}

.calc-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--color-text);
  background: var(--color-bg);
  transition: border-color .15s;
  -moz-appearance: textfield;
}
.calc-input:focus { outline: none; border-color: var(--color-brand); }
.calc-input::-webkit-outer-spin-button,
.calc-input::-webkit-inner-spin-button { -webkit-appearance: none; }

.calc-unit {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.calc-hint {
  font-size: 0.78rem;
  color: var(--color-text-light);
  line-height: 1.4;
}

.calc-result {
  background: linear-gradient(135deg, #EBF3FD 0%, #F0F9FF 100%);
  border: 1px solid #BFDBFE;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.calc-result-inner { flex: 1; }

.calc-result-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-brand);
  line-height: 1;
  margin-bottom: 6px;
}

.calc-result-label {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.calc-result-detail {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.calc-cta {
  flex-shrink: 0;
  white-space: nowrap;
}

.calc-error {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 0.875rem;
  color: var(--color-danger);
}

/* ── Examples table ───────────────────────────────────────── */
.examples-table-wrap {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.examples-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.examples-table th {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 10px 14px;
  text-align: left;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
}

.examples-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-border-light);
  color: var(--color-text-muted);
}

.examples-table tr:last-child td { border-bottom: none; }
.examples-table td strong { color: var(--color-text); font-weight: 800; }

/* ── Formula box ──────────────────────────────────────────── */
.formula-box {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-top: 16px;
}

.formula-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.formula-text {
  font-size: 0.9rem;
  color: var(--color-text);
  line-height: 1.8;
  font-family: 'Courier New', Courier, monospace;
}

/* ── Routing visual (large) ───────────────────────────────── */
.routing-visual,
.routing-visual-large {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: var(--shadow-sm);
}

.rv-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rv-icon-wrap {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.rv-step-text {
  display: flex; flex-direction: column; gap: 2px;
}

.rv-step-text strong { font-size: 0.9rem; font-weight: 700; color: var(--color-text); }
.rv-step-text span   { font-size: 0.8rem; color: var(--color-text-muted); }

.rv-connector {
  width: 2px;
  height: 24px;
  background: var(--color-border);
  margin-left: 21px;
}

.rv-split-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-text-muted);
  text-align: center;
  padding: 10px 0 6px;
}

.rv-outcomes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}

.rv-outcome {
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.83rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.rv-outcome.good { background: #F0FDF4; border: 1px solid #BBF7D0; }
.rv-outcome.bad  { background: #FEF2F2; border: 1px solid #FECACA; }

.rv-outcome-header {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
}

/* Routing visual (small, inline) */
.routing-step {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
}
.routing-step.start, .routing-step.middle { }
.routing-icon-wrap {
  width: 40px; height: 40px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.routing-icon-wrap.blue   { background: #EFF6FF; }
.routing-icon-wrap.yellow { background: #FFFBEB; }
.routing-icon-wrap.green  { background: #F0FDF4; }
.routing-arrow {
  display: flex; justify-content: center;
  color: var(--color-text-muted);
  margin: 0 0 0 19px;
  padding: 4px 0;
}
.routing-split {
  display: flex; align-items: center; justify-content: space-between;
  margin: 4px 0;
  padding: 0 4px;
}
.routing-split-left, .routing-split-right {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
}
.routing-outcomes {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.routing-outcome {
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.83rem;
  font-weight: 700;
}
.routing-outcome.green { background: #F0FDF4; border: 1px solid #BBF7D0; color: var(--color-success); }
.routing-outcome.red   { background: #FEF2F2; border: 1px solid #FECACA; color: var(--color-danger); }

/* ── Tier cards (affordable page) ────────────────────────── */
.tier-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow-xs);
}
.tier-card:last-child { margin-bottom: 0; }

.tier-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.tier-name  { font-size: 0.9rem; font-weight: 700; color: var(--color-text); }
.tier-price { font-size: 0.95rem; font-weight: 800; }

.tier-meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tier-meta-pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 2px 9px;
  border-radius: var(--radius-full);
}

.tier-features {
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* ── Region trust ─────────────────────────────────────────── */
.region-trust {
  padding: var(--inner-py) 0;
  background: var(--color-bg-alt);
}

.region-trust-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--color-text-muted);
  text-align: center;
  margin-bottom: 16px;
}

.region-trust-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.region-tag {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 500;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 5px 14px;
  border-radius: var(--radius-full);
}

/* ── Geo grid ─────────────────────────────────────────────── */
.geo-trust { padding: var(--inner-py) 0; }

.geo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.geo-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: var(--shadow-xs);
}

.geo-icon-wrap {
  width: 36px; height: 36px;
  background: var(--color-brand-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.geo-card-body { display: flex; flex-direction: column; gap: 3px; }

/* ── Stats strip ──────────────────────────────────────────── */
.stats-strip { background: var(--color-text); padding: 36px 0; }

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-item { text-align: center; }
.stat-number { font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label  { font-size: 0.82rem; color: rgba(255,255,255,.7); margin-top: 4px; }

/* ── Highlight ────────────────────────────────────────────── */
.highlight { color: var(--color-brand); }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .platform-grid         { grid-template-columns: repeat(2, 1fr); }
  .related-links-grid    { grid-template-columns: repeat(2, 1fr); }
  .channel-grid          { grid-template-columns: repeat(2, 1fr); }
  .channel-compare-grid  { grid-template-columns: repeat(2, 1fr); }
  .features-grid         { grid-template-columns: repeat(2, 1fr); }
  .timing-grid           { grid-template-columns: repeat(2, 1fr); }
  .industry-examples-grid{ grid-template-columns: repeat(2, 1fr); }
  .geo-grid              { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  :root { --inner-py: 48px; }

  .page-hero-inner  { grid-template-columns: 1fr; gap: 36px; }
  .page-hero-stats  { flex-direction: row; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
  .hero-stat-card   { flex: 1; min-width: 180px; }

  .two-col-grid     { grid-template-columns: 1fr; gap: 36px; }
  .pain-grid        { grid-template-columns: 1fr; }
  .mistakes-grid    { grid-template-columns: repeat(2, 1fr); }
  .use-case-grid    { grid-template-columns: repeat(2, 1fr); }
  .response-grid    { grid-template-columns: 1fr; }
  .method-grid      { grid-template-columns: 1fr; }
  .template-grid    { grid-template-columns: 1fr; }
  .pricing-grid     { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .problem-compare-row { grid-template-columns: 1fr; }
  .problem-compare-divider { display: none; }
  .calc-inputs      { grid-template-columns: 1fr; }
  .calc-result      { flex-direction: column; gap: 20px; }
  .calc-cta         { width: 100%; }
  .rv-outcomes      { grid-template-columns: 1fr; }
  .routing-outcomes { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  :root { --inner-py: 40px; }

  .page-hero         { padding: 40px 0 36px; }
  .section-inner     { padding: 0 16px; }
  .container         { padding: 0 16px; }
  .section-title     { font-size: 1.4rem; }

  .page-hero-content h1 { font-size: 1.6rem; }
  .hero-ctas         { flex-direction: column; align-items: stretch; }
  .btn-hero-primary,
  .btn-hero-secondary { justify-content: center; }

  .page-hero-stats   { flex-direction: column; }
  .hero-stat-card    { flex-direction: row; }

  .platform-grid     { grid-template-columns: 1fr; }
  .related-links-grid{ grid-template-columns: 1fr; }
  .channel-grid      { grid-template-columns: 1fr; }
  .channel-compare-grid { grid-template-columns: 1fr; }
  .features-grid     { grid-template-columns: 1fr; }
  .timing-grid       { grid-template-columns: 1fr; }
  .mistakes-grid     { grid-template-columns: 1fr; }
  .use-case-grid     { grid-template-columns: 1fr; }
  .industry-examples-grid { grid-template-columns: 1fr; }
  .geo-grid          { grid-template-columns: 1fr; }
  .pricing-grid      { max-width: 100%; }

  .comparison-table  { font-size: 0.8rem; }
  .comparison-table th,
  .comparison-table td { padding: 10px 12px; }

  .cta-band          { padding: 44px 0; }
  .cta-band h2       { font-size: 1.35rem; }
  .cta-band-btns     { flex-direction: column; align-items: center; }

  .calculator-card   { padding: 24px 20px; }
  .callout-card      { flex-direction: column; }
  .smart-routing-callout { flex-direction: column; }

  .faq-trigger       { padding: 16px 18px; }
  .faq-body          { padding: 0 18px 18px; }
}

/* ── header-footer.css conflict overrides ─────────────────
   header-footer.css sets  a { color: inherit; }  which
   strips link colour on inner pages. Re-assert everything
   that inner.css needs on top of that global reset.
   ─────────────────────────────────────────────────────── */

/* Base link colour for inner pages */
main a {
  color: var(--color-brand);
}

main a:hover {
  text-decoration: none;
}

/* Breadcrumb — full re-assertion so header-footer can't win */
.breadcrumb-bar {
  background: var(--color-bg-alt);
  border-bottom: 1px solid var(--color-border);
  padding: 12px 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 0.83rem;
  color: var(--color-text-muted);
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Every li in the breadcrumb is a flex row */
.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* The separator li just holds the SVG — no extra gap needed */
.breadcrumb-list li[aria-hidden="true"] {
  color: var(--color-border);
  line-height: 0;
}

/* Breadcrumb links: muted, not brand blue, so they look secondary */
.breadcrumb-list a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .15s;
}

.breadcrumb-list a:hover {
  color: var(--color-brand);
  text-decoration: none;
}

/* Active / current page item */
.breadcrumb-list li[aria-current="page"] {
  color: var(--color-text);
  font-weight: 500;
}

/* SVG chevron inside the separator li */
.breadcrumb-list li svg {
  display: block;
  flex-shrink: 0;
  color: var(--color-border);
  stroke: var(--color-border);
}

/* ── section-inner on inner pages needs its own max-width
   (header-footer.css defines .container at 1100px;
    inner pages use .section-inner at 1160px — no conflict,
    but re-state it here to be safe) ──────────────────── */
.section-inner {
  max-width: var(--max-width); /* 1160px */
  margin: 0 auto;
  padding: 0 24px;
}

/* ── btn-hero-primary / secondary: header-footer resets
   button styles so re-assert display and font here ──── */
.btn-hero-primary,
.btn-hero-secondary {
  font-family: inherit;
  cursor: pointer;
}

/* ── CTA band buttons need white text even though
   header-footer.css sets a { color: inherit } ───────── */
.cta-band .btn-hero-primary,
.cta-band .btn-hero-primary:hover {
  color: var(--color-brand);
  text-decoration: none;
}

.cta-band .btn-hero-secondary,
.cta-band .btn-hero-secondary:hover {
  color: #fff;
  text-decoration: none;
}

/* ── Channel links, related-link cards, feat-tag-links:
   all need brand colour not inherited muted grey ─────── */
.channel-link,
.channel-link:hover,
.feat-tag-link,
.feat-tag-link:hover,
.link-subtle,
.link-subtle:hover {
  color: var(--color-brand);
  text-decoration: none;
}

.related-link-card,
.related-link-card:hover {
  color: inherit;
  text-decoration: none;
}

.related-link-title { color: var(--color-text); }
.related-link-text  { color: var(--color-text-muted); }

/* ── Platform cards are <a> tags — keep colour neutral ── */
.platform-card,
.platform-card:hover {
  color: inherit;
  text-decoration: none;
}

/* ── Industry example card links ────────────────────── */
.industry-example-card .channel-link {
  color: var(--color-brand);
}
