/* ═══════════════════════════════════════════════════════════
   INDUSFACE — LP.CSS
   Comparison / Landing Page Component Styles
   Design tokens: Indusface Design System v2026
═══════════════════════════════════════════════════════════ */

/* ── Design Tokens ── */
:root {
  --teal:         #008080;
  --purple:       #590BD5;
  --text:         #161622;
  --text-2:       #3D3D55;
  --muted:        #676780;
  --bg:           #FFFFFF;
  --off:          #F8F9FC;
  --border:       #E6E8F0;
  --teal-faint:   rgba(0,128,128,.06);
  --teal-light:   rgba(0,128,128,.12);
  --teal-line:    rgba(0,128,128,.25);
  --purple-faint: rgba(89,11,213,.05);
  --green:        #2D8B6D;
  --amber:        #C6890B;
  --red:          #B83D3D;
  /* Dark theme tokens */
  --dark-bg:          #202036;
  --dark-surface:     #292943;
  --dark-border:      rgba(255,255,255,.10);
  --dark-text:        #E8EAF2;
  --dark-text-2:      #D5DBE8;
  --dark-muted:       #B1B9C9;
  --teal-hc:          #4CC7C1;
  --teal-hc-faint:    rgba(76,199,193,.10);
  --teal-hc-border:   rgba(76,199,193,.28);
  --purple-hc:        #B892FF;
  --purple-hc-border: rgba(184,146,255,.46);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
[id] { scroll-margin-top: 120px; }

body {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Layout ── */
.wrap { max-width: 1160px; margin: 0 auto; padding: 0 48px; }

/* ════════════════════════════
   BUTTONS
════════════════════════════ */
.btn-fill {
  display: inline-block;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 13px; font-weight: 700; color: #fff;
  background: var(--purple);
  padding: 9px 20px; border-radius: 7px;
  text-decoration: none;
  transition: background .15s, transform .12s;
  white-space: nowrap;
}
.btn-fill:hover { background: #4908b0; transform: translateY(-1px); text-decoration: none; color: #fff; }
.btn-fill.large { font-size: 15px; padding: 13px 28px; border-radius: 8px; }

.btn-outline {
  display: inline-block;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 13px; font-weight: 600; color: var(--teal);
  padding: 8px 18px; border-radius: 7px;
  border: 1.5px solid var(--teal-line);
  text-decoration: none;
  transition: background .15s;
}
.btn-outline:hover { background: var(--teal-faint); text-decoration: none; }
.btn-outline.large { font-size: 15px; padding: 12px 26px; border-radius: 8px; }

.btn-ghost {
  display: inline-block;
  font-size: 13px; font-weight: 600; color: var(--purple);
  text-decoration: none;
}
.btn-ghost:hover { text-decoration: underline; }

/* ════════════════════════════
   LP NAV (minimal — logo + CTA)
════════════════════════════ */
.lp-nav {
  position: sticky; top: 0; z-index: 300;
  height: 64px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
}
.lp-nav .wrap {
  display: flex; align-items: center;
  justify-content: space-between; width: 100%;
}
.lp-nav-logo { height: 40px; width: auto; }
.lp-nav-links {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0; flex: 1; margin-left: 32px;
}
.lp-nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-2);
  padding: 5px 11px; border-radius: 6px;
  text-decoration: none; white-space: nowrap;
  transition: color .14s, background .14s;
}
.lp-nav-links a:hover { color: var(--purple); background: var(--purple-faint); text-decoration: none; }
.lp-nav-cta { display: flex; gap: 10px; align-items: center; }



/* ════════════════════════════
   STICKY PAGE TOC
════════════════════════════ */
.page-toc {
  position: sticky;
  top: 64px;
  z-index: 200;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.page-toc .wrap {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; height: 48px;
}
.page-toc-nav {
  display: flex; align-items: center; gap: 2px;
  overflow-x: auto; scrollbar-width: none; flex: 1;
}
.page-toc-nav::-webkit-scrollbar { display: none; }
.page-toc-nav a {
  font-size: 12.5px; font-weight: 500; color: var(--text-2);
  padding: 6px 12px; border-radius: 6px;
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
  transition: background .15s, color .15s;
}
.page-toc-nav a:hover { background: var(--teal-faint); color: var(--teal); }
.page-toc-nav a.active { background: var(--teal-faint); color: var(--teal); font-weight: 600; }
.page-toc-cta { font-size: 12px; padding: 7px 16px; flex-shrink: 0; }

/* ════════════════════════════
   HERO — TWO-COLUMN LP LAYOUT
════════════════════════════ */
.hero {
  position: relative;
  padding: 52px 0 48px;
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 18% 30%, rgba(0,128,128,.11), transparent 52%),
    radial-gradient(circle at 82% 70%, rgba(0,128,128,.05), transparent 60%),
    linear-gradient(180deg, #F2FAFA 0%, #FFFFFF 70%);
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,128,128,.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,128,128,.022) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 20%, transparent 100%);
}
.hero > .wrap { position: relative; z-index: 1; }

.hero-lp-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px; align-items: start;
}
.hero-lp-left { padding-top: 8px; }
.hero-lp-right { padding-top: 4px; }

/* Hero badges */
.hero-badges {
  display: flex; align-items: center;
  gap: 8px; flex-wrap: wrap; margin-bottom: 16px;
}
.hero-badge {
  font-size: 13px; font-weight: 400;
  padding: 8px 16px; border-radius: 28px;
  display: inline-flex; align-items: center; gap: 0; border: 1px solid;
}
.hero-badge.gpi {
  background: transparent;
    color: var(--text-2);
    border-color: rgba(0, 128, 128, .15);
}
.gpi-stars { color: var(--teal); letter-spacing: -1px; margin-right: 8px; font-size: 14px; }
.gpi-score { color: var(--teal); font-size: 14px; font-weight: 800; margin-right: 5px; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
.gpi-source { color: var(--text-2); font-weight: 400; margin-right: 14px; }
.gpi-sep { width: 1px; height: 14px; background: var(--border); display: inline-block; margin-right: 14px; flex-shrink: 0; }
.gpi-count { color: var(--purple); font-size: 14px; font-weight: 800; margin-right: 5px; font-family: 'Plus Jakarta Sans', system-ui, sans-serif; }
.gpi-reviews { color: var(--text-2); font-weight: 400; }

.hero h1 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 40px; font-weight: 700;
  line-height: 1.09; letter-spacing: -.9px;
  color: var(--text); max-width: 780px; margin-bottom: 10px;
}
.hero h1 em { font-style: normal; color: var(--teal); }

.hero .lede {
  font-size: 17px; line-height: 1.65;
  color: var(--muted); font-weight: 400;
  max-width: 580px; margin-bottom: 20px;
}

/* Direct answer / Quick Take box */
.direct-answer {
  border: 1.5px solid var(--teal-line);
  border-radius: 12px;
  background: rgba(0,128,128,.04);
  padding: 20px 24px; margin-bottom: 20px; max-width: 760px;
}
.direct-answer .da-label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 8px;
  display: flex; align-items: center; gap: 7px;
}
.direct-answer .da-label::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--teal);
}
.direct-answer p {
  font-size: 14.5px; line-height: 1.6;
  color: var(--text-2); margin: 0 0 6px; max-width: none;
}
.direct-answer p:last-child { margin: 0; }
.direct-answer strong { color: var(--text); }

/* Hero trust row */
.hero-trust-row {
  display: flex; gap: 20px; flex-wrap: wrap;
  margin-top: 20px; font-size: 13px;
  color: var(--muted); font-weight: 500;
}
.hero-trust-row span { display: flex; align-items: center; gap: 5px; }

/* ════════════════════════════
   HERO FORM CARD
════════════════════════════ */
.hero-form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0,0,0,.09), 0 1px 4px rgba(0,0,0,.04);
  overflow: hidden;
}
.iti--separate-dial-code .iti__selected-dial-code{font-size:13px}
.hero-form-header {
    padding: 15px 60px 0px 60px;
    position: relative;
    overflow: hidden;
}
.hero-form-header::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.hero-form-header .eyebrow {
    font-size: 22px;
    margin-bottom: 6px;
    position: relative;
    text-align: center;
    font-weight: 600;
    color: var(--teal);
}
.hero-form-header .eyebrow::before { background: rgba(255,255,255,.6) !important; }
.hero-form-header p { font-size: 12px;  position: relative; line-height: 1.5;text-align: center; color: var(--text) !important; margin-bottom: 6px !important; }


.hero-form-body {
  display: flex; flex-direction: column;
  padding: 24px 28px 22px;
}

/* Form field groups */
.iff-group { display: flex; flex-direction: column; gap: 5px; }
.iff-label {
  font-size: 11.5px; font-weight: 600; color: var(--text-2);
  letter-spacing: .02em;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
}
.iff-req { color: var(--red); font-weight: 700; }
.iff-input {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  background: var(--off);
  border: 1.5px solid var(--border);
  border-radius: 8px; padding: 10px 14px;
  font-size: 13.5px; color: var(--text); outline: none; width: 100%;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.iff-input::placeholder { color: var(--muted); }
.iff-input:focus {
  background: #fff; border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,128,128,.1);
}
.iff-input.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(184,61,61,.08);
}
.iff-err {
  font-size: 11.5px; color: var(--red);
  line-height: 1.4; display: block;
}
.iff-err:empty { display: none; }
#result:empty   { display: none; }

/* Form fields grid */
.hf-fields {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 16px;
}
.iff-group--full { grid-column: 1 / -1; }

/* Submit button */
.iff-submit {
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 14.5px; font-weight: 700; color: #fff;
  background: var(--purple); border: none;
  border-radius: 10px; padding: 13px 20px;
  cursor: pointer; width: 100%; margin-bottom: 10px;
  transition: background .15s, transform .12s;
  box-shadow: 0 4px 14px rgba(89,11,213,.3);
}
.iff-submit:hover {
  background: #4908b0;
  box-shadow: 0 6px 20px rgba(89,11,213,.38);
  transform: translateY(-1px);
}
.iff-submit:disabled { background: var(--muted); cursor: not-allowed; transform: none; box-shadow: none; }

/* Trust badges row inside form */
.hf-trust-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.hf-trust-badge {
  display: flex; align-items: center; gap: 5px;
  font-size: 11.5px; color: var(--muted); font-weight: 500;
}
.hf-trust-badge svg { flex-shrink: 0; }

/* Success state */
.iff-success { padding: 8px 0; }
.iff-success-icon { margin-bottom: 14px; }
.iff-success-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.iff-success-body {
  font-size: 14px; color: var(--text-2);
  line-height: 1.65; margin-bottom: 20px; max-width: none;
}
.iff-trial-nudge {
  display: block; text-align: center;
  font-size: 13px; color: var(--purple);
  font-weight: 600; text-decoration: none; padding: 10px 0;
}
.iff-trial-nudge:hover { text-decoration: underline; }

/* ════════════════════════════
   MAIN CONTENT LAYOUT
════════════════════════════ */
.lp-content-wrap { padding: 64px 0 0; }
.comp-page { max-width: 900px; margin: 0 auto; }

/* Headings */
.comp-page h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 28px; font-weight: 700;
  line-height: 1.22; letter-spacing: -.5px;
  color: var(--text); margin: 0 0 10px;
  text-align: center;
}
.comp-page h2 em { font-style: normal; color: var(--teal); }
.comp-page h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--text); margin: 0 0 8px; line-height: 1.3;
}
.comp-page h4 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 15px; font-weight: 700; color: var(--text);
  letter-spacing: -.1px; margin: 0 0 5px;
}
.comp-page p { color: var(--text-2); text-align: center; margin-bottom: 16px; }
.comp-page a { color: var(--purple); }
.comp-page a.btn-fill { color: #fff; }
.comp-page a.btn-fill:hover { color: #fff; }
.comp-page a.btn-outline { color: var(--teal); }

/* Eyebrow labels */
.comp-page .eyebrow {
  font-size: 11px;
    font-weight: 700;
    color: var(--teal);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    justify-content: center;
}
.comp-page .eyebrow::before,
.eyebrow::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--teal); flex-shrink: 0;
}

.comp-page .section { margin-bottom: 64px; }
.comp-page .section[id] { scroll-margin-top: 120px; }

/* Section divider */
.section-divider {
  height: 1px; margin: 64px 0;
  background: linear-gradient(90deg, transparent 0%, var(--border) 20%, var(--border) 80%, transparent 100%);
  position: relative;
}
.section-divider::after {
  content: ''; position: absolute; left: 42%; top: -3px;
  width: 6px; height: 6px;
  background: var(--teal); border-radius: 50%; opacity: .5;
}

/* ════════════════════════════
   INTEL / CALLOUT BLOCK
════════════════════════════ */
.comp-page .intel {
  border-left: 3px solid var(--teal);
  padding: 14px 0 14px 20px; margin: 24px 0;
  background: linear-gradient(90deg, var(--teal-faint), transparent 80%);
}
.comp-page .intel p {
  margin: 0 0 6px; font-size: 15px;
  line-height: 1.65; max-width: none;
  text-align:center;
}
.comp-page .intel p:last-child { margin: 0; }
.comp-page .intel strong { color: var(--text); }

/* ════════════════════════════
   DECISION GRID (PROS / CONS)
════════════════════════════ */
.comp-page .dc-grid {
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; display: grid;
  grid-template-columns: 1fr 1fr; margin: 24px 0;
}
.comp-page .dc {
  padding: 24px; background: var(--bg);
  transition: background .18s;
}
.comp-page .dc:hover { background: var(--teal-faint); }
.comp-page .dc:nth-child(2) { border-left: 1px solid var(--border); }
.comp-page .dc-head {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 14px;
}
.comp-page .dc ul { list-style: none; padding: 0; margin: 0; }
.comp-page .dc ul li {
  font-size: 14px; color: var(--text-2);
  padding: 6px 0 6px 20px; position: relative; line-height: 1.55;
}
.comp-page .dc ul li::before {
  content: '✓'; color: var(--teal);
  position: absolute; left: 0;
  font-size: 13px; font-weight: 700;
}

/* ════════════════════════════
   FEATURE COMPARISON TABLE
════════════════════════════ */
.comp-page .table-wrap {
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; overflow-x: auto; margin: 24px 0;
}
.comp-page table { width: 100%; border-collapse: collapse; min-width: 600px; }
.comp-page th {
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); background: var(--off);
  padding: 12px 16px; border-bottom: 1px solid var(--border); text-align: left;
}
.comp-page th:first-child { width: 26%; }
.comp-page td {
  padding: 13px 16px; font-size: 14px; color: var(--text-2);
  border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.55;
}
.comp-page tr:last-child td { border-bottom: none; }
.comp-page td:first-child { font-weight: 600; color: var(--text); }
.comp-page td .check { color: var(--teal); font-weight: 700; }
.comp-page td .partial { color: var(--amber); font-weight: 600; }
.comp-page td .miss { color: var(--red); font-weight: 600; }
.comp-page td .row-win {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: rgba(0,128,128,.1); color: var(--teal);
  padding: 2px 8px; border-radius: 4px; margin-top: 8px; line-height: 1;
}
.comp-page td .row-win::before { content: '★'; font-size: 11px; }

/* ════════════════════════════
   PRICING TABLE
════════════════════════════ */
.pricing-table-wrap {
  border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; overflow-x: auto; margin: 24px 0;
}
.pricing-table-wrap table { width: 100%; border-collapse: collapse; min-width: 540px; }
.pricing-table-wrap th {
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em;
  color: var(--muted); background: var(--off);
  padding: 11px 16px; border-bottom: 1px solid var(--border); text-align: left;
}
.pricing-table-wrap th.th-at {
  background: rgba(0,128,128,.07);
  border-left: 3px solid var(--teal); color: var(--teal);
}
.pricing-table-wrap td {
  padding: 12px 16px; font-size: 13.5px; color: var(--text-2);
  border-bottom: 1px solid var(--border); vertical-align: top; line-height: 1.5;
}
.pricing-table-wrap tr:last-child td { border-bottom: none; }
.pricing-table-wrap td:first-child {
  font-weight: 600; color: var(--text);
  font-size: 13px; background: var(--off);
}
.pricing-table-wrap td.td-at {
  border-left: 3px solid var(--teal);
  background: rgba(0,128,128,.03);
}
.pricing-table-wrap .price-big {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 22px; font-weight: 700; color: var(--purple);
  line-height: 1; display: block; margin-bottom: 3px;
}
.pricing-table-wrap .price-note {margin-top: 10px; display: block; }

/* ════════════════════════════
   USE-CASE / FEATURE CARDS
════════════════════════════ */
.comp-page .uc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 20px 0;
}
.comp-page .uc-card {
 transition: border-color .2s, background .18s;
    padding: 22px 24px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--off);
}
.comp-page .uc-card:hover {
  border-color: var(--teal-line);
  background: var(--teal-faint);
}
.comp-page .uc-card .uc-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 6px;
}
.comp-page .uc-card h3 { margin-bottom: 12px; }
.comp-page .uc-card p {
  font-size: 13.5px; 
  margin-top: 10px; max-width: none; color: var(--text-2);
  text-align: left;
}

/* ── Vendor Questions ── */
.comp-page .vendor-q-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px;
}
.comp-page .vq-item {
  padding: 24px 0 24px 20px;
  border-left: 3px solid var(--border);
  border-radius: 0;
  background: none;
  transition: border-color .2s;
}
.comp-page .vq-item:hover { border-left-color: var(--teal); }
.comp-page .vq-item h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 15px; font-weight: 700; color: var(--teal);
  margin: 0 0 14px; line-height: 1.4;
}
.comp-page .vq-item p {
  font-size: 15px; line-height: 1.65; color: var(--text-2);
  margin: 0 0 10px; text-align: left; max-width: none;
}
.comp-page .vq-item p:last-child { margin-bottom: 0; }

.comp-page .vq-close {
  margin-top: 24px; font-size: 14px; font-weight: 600;
  color: var(--text); font-style: italic;
}
.comp-page .intel .vq-close {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid var(--teal-line);
  font-size: 15px; color: var(--text-2);
}

/* ════════════════════════════
   CUSTOMER QUOTE CARDS
════════════════════════════ */
.comp-page .quote-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin: 24px 0;
}
.comp-page .quote-card {
  padding: 20px 22px; background: var(--off);
  border-radius: 10px; border: 1px solid var(--border);
  border-top: 3px solid var(--teal); position: relative;
}
.comp-page .quote-card blockquote {
  font-size: 14.5px; line-height: 1.62;
  color: var(--text-2); margin: 0 0 14px; font-style: normal;
}
.comp-page .quote-card blockquote::before {
  content: '\201C';
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 40px; color: var(--teal); opacity: .25;
  position: absolute; top: 12px; left: 16px; line-height: 1;
}
.comp-page .quote-card blockquote p {
  padding-left: 20px; max-width: none; margin: 0;
}
.comp-page .quote-meta { font-size: 12px; color: var(--muted); }
.comp-page .quote-meta strong { color: var(--text-2); font-size: 12.5px; }

/* ════════════════════════════
   BOTTOM LINE BLOCK
════════════════════════════ */
.comp-page .kd-block {
  background: var(--off); border: 1px solid var(--border);
  border-radius: 12px; padding: 28px 28px 20px; margin: 24px 0;
}
.comp-page .kd-block h3 { margin-bottom: 14px; }
.comp-page .kd-block ul { list-style: none; padding: 0; margin: 0; }
.comp-page .kd-block ul li {
  font-size: 15px; color: var(--text-2);
  padding: 10px 0 10px 22px; position: relative;
  line-height: 1.6; border-bottom: 1px solid var(--border);
}
.comp-page .kd-block ul li:last-child { border-bottom: none; }
.comp-page .kd-block ul li::before {
  content: ''; width: 6px; height: 6px;
  border-radius: 50%; background: var(--teal);
  position: absolute; left: 0; top: 18px;
}

/* ════════════════════════════
   FAQ / ACCORDION
════════════════════════════ */
.comp-page .fq { border-bottom: 1px solid var(--border); }
.comp-page .fq:first-child { border-top: 1px solid var(--border); }
.comp-page .fq-btn {
  width: 100%; background: none; border: none;
  padding: 18px 0;
  font-family: 'IBM Plex Sans', system-ui, sans-serif;
  font-size: 15.5px; font-weight: 600; color: var(--text);
  display: flex; align-items: center;
  justify-content: space-between;
  cursor: pointer; text-align: left; line-height: 1.45;
}
.comp-page .fq-btn:hover { color: var(--teal); }
.comp-page .fq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal-faint); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
  transition: background .18s, transform .22s;
}
.comp-page .fq.open .fq-icon {
  background: var(--teal); color: #fff;
  transform: rotate(45deg);
}
.comp-page .fq-body { display: none; padding: 0 0 18px; }
.comp-page .fq.open .fq-body { display: block; }
.comp-page .fq-body p {
  font-size: 15px; line-height: 1.7; color: var(--text-2);
  margin: 0 0 10px; max-width: none;
  text-align: left;
}
.comp-page .fq-body p:last-child { margin: 0; }
.comp-page .fq-body a { color: var(--purple); }

/* ════════════════════════════
   CTA BAND
════════════════════════════ */
.cta-band {
  text-align: center; padding: 52px 40px;
  background: linear-gradient(135deg, rgba(0,128,128,.07), rgba(89,11,213,.04));
  border: 1px solid var(--border);
  margin: 0; position: relative; overflow: hidden;
}
.cta-band-inner {
  max-width: 1060px; margin: 0 auto; padding: 0 20px;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,128,128,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,128,128,.018) 1px, transparent 1px);
  background-size: 44px 44px; pointer-events: none;
}
.cta-band .eyebrow { justify-content: center; }
.cta-band h2 { margin-bottom: 8px; position: relative; }
.cta-band p { margin: 0 auto 24px; max-width: 520px; position: relative; }
.cta-band .btn-row {
  display: flex; justify-content: center;
  gap: 12px; flex-wrap: wrap; position: relative;
}
.trust-stats {
  display: flex; justify-content: center; gap: 24px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--muted);
  margin-top: 18px; position: relative;
}
.trust-stats strong { color: var(--text-2); }

/* ════════════════════════════
   SCROLL FADE-IN
════════════════════════════ */
.fade { opacity: 0; transform: translateY(7px); transition: opacity .34s ease, transform .34s ease; }
.fade.in { opacity: 1; transform: none; }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1100px) {
  .hero-lp-grid { grid-template-columns: 1fr 380px; gap: 40px; }
}

@media (max-width: 860px) {
  .hero-lp-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-lp-right { max-width: 540px; }
  .page-toc-cta { display: none; }
  .hero h1 { font-size: 38px; }
}

@media (max-width: 700px) {
  .wrap { padding: 0 20px; }
  .hero { padding: 30px 0 30px; }
  .hero h1 { font-size: 30px; }
  .comp-page .dc-grid,
  .comp-page .uc-grid,
  .comp-page .quote-grid { grid-template-columns: 1fr; }
  .hf-fields { grid-template-columns: 1fr; }
  .comp-page h2 { font-size: 24px; }
  .cta-band { padding: 36px 24px; }
  .lp-content-wrap { padding: 40px 0 0; }
  .direct-answer { padding: 18px 20px; }
  .lp-footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}

/* ════════════════════════════
   FOOTER
════════════════════════════ */

/* ════════════════════════════
   COMPARE HUB
════════════════════════════ */
.compare-hub {
  background: var(--off);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
  text-align: center;
}
.compare-hub-heading {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 28px; font-weight: 700;
  color: var(--text); margin-bottom: 10px;
}
.compare-hub-heading em { font-style: normal; color: var(--teal); }
.compare-hub-sub {
  font-size: 15px; color: var(--muted);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.65;
}
.compare-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1060px;
  margin: 0 auto;
}
.compare-hub-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 22px 16px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color .15s, box-shadow .15s;
}
.compare-hub-card:hover {
  border-color: var(--teal-line);
  box-shadow: 0 4px 16px rgba(0,128,128,.08);
  text-decoration: none;
}
.compare-hub-card--active {
  background: var(--teal-faint);
  border-color: var(--teal-line);
  pointer-events: none;
}
.compare-hub-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal);
}
.compare-hub-name {
  font-size: 17px; font-weight: 700;
  color: var(--text);
}
.compare-hub-desc {
  font-size: 12px; color: var(--muted);
}
.compare-hub-here {
  font-size: 12px; font-weight: 600;
  color: var(--teal);
}
@media (max-width: 700px) {
  .compare-hub-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-hub-heading { font-size: 22px; }
}
.lp-footer {
  border-top: 1px solid var(--border);
  background: var(--bg);
  padding: 20px 0;
  margin-top: 0;
}
.lp-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lp-footer-copy {
  font-size: 13px;
  color: var(--muted);
}
.lp-footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lp-footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.lp-footer-links a:hover {
  color: var(--text-2);
  text-decoration: underline;
}

/* ════════════════════════════
   HUB PAGE — HERO (two-column)
════════════════════════════ */
.hero-hub-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 54px; align-items: center;
  padding: 12px 0 4px;
  position: relative; z-index: 1;
}
.hero-hub-left { text-align: left; max-width: 620px; }
.hero-hub-left .eyebrow { margin-bottom: 12px; }
.hero-hub-left h1 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 44px; font-weight: 700;
  line-height: 1.1; letter-spacing: -.02em;
  color: var(--text); max-width: none; margin-bottom: 12px;
}
.hero-hub-left h1 em { font-style: normal; color: var(--teal); }
.hero-hub-lede {
  font-size: 16px; line-height: 1.65;
  color: var(--muted); margin-bottom: 18px; max-width: 560px;
}
.hero-hub-ctas {
  display: flex; align-items: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
}
.hero-hub-trust {
  display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 12px; color: var(--text-2); font-weight: 500;
  padding: 8px 14px; border: 1px solid rgba(0,128,128,.16);
  background: rgba(0,128,128,.05); border-radius: 999px;
  width: fit-content; max-width: 100%;
}
.hero-hub-trust strong { font-weight: 600; }
.trust-sep { width: 3px; height: 3px; background: var(--border); border-radius: 50%; flex-shrink: 0; }

/* Buyer proof card */
.hub-proof-card {
  position: relative; overflow: hidden;
  border: 1px solid rgba(0,128,128,.18);
  border-radius: 20px;
  background: rgba(255,255,255,.92);
  padding: 30px;
  box-shadow: 0 20px 50px rgba(17,24,39,.10), 0 4px 12px rgba(0,128,128,.06);
}
.hub-proof-card::before {
  content: ''; position: absolute; top: 0; left: 30px; width: 64px; height: 3px;
  background: var(--teal); border-radius: 0 0 3px 3px;
}
.hub-proof-card::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(circle at 88% 18%, rgba(89,11,213,.09), transparent 34%),
    radial-gradient(circle at 14% 86%, rgba(0,128,128,.12), transparent 38%);
}
.hub-proof-kicker {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--teal); font-size: 11.5px; font-weight: 800;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 18px;
}
.hub-proof-kicker::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.hub-rating-row {
  position: relative; z-index: 1;
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px;
}
.hub-rating-score {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 64px; font-weight: 800; line-height: 1;
  letter-spacing: -.04em; color: var(--purple);
}
.hub-rating-stars {
  color: var(--teal); font-size: 22px; letter-spacing: 3px; line-height: 1;
}
.hub-rating-meta {
  position: relative; z-index: 1;
  font-size: 13px; color: var(--text-2); font-weight: 600;
  margin-bottom: 18px; letter-spacing: -.01em;
}
.hub-rating-meta a {
  color: var(--purple); font-weight: 700; text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color .15s;
}
.hub-rating-meta a:hover { border-bottom-color: rgba(89,11,213,.35); text-decoration: none; }
.hub-rating-list {
  position: relative; z-index: 1;
  list-style: none; padding: 16px 0 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border);
}
.hub-rating-list li {
  font-size: 14px; line-height: 1.48; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 9px;
}
.hub-rating-list li::before {
  content: ''; width: 6px; height: 6px; margin-top: .62em;
  border-radius: 50%; background: var(--teal); flex: 0 0 auto;
}
.hub-proof-note {
  position: relative; z-index: 1;
  margin-top: 18px; padding: 12px 14px;
  border: 1px solid rgba(0,128,128,.14); border-radius: 10px;
  background: rgba(0,128,128,.045);
  color: var(--muted); font-size: 13px; line-height: 1.55;
}

/* ════════════════════════════
   HUB PAGE — COMPARE GRID
════════════════════════════ */
.hub-section { padding: 40px 0 64px; }
.hub-section-header { text-align: center; max-width: 760px; margin: 0 auto 8px; }
.hub-section-header h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 32px; font-weight: 700; letter-spacing: -.5px;
  color: var(--text); margin: 12px 0 10px;
}
.hub-section-header h2 em { font-style: normal; color: var(--teal); }
.hub-section-header p { font-size: 16px; color: var(--muted); line-height: 1.65; margin: 0; text-align: center; }
.hub-cta-row { text-align: center; margin-top: 36px; }
.hub-cta-row .btn-fill { margin-right: 12px; }
.hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 32px;
}
.hub-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 14px; padding: 28px 28px 24px;
  text-decoration: none; display: flex; flex-direction: column;
  transition: border-color .15s, box-shadow .15s, transform .15s;
  position: relative; overflow: hidden;
}
.hub-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal), transparent);
  border-radius: 14px 14px 0 0;
}
.hub-card:hover {
  border-color: var(--teal-line);
  box-shadow: 0 8px 28px rgba(0,128,128,.1);
  transform: translateY(-2px); text-decoration: none;
}
.hub-card-label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 8px;
}
.hub-card h3 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 19px; font-weight: 700;
  color: var(--text); margin: 0 0 8px; line-height: 1.3;
}
.hub-card p {
  font-size: 14px; line-height: 1.6;
  color: var(--muted); margin: 0 0 16px; flex: 1; text-align: left;
}
.hub-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.hub-card-tag {
  font-size: 11px; font-weight: 700; color: var(--teal);
  padding: 3px 9px; border-radius: 20px;
  background: var(--teal-faint); border: 1px solid rgba(0,128,128,.15);
}
.hub-card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13.5px; font-weight: 700; color: var(--purple);
  border-bottom: 1.5px solid transparent; padding-bottom: 1px;
  transition: gap .15s, border-color .15s;
}
.hub-card:hover .hub-card-cta { gap: 10px; border-bottom-color: rgba(89,11,213,.35); }

/* ════════════════════════════
   HUB PAGE — PAIN SECTION
════════════════════════════ */
.pain-section {
  padding: 40px 0;
  background: var(--off); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.pain-section-header { text-align: center; max-width: 740px; margin: 0 auto; }
.pain-section-header h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 30px; font-weight: 700; letter-spacing: -.45px;
  color: var(--text); margin: 12px 0 10px;
}
.pain-section-header h2 em { font-style: normal; color: var(--teal); }
.pain-section-header p { font-size: 15.5px; color: var(--muted); line-height: 1.65; margin: 0; text-align: center; }
.pain-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 32px;
}
.pain-card {
  display: grid; grid-template-columns: 44px 1fr; gap: 14px;
  padding: 18px; border: 1px solid var(--border);
  border-radius: 12px; background: #fff;
  transition: background .18s, border-color .18s, transform .18s;
}
.pain-card:hover { background: var(--teal-faint); border-color: var(--teal-line); transform: translateY(-1px); }
.pain-icon {
  width: 42px; height: 42px; border-radius: 10px;
  background: var(--teal-faint); border: 1px solid rgba(0,128,128,.12);
  color: var(--teal); display: grid; place-items: center;
}
.pain-icon svg {
  width: 22px; height: 22px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.pain-title {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700; font-size: 15.5px; color: var(--text); margin-bottom: 5px;
}
.pain-card p { font-size: 13.5px; line-height: 1.55; color: var(--muted); margin: 0; text-align: left; }

/* ════════════════════════════
   HUB PAGE — BEFORE / AFTER TABLE
════════════════════════════ */
.before-after {
  margin-top: 40px; padding: 32px;
  border: 1px solid rgba(0,128,128,.16); border-radius: 18px;
  background: linear-gradient(180deg, #fff, #F5FBFB);
  box-shadow: 0 10px 40px rgba(17,24,39,.06);
}
.before-after-head { text-align: center; max-width: 700px; margin: 0 auto 24px; }
.before-after-head .eyebrow { justify-content: center; }
.before-after-head h2 {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 26px; font-weight: 700; color: var(--text); margin: 8px 0 6px;
}
.before-after-head h2 em { font-style: normal; color: var(--teal); }
.before-after-head p { font-size: 15px; color: var(--muted); margin: 0; text-align: center; }
.change-table-wrap {
  overflow: hidden; border: 1px solid var(--border);
  border-radius: 12px; background: #fff; margin-top: 20px;
}
.change-table { width: 100%; border-collapse: collapse; }
.change-table th {
  text-align: left; padding: 14px 18px;
  background: var(--off); color: var(--text);
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  border-bottom: 1px solid var(--border);
}
.change-table td {
  padding: 16px 18px; vertical-align: top;
  border-bottom: 1px solid var(--border);
  font-size: 13.5px; line-height: 1.62;
}
.change-table tr:last-child td { border-bottom: none; }
.change-trigger {
  width: 27%; font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 700; color: var(--text); line-height: 1.35;
}
.change-before { width: 34%; color: var(--text-2); }
.change-after  { width: 39%; color: var(--teal); font-weight: 600; }

/* ════════════════════════════
   HUB PAGE — RESPONSIVE ADDITIONS
════════════════════════════ */
@media (max-width: 960px) {
  .hero-hub-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 0; }
  .hub-proof-card { max-width: 540px; }
  .hero-hub-left h1 { font-size: 38px; }
}
@media (max-width: 860px) {
  .hub-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
    .lp-nav-links,.lp-nav-cta { display: none; }
  .hero-hub-trust{font-size: 10px; gap: 5px;}
  .hub-cta-row .btn-fill{margin-bottom: 12px;}
  .hero-hub-left h1 { font-size: 30px; }
  .hub-rating-score { font-size: 52px; }
  .hero-hub-ctas { flex-direction: column; }
  .hero-hub-ctas .btn-fill,
  .hero-hub-ctas .btn-outline { width: 100%; text-align: center; }
  .pain-grid { grid-template-columns: 1fr; }
  .pain-card { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .before-after { padding: 22px 18px; }
  .change-table thead { display: none; }
  .change-table,
  .change-table tbody,
  .change-table tr,
  .change-table td { display: block; width: 100%; }
  .change-table tr { border-bottom: 1px solid var(--border); }
  .change-table tr:last-child { border-bottom: none; }
  .change-table td { border-bottom: none; padding: 10px 14px; }
  .change-table td::before {
    content: attr(data-label);
    display: block; margin-bottom: 4px;
    color: var(--muted); font-size: 10px; font-weight: 800;
    letter-spacing: .1em; text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  }
}
@media (prefers-reduced-motion: reduce) {
  .logo-track { animation: none; }
}
