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

:root {
  --navy:        #1e3a5f;
  --navy-deep:   #152c4a;
  --slate:       #475569;
  --slate-mid:   #64748b;
  --slate-light: #94a3b8;

  --text-head:   #1a2b3c;
  --text-body:   #475569;

  --white:       #ffffff;
  --bg-page:     #eef2f7;
  --bg-soft:     #f8fafc;
  --border:      #e2e8f0;
  --border-soft: #f0f4f8;

  --green:       #16a34a;
  --green-bg:    #dcfce7;
  --amber:       #d97706;
  --amber-bg:    #fef3c7;
  --blue:        #2563eb;
  --blue-bg:     #dbeafe;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow:    0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.1), 0 4px 10px -5px rgba(0,0,0,0.06);

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --r-xs: 4px;
  --r:    8px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 18px;
  --max-w: 1100px;
  --px: 1.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 16px;
  color: var(--text-body);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

/* ── Skip Link ── */
.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 200;
  padding: 8px 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 500;
  transition: top 0.15s;
}
.skip-link:focus { top: 12px; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 60px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  min-width: 0;
  overflow: hidden;
}

.site-logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 190px;
  max-width: 220px;
  height: 44px;
  max-height: 44px;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}

.header-logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 40px;
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  width: 220px;
  max-width: 100%;
  padding: 0.45rem 0.6rem;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.96);
  overflow: hidden;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: 56px;
  max-width: 208px;
  object-fit: contain;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  padding: 6px 14px;
  border-radius: var(--r);
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.nav-links a:hover { color: var(--navy); background: var(--bg-page); }

.nav-mobile-cta { display: none; }

/* Nav right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-login {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--slate);
  transition: color 0.15s;
}
.nav-login:hover { color: var(--navy); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--r);
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--navy-deep); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: transparent;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--text-head);
}

/* ═══════════════════════════════════════════════
   HERO
   — Wider content container so the H1 wraps
     across 2–3 lines instead of 5.
   — Stat cards and mockup now live in their own
     section below (.proof-section).
═══════════════════════════════════════════════ */
.hero {
  background: var(--bg-page);
  padding: 4rem var(--px) 3.5rem;
  text-align: center;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(1.875rem, 3.25vw, 2.75rem); /* tighter clamp — fits 2-3 lines, not 4-5 */
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 11px 26px;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.15s;
}
.btn-primary:hover { background: var(--navy-deep); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--text-head);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 10px 26px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.btn-secondary:hover { border-color: var(--slate-light); background: var(--bg-soft); }

/* ═══════════════════════════════════════════════
   PROOF SECTION
   — Two-column layout: stat cards left,
     report mockup right.
═══════════════════════════════════════════════ */
.proof-section {
  background: var(--bg-page);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 0;
}

.proof-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.proof-mockup {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

/* ── Report Mockup Window ── */
.mockup-window {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  box-shadow: var(--shadow-lg), 0 20px 48px rgba(30, 58, 95, 0.12);
  overflow: hidden;
}

.proof-mockup-frame {
  border-radius: var(--r-xl);
  background: var(--white);
}

.proof-mockup-embed {
  display: block;
  width: 100%;
  height: 640px;
  border: 0;
  overflow: hidden;
}

.mockup-chrome {
  display: flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}

.chrome-dots { display: flex; gap: 6px; flex-shrink: 0; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.chrome-title {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--slate-mid);
}
.chrome-spacer { width: 52px; flex-shrink: 0; }

.mockup-body {
  display: grid;
  grid-template-columns: 195px 1fr;
  min-width: 0;
}

/* Sidebar */
.mockup-sidebar {
  background: var(--bg-soft);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 1rem 0;
  min-width: 0;
}

.sidebar-label {
  font-size: 0.5875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate-light);
  padding: 0 1rem 0.75rem;
}

.sidebar-nav { list-style: none; flex: 1; }

.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 1rem;
  font-size: 0.8rem;
  color: var(--slate);
  cursor: default;
  transition: background 0.12s;
}
.sidebar-item:hover { background: var(--border-soft); }
.sidebar-item--active { background: rgba(30,58,95,0.07); color: var(--navy); font-weight: 500; }

.sidebar-total {
  margin: 0.875rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--r);
  padding: 0.875rem 1rem;
}
.sidebar-total-block + .sidebar-total-block { margin-top: 0.75rem; }
.sidebar-total-divider {
  height: 1px;
  background: rgba(255,255,255,0.16);
  margin: 0.75rem 0;
}
.sidebar-total-label { font-size: 0.6rem; opacity: 0.7; margin-bottom: 0.3rem; letter-spacing: 0.03em; }
.sidebar-total-value { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.03em; }

/* Report content */
.mockup-report { padding: 1.25rem; overflow: hidden; min-width: 0; }

.report-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.report-title { font-size: 1rem; font-weight: 700; color: var(--text-head); letter-spacing: -0.02em; }
.report-meta  { font-size: 0.7125rem; color: var(--slate-mid); margin-top: 2px; }

.report-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }
.report-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.725rem;
  font-weight: 500;
  color: var(--text-body);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  padding: 4px 10px;
  cursor: pointer;
  transition: background 0.12s;
}
.report-btn:hover { background: var(--bg-page); }

.report-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1.125rem 0 0.75rem;
}
.report-section-header--compact { margin-top: 0; }
.report-section-kicker {
  font-size: 0.675rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.report-section-note {
  font-size: 0.7rem;
  color: var(--slate-mid);
  text-align: right;
  max-width: 28rem;
}

.report-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 0.625rem;
  margin-bottom: 1rem;
}
.stat-box {
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 0.75rem;
  min-width: 0;
}
.stat-box--detail { display: flex; flex-direction: column; justify-content: center; }
.stat-label { font-size: 0.675rem; color: var(--slate-mid); margin-bottom: 0.25rem; }
.stat-val   { font-size: 1.125rem; font-weight: 700; color: var(--text-head); letter-spacing: -0.02em; }
.stat-pct   { font-size: 0.75rem; font-weight: 400; color: var(--slate-mid); }
.stat-breakdown {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.675rem;
  color: var(--text-head);
}
.stat-breakdown-line {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1.4;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot--green { background: var(--green); }
.status-dot--amber { background: var(--amber); }

.report-table-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow-x: auto;
  margin-bottom: 1rem;
}
.report-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.8125rem;
  table-layout: fixed;
  background: var(--white);
}
.report-table th {
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: 0.675rem;
  font-weight: 600;
  color: var(--slate-mid);
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
  letter-spacing: 0.01em;
}
.report-table td {
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: middle;
}
.report-table tr:last-child td { border-bottom: none; }

.item-name  { font-size: 0.8rem; font-weight: 500; color: var(--text-head); }
.item-sub   { font-size: 0.675rem; color: var(--slate-mid); margin-top: 1px; }
.item-link  { font-size: 0.675rem; color: var(--navy); margin-top: 1px; text-decoration: underline; cursor: pointer; }
.item-price { font-size: 0.8rem; font-weight: 600; color: var(--text-head); white-space: nowrap; }

.status-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.675rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 99px;
  white-space: nowrap;
}
.badge-green { background: var(--green-bg); color: var(--green); }
.badge-amber { background: var(--amber-bg); color: var(--amber); }
.badge-blue  { background: var(--blue-bg); color: var(--blue); }

.comparison-listing {
  display: grid;
  gap: 0.875rem;
}
.comparison-card {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  padding: 0.9rem;
}
.comparison-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.comparison-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-head);
}
.comparison-card-meta {
  font-size: 0.7rem;
  color: var(--slate-mid);
  margin-top: 0.15rem;
}
.comparison-card-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.comparison-cost {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: var(--bg-soft);
  font-size: 0.675rem;
  font-weight: 600;
  color: var(--text-head);
  white-space: nowrap;
}
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.comparison-panel {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-soft);
  padding: 0.8rem;
  min-width: 0;
}
.comparison-panel--accent {
  background: linear-gradient(180deg, rgba(219,234,254,0.36) 0%, rgba(255,255,255,1) 100%);
}
.comparison-panel-label {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.comparison-panel-title {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-head);
  margin-top: 0.35rem;
}
.comparison-panel-meta {
  font-size: 0.7rem;
  color: var(--slate-mid);
  margin-top: 0.18rem;
}
.comparison-bullets {
  list-style: none;
  display: grid;
  gap: 0.3rem;
  margin-top: 0.7rem;
}
.comparison-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.725rem;
  color: var(--text-body);
  line-height: 1.45;
}
.comparison-bullets li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-top: 0.36rem;
  flex-shrink: 0;
}
.comparison-panel-foot {
  margin-top: 0.75rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
  font-size: 0.7rem;
  color: var(--slate-mid);
}
.comparison-specs {
  margin-top: 0.8rem;
  border: 1px solid var(--border-soft);
  border-radius: var(--r);
  background: rgba(248,250,252,0.8);
  padding: 0.75rem;
}
.comparison-specs-title {
  font-size: 0.675rem;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 0.55rem;
}
.comparison-spec-grid {
  display: grid;
  gap: 0.45rem;
}
.comparison-spec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.725rem;
  color: var(--text-body);
}
.comparison-rationale {
  margin-top: 0.75rem;
  font-size: 0.7rem;
  color: var(--slate-mid);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════ */
.stats-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.stats-strip-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 3rem;
}

.strip-sep {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

.strip-num {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 0.3rem;
}

.strip-lbl {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--slate-mid);
  line-height: 1.4;
  max-width: 14ch;
}

/* ═══════════════════════════════════════════════
   SHARED SECTION HELPERS
═══════════════════════════════════════════════ */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
}

.section-kicker {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.section-kicker.centered { text-align: center; }

.section-heading {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.875rem;
}
.section-heading.centered { text-align: center; }

.section-sub {
  font-size: 1rem;
  color: var(--slate-mid);
  line-height: 1.7;
  max-width: 560px;
}
.section-sub.centered { text-align: center; margin: 0 auto; }

/* ═══════════════════════════════════════════════
   SERVICES / FEATURE CARDS
═══════════════════════════════════════════════ */
.services-section {
  background: var(--bg-soft);
  padding: 5rem 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--slate-light); }

.card-icon-wrap {
  width: 42px;
  height: 42px;
  background: var(--bg-page);
  border-radius: var(--r-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-head);
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}

.card-desc {
  font-size: 0.875rem;
  color: var(--slate-mid);
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════════ */
.process-section {
  background: var(--white);
  padding: 5rem 0;
}

.process-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  align-items: center;
}

.process-heading {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 700;
  color: var(--text-head);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 0.875rem;
}

.process-desc {
  font-size: 1rem;
  color: var(--slate-mid);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.step-item {
  display: flex;
  gap: 1.125rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  margin-top: 2px;
}

.step-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-head);
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--slate-mid);
  line-height: 1.65;
}

/* Portal Mockup */
.portal-wrap { /* container */ }

.portal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.portal-topbar {
  display: flex;
  justify-content: flex-end;
  padding: 0.625rem 1rem;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.portal-label { font-size: 0.75rem; font-weight: 500; color: var(--slate-mid); }

.upload-zone {
  margin: 1.25rem;
  border: 1.5px dashed var(--border);
  border-radius: var(--r-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.upload-icon  { color: var(--slate-light); }
.upload-title { font-size: 0.9375rem; font-weight: 600; color: var(--text-head); }
.upload-sub   { font-size: 0.8125rem; color: var(--slate-mid); }

.portal-files {
  margin: 0 1.25rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--bg-soft);
}
.portal-files-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--slate-mid);
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--border);
}

.portal-file-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.portal-file-row:last-child { border-bottom: none; }

.portal-file-name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-head);
}

.file-badge {
  font-size: 0.675rem;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 99px;
  white-space: nowrap;
}
.badge-processing { background: var(--blue-bg);  color: var(--blue); }
.badge-completed  { background: var(--green-bg); color: var(--green); }

/* ═══════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════ */
.pricing-section {
  background: var(--bg-page);
  padding: 5rem 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); }

.pricing-card--featured {
  border-color: var(--navy);
  box-shadow: 0 0 0 1px var(--navy), var(--shadow-md);
}
.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px var(--navy), var(--shadow-lg);
}

.featured-pip {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: var(--white);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 0 0 var(--r) var(--r);
  white-space: nowrap;
}

.tier-kicker {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.tier-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-head);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.tier-desc {
  font-size: 0.875rem;
  color: var(--slate-mid);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.tier-price {
  display: flex;
  align-items: baseline;
  margin-bottom: 0.3rem;
}
.price-amt  { font-size: 2rem; font-weight: 700; color: var(--text-head); letter-spacing: -0.03em; line-height: 1; }
.price-unit { font-size: 0.875rem; color: var(--slate-mid); }

.price-note {
  font-size: 0.75rem;
  color: var(--slate-light);
  margin-bottom: 1.25rem;
}

.tier-rule {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
  flex: 1;
}
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-body);
}
.tier-features li::before {
  content: "\2713";
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

.btn-tier {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 1.25rem;
  border-radius: var(--r);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  margin-top: auto;
}
.btn-tier-outline {
  background: var(--white);
  color: var(--text-head);
  border: 1px solid var(--border);
}
.btn-tier-outline:hover { background: var(--bg-soft); border-color: var(--slate-light); }
.btn-tier-primary {
  background: var(--navy);
  color: var(--white);
  border: none;
}
.btn-tier-primary:hover { background: var(--navy-deep); }

.pricing-note {
  text-align: center;
  font-size: 0.875rem;
  color: var(--slate-mid);
  margin-top: 2rem;
}
.pricing-note a { color: var(--navy); font-weight: 500; text-decoration: underline; }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-section {
  background: var(--bg-soft);
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-sub { margin: 0 0 2rem; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
.contact-detail { display: flex; flex-direction: column; gap: 0.2rem; }
.detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate-light);
}
.detail-value {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-head);
  line-height: 1.55;
}

.contact-guarantee {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
}
.guarantee-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 0.5rem;
}
.guarantee-body {
  font-size: 0.875rem;
  color: var(--slate-mid);
  line-height: 1.65;
}

/* Form card */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.form-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-head);
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.form-card-sub {
  font-size: 0.875rem;
  color: var(--slate-mid);
  margin-bottom: 1.75rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-head);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-size: 0.9rem;
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  color: var(--text-head);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-group textarea { resize: vertical; min-height: 88px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--slate-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

.form-submit {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 11px 1.5rem;
  border: none;
  border-radius: var(--r);
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.25rem;
}
.form-submit:hover   { background: var(--navy-deep); }
.form-submit:disabled { opacity: 0.65; cursor: default; }

.form-label-opt {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--slate-light);
}

/* File upload */
.file-upload-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.file-upload-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
  overflow: hidden;
}
.file-upload-wrap:focus-within {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.08);
}

.file-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-head);
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--r-xs);
  padding: 5px 11px;
  cursor: pointer;
  transition: background 0.15s;
}
.file-upload-btn:hover { background: var(--border); }

.file-upload-name {
  font-size: 0.8125rem;
  color: var(--slate-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}
.file-upload-name.has-file { color: var(--text-body); }

/* Form status message */
.form-status {
  display: none;
  font-size: 0.875rem;
  line-height: 1.5;
  padding: 0.75rem 1rem;
  border-radius: var(--r);
  margin-top: 0.75rem;
}
.form-status--success {
  display: block;
  background: var(--green-bg);
  color: var(--green);
  border: 1px solid rgba(22, 163, 74, 0.2);
}
.form-status--error {
  display: block;
  background: var(--amber-bg);
  color: var(--amber);
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.form-privacy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--slate-light);
  margin-top: 0.875rem;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
footer {
  background: var(--navy-deep);
  padding: 3.5rem 0 0;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px) 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-tagline {
  margin-top: 0.875rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  max-width: 280px;
}

.footer-cols { display: flex; gap: 4rem; }

.footer-col-heading {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-col-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  transition: color 0.15s;
}
.footer-col-links a:hover { color: rgba(255,255,255,0.85); }

.footer-bottom {
  padding: 1.25rem 0;
}
.footer-bottom-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.32);
}
.footer-social { color: rgba(255,255,255,0.38); transition: color 0.15s; }
.footer-social:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mockup-body    { grid-template-columns: 165px 1fr; }
  .process-inner  { gap: 2.5rem; }
  .contact-grid   { gap: 3rem; }
  .footer-inner   { gap: 3rem; }
}

@media (max-width: 900px) {
  /* Nav */
  .nav-actions { display: none; }
  .nav-toggle  { display: inline-flex; }
  .nav-mobile-cta { display: block; padding-top: 0.5rem; border-top: 1px solid var(--border); }
  .header-logo {
    width: 180px;
    max-width: 200px;
    height: 40px;
    max-height: 40px;
  }
  .header-logo-img {
    height: 34px;
    max-width: 180px;
    max-height: 38px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--px);
    right: var(--px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.625rem;
    z-index: 50;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a  { display: block; padding: 0.7rem 0.875rem; border-radius: var(--r); }
  .nav-mobile-cta .nav-cta { justify-content: center; border-radius: var(--r); }

  /* Mockup */
  .mockup-sidebar { display: none; }
  .mockup-body    { grid-template-columns: 1fr; }
  .proof-mockup-embed { height: 600px; }

  /* Grids */
  .cards-grid   { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .process-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid  { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row      { grid-template-columns: 1fr; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-cols  { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .header-logo {
    width: 160px;
    max-width: 160px;
    height: 40px;
    max-height: 40px;
  }
  .header-logo-img {
    width: auto;
    height: 30px;
    max-width: 160px;
    max-height: 34px;
  }
}

@media (max-width: 640px) {
  .hero { padding-top: 3rem; padding-bottom: 2.5rem; }
  .hero h1 { font-size: 1.75rem; letter-spacing: -0.02em; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas a { text-align: center; }

  .proof-section { padding: 3.5rem 0; }

  .stats-strip-inner { flex-direction: column; gap: 1.5rem; }
  .strip-sep { width: 44px; height: 1px; }
  .strip-stat { padding: 0; }
  .proof-mockup-embed { height: 560px; }

  .report-section-header,
  .comparison-card-header,
  .comparison-spec-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .report-section-note,
  .comparison-card-actions {
    text-align: left;
    justify-content: flex-start;
  }
  .report-stats { grid-template-columns: 1fr 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .comparison-specs { padding: 0.7rem; }
  .footer-logo { width: 190px; }
  .footer-logo-img {
    height: 48px;
    max-width: 178px;
  }

  .footer-cols { flex-direction: column; gap: 1.5rem; }

  section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .services-section,
  .process-section,
  .pricing-section,
  .contact-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
}

/* ═══════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════ */

/* Active nav link */
.nav-link--active {
  color: var(--navy) !important;
  font-weight: 600;
}

/* Scroll offset for card anchor IDs */
#age-specification-verification,
#lkq-replacement-research,
#contents-list-review,
#svc-coverage,
#how-it-works {
  scroll-margin-top: 80px;
}

/* Coverage table section */
.svc-table-section {
  background: var(--white);
  padding: 5rem 0;
}

.svc-table-wrap {
  margin-top: 2.5rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.svc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  background: var(--white);
}

.svc-table thead tr {
  background: var(--navy);
}

.svc-table th {
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
}

.svc-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
  color: var(--text-body);
}

.svc-table td:first-child {
  font-weight: 600;
  color: var(--text-head);
  white-space: nowrap;
}

.svc-table tbody tr:last-child td { border-bottom: none; }
.svc-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.svc-table tbody tr:hover { background: var(--border-soft); }

/* Process section (services page) */
.svc-process-section {
  background: var(--bg-soft);
  padding: 5rem 0;
}

.svc-steps {
  max-width: 680px;
  margin: 3rem auto 0;
}

/* SEO section */
.svc-seo-section {
  background: var(--bg-page);
  padding: 5rem 0;
}

.svc-seo-body {
  max-width: 800px;
  margin: 2rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.svc-seo-body p {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
}

/* CTA section */
.svc-cta-section {
  background: var(--navy-deep);
  padding: 5rem 0;
}

.svc-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 var(--px);
  text-align: center;
}

.svc-cta-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.svc-cta-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.svc-cta-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Coverage table — mobile stacking */
@media (max-width: 768px) {
  .svc-table thead { display: none; }

  .svc-table,
  .svc-table tbody,
  .svc-table tr,
  .svc-table td { display: block; width: 100%; }

  .svc-table tr {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
  }
  .svc-table tr:last-child { border-bottom: none; }

  .svc-table td {
    border-bottom: none;
    padding: 0.2rem 1.25rem;
    white-space: normal;
  }

  .svc-table td:first-child {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    padding-top: 0;
    padding-bottom: 0.375rem;
  }

  .svc-table td::before {
    content: attr(data-label) ": ";
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--slate-mid);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.125rem;
  }

  .svc-table td:first-child::before { display: none; }
}

@media (max-width: 640px) {
  .svc-process-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .svc-table-section    { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .svc-seo-section      { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .svc-cta-section      { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .svc-steps            { margin-top: 2rem; }
}

/* =======================================================
   ABOUT PAGE
======================================================= */
.about-page {
  background: var(--bg-page);
}

.about-hero {
  padding-bottom: 3.5rem;
}

.about-page .hero-content {
  max-width: 760px;
}

.about-page .hero-sub {
  max-width: 760px;
}

.about-statement-section,
.about-role-section {
  background: var(--white);
}

.about-experience-section,
.about-explore-section {
  background: var(--bg-soft);
}

.about-principles-section {
  background: var(--white);
}

.about-principles-grid {
  margin-top: 2.5rem;
}

.about-role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-role-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.about-role-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 1rem;
}

.about-role-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.about-role-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--text-body);
  line-height: 1.65;
}

.about-role-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.about-explore-grid {
  margin-top: 2.5rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-nav-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.about-nav-card:hover {
  transform: translateY(-2px);
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: var(--shadow-md);
}

.about-contact-section {
  background: var(--bg-page);
  padding: 5rem 0;
}

.about-contact-card {
  background: var(--navy-deep);
  border-radius: 16px;
  padding: 3rem;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2.75rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.about-contact-info h2 {
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.875rem;
}

.about-contact-info p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 1.75rem;
}

.about-contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-contact-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.25rem;
}

.about-contact-value {
  font-size: 0.975rem;
  line-height: 1.65;
  color: var(--white);
}

.about-contact-form {
  background: var(--white);
  color: var(--text-body);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
}

.about-contact-form-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 1rem;
}

.about-page .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.875rem;
}

.about-page .form-group {
  margin-bottom: 0.875rem;
}

.about-page .form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-head);
  margin-bottom: 0.4rem;
}

.about-page .form-group input,
.about-page .form-group select,
.about-page .form-group textarea {
  width: 100%;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-warm);
  color: var(--text-body);
  font-size: 0.9375rem;
}

.about-page .form-group textarea {
  resize: vertical;
  min-height: 92px;
}

.about-page .form-group input:focus,
.about-page .form-group select:focus,
.about-page .form-group textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}

.about-page .form-opt {
  font-weight: 400;
  color: var(--slate-light);
}

.about-page .file-upload-wrap {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.about-page .file-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  color: var(--navy);
  background: var(--bg-warm);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
}

.about-page .file-upload-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.about-page .file-upload-name {
  font-size: 0.75rem;
  color: var(--slate-light);
}

.about-page .file-upload-name.has-file { color: var(--text-body); }

.about-page .form-submit {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease;
}

.about-page .form-submit:hover { background: #1d4ed8; }

.about-page .form-status {
  min-height: 1.25rem;
  margin-top: 0.625rem;
  font-size: 0.75rem;
}

.about-page .form-status--success { color: #16a34a; }
.about-page .form-status--error { color: #dc2626; }

.about-page .form-privacy {
  margin-top: 0.75rem;
  font-size: 0.75rem;
  color: var(--slate-light);
}

.about-page .form-disclaimer {
  font-size: 0.72rem;
  color: var(--slate-light);
  line-height: 1.6;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 900px) {
  .about-role-grid,
  .about-explore-grid,
  .about-contact-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .about-contact-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }
  .about-contact-card { padding: 1.75rem; gap: 2rem; }
  .about-page .form-row { grid-template-columns: 1fr; }
}

/* =======================================================
   HOMEPAGE REDESIGN
   Scoped to index.html via body.homepage-redesign
======================================================= */
body.homepage-redesign {
  --home-max-w: 1360px;
  --navy: #0f1d2f;
  --navy-mid: #1a2d45;
  --slate: #475569;
  --slate-light: #94a3b8;
  --text-head: #0f1d2f;
  --text-body: #475569;
  --white: #ffffff;
  --bg: #f6f8fb;
  --bg-warm: #fafbfd;
  --border: #e2e8f0;
  --accent: #2563eb;
  --accent-hover: #1d4ed8;
  --green: #059669;
  --green-bg: #ecfdf5;
  --amber: #d97706;
  --amber-bg: #fffbeb;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 32px rgba(15,29,47,0.12), 0 4px 8px rgba(0,0,0,0.04);
  background: var(--bg);
  font-family: "Outfit", system-ui, sans-serif;
  color: var(--text-body);
}

body.homepage-redesign nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

body.homepage-redesign .nav-inner {
  max-width: var(--home-max-w);
  margin: 0 auto;
  padding: 0 var(--px);
  height: 56px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

body.homepage-redesign .logo.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 190px;
  max-width: 220px;
  height: 44px;
  max-height: 44px;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
}

body.homepage-redesign .header-logo-img {
  display: block;
  width: auto;
  max-width: 100%;
  height: 40px;
  max-height: 40px;
  object-fit: contain;
  object-position: left center;
}

body.homepage-redesign .nav-links {
  list-style: none;
  display: flex;
  gap: 1.6rem;
  margin-left: auto;
  flex: initial;
  justify-content: flex-start;
  align-items: center;
}

body.homepage-redesign .nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  padding: 0;
  border-radius: 0;
  transition: color 0.15s;
}

body.homepage-redesign .nav-links a:hover,
body.homepage-redesign .nav-login:hover {
  color: var(--navy);
  background: transparent;
}

body.homepage-redesign .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.5rem;
}

body.homepage-redesign .nav-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
}

body.homepage-redesign .nav-cta {
  margin-left: 0;
  padding: 7px 18px;
  background: var(--navy);
  color: var(--white) !important;
  border-radius: 7px;
  font-size: 13.5px;
  font-weight: 600;
  transition: background 0.15s;
}

body.homepage-redesign .nav-cta:hover {
  background: var(--navy-mid);
}

body.homepage-redesign #main {
  overflow-x: clip;
}

body.homepage-redesign .home-hero {
  max-width: var(--home-max-w);
  margin: 0 auto;
  padding: 56px var(--px) 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(720px, 1.45fr);
  gap: 56px;
  align-items: start;
}

body.homepage-redesign .home-hero-text {
  max-width: 500px;
  animation: fadeUp 0.6s ease-out both;
}

body.homepage-redesign .home-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent);
  margin-bottom: 16px;
}

body.homepage-redesign .home-hero-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

body.homepage-redesign .home-hero-title {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--text-head);
  margin-bottom: 16px;
}

body.homepage-redesign .home-hero-title em {
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  color: var(--accent);
}

body.homepage-redesign .home-hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 28px;
  max-width: 470px;
}

body.homepage-redesign .home-hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

body.homepage-redesign .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: var(--accent);
  color: var(--white);
  border-radius: var(--r);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s;
  border: none;
  cursor: pointer;
}

body.homepage-redesign .btn-primary:hover {
  background: var(--accent-hover);
}

body.homepage-redesign .btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.15s;
}

body.homepage-redesign .btn-secondary:hover {
  border-color: var(--slate-light);
  background: transparent;
}

body.homepage-redesign .home-hero-trust {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--slate-light);
  font-weight: 500;
  flex-wrap: wrap;
}

body.homepage-redesign .home-hero-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  max-width: 230px;
  line-height: 1.5;
}

body.homepage-redesign .home-hero-trust-num {
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  display: block;
}

body.homepage-redesign .home-hero-trust-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

body.homepage-redesign .home-hero-trust-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.homepage-redesign .home-hero-report {
  min-width: 0;
  width: 100%;
  max-width: 820px;
  justify-self: stretch;
  animation: fadeUp 0.6s ease-out 0.15s both;
}

body.homepage-redesign .hero-report-preview .window {
  width: 100%;
  max-width: 820px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10), 0 1px 4px rgba(0,0,0,0.06);
  overflow: hidden;
  border: 1px solid var(--border);
}

body.homepage-redesign .hero-report-preview .titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 18px;
  background: #f8f9fb;
  border-bottom: 1px solid #e8eaed;
}

body.homepage-redesign .hero-report-preview .dots {
  display: flex;
  gap: 7px;
}

body.homepage-redesign .hero-report-preview .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

body.homepage-redesign .hero-report-preview .dot-r { background: #ff5f57; }
body.homepage-redesign .hero-report-preview .dot-y { background: #febc2e; }
body.homepage-redesign .hero-report-preview .dot-g { background: #28c840; }

body.homepage-redesign .hero-report-preview .claim-id {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

body.homepage-redesign .hero-report-preview .body {
  display: flex;
  min-height: 520px;
}

body.homepage-redesign .hero-report-preview .sidebar {
  width: 184px;
  min-width: 184px;
  border-right: 1px solid #e8eaed;
  padding: 22px 0;
  background: #fcfcfd;
  display: flex;
  flex-direction: column;
}

body.homepage-redesign .hero-report-preview .sb-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #9ca3af;
  padding: 0 18px;
  margin-bottom: 10px;
}

body.homepage-redesign .hero-report-preview .sb-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13.5px;
  color: #4b5563;
  font-weight: 500;
  cursor: default;
  transition: background 0.15s;
}

body.homepage-redesign .hero-report-preview .sb-item:hover {
  background: #f3f4f6;
}

body.homepage-redesign .hero-report-preview .sb-item.active {
  background: #eef2ff;
  color: #1e3a8a;
  border-left: 3px solid #3b5bdb;
  padding-left: 15px;
}

body.homepage-redesign .hero-report-preview .sb-item svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.homepage-redesign .hero-report-preview .sb-spacer { flex: 1; }

body.homepage-redesign .hero-report-preview .sb-total {
  margin: 0 14px 10px;
  padding: 14px;
  border-radius: 10px;
  color: #fff;
}

body.homepage-redesign .hero-report-preview .sb-total.rcv { background: #1e293b; }
body.homepage-redesign .hero-report-preview .sb-total.acv { background: #0f4a3a; }

body.homepage-redesign .hero-report-preview .sb-total-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #94a3b8;
  margin-bottom: 3px;
}

body.homepage-redesign .hero-report-preview .sb-total.acv .sb-total-label { color: #6ee7b7; }

body.homepage-redesign .hero-report-preview .sb-total-val {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
}

body.homepage-redesign .hero-report-preview .sb-total.acv .sb-total-val { color: #34d399; }

body.homepage-redesign .hero-report-preview .main {
  flex: 1;
  padding: 24px 28px;
  overflow-x: auto;
  background: #fff;
}

body.homepage-redesign .hero-report-preview .stats {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

body.homepage-redesign .hero-report-preview .stat {
  flex: 1;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 14px 16px;
}

body.homepage-redesign .hero-report-preview .stat-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11.5px;
  color: #9ca3af;
  font-weight: 500;
  margin-bottom: 5px;
}

body.homepage-redesign .hero-report-preview .stat-val {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #111827;
}

body.homepage-redesign .hero-report-preview .stat-val small {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
}

body.homepage-redesign .hero-report-preview .stat-break {
  margin-top: 5px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11.5px;
  line-height: 1.5;
}

body.homepage-redesign .hero-report-preview .stat-break .v {
  color: #059669;
  font-weight: 600;
}

body.homepage-redesign .hero-report-preview .stat-break .e {
  color: #d97706;
  font-weight: 600;
}

body.homepage-redesign .hero-report-preview .section-hdr {
  margin-bottom: 18px;
}

body.homepage-redesign .hero-report-preview .section-hdr h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3px;
}

body.homepage-redesign .hero-report-preview .section-hdr p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  color: #9ca3af;
  font-weight: 400;
}

body.homepage-redesign .hero-report-preview .tbl {
  width: 100%;
  border-collapse: collapse;
}

body.homepage-redesign .hero-report-preview .tbl thead th {
  text-align: left;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9ca3af;
  padding: 9px 10px;
  border-bottom: 1.5px solid #e5e7eb;
}

body.homepage-redesign .hero-report-preview .tbl tbody td {
  padding: 14px 10px;
  border-bottom: 1px solid #f3f4f6;
  vertical-align: top;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13.5px;
}

body.homepage-redesign .hero-report-preview .item-name {
  font-weight: 600;
  color: #111827;
}

body.homepage-redesign .hero-report-preview .item-sub {
  font-size: 11.5px;
  color: #9ca3af;
  margin-top: 2px;
  line-height: 1.4;
}

body.homepage-redesign .hero-report-preview .item-link {
  font-size: 11.5px;
  color: #3b5bdb;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 3px;
  font-weight: 500;
}

body.homepage-redesign .hero-report-preview .item-link:hover { text-decoration: underline; }

body.homepage-redesign .hero-report-preview .item-link svg {
  width: 10px;
  height: 10px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s;
}

body.homepage-redesign .hero-report-preview .item-link.open svg { transform: rotate(180deg); }

body.homepage-redesign .hero-report-preview .rcv-val {
  font-weight: 600;
  color: #111827;
  white-space: nowrap;
}

body.homepage-redesign .hero-report-preview .badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 11.5px;
  font-weight: 600;
  white-space: nowrap;
}

body.homepage-redesign .hero-report-preview .badge.verified {
  background: #ecfdf5;
  color: #059669;
}

body.homepage-redesign .hero-report-preview .badge.estimated {
  background: #fef3c7;
  color: #d97706;
}

body.homepage-redesign .hero-report-preview .badge-inline {
  padding: 2px 8px;
  font-size: 10.5px;
}

body.homepage-redesign .hero-report-preview .badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  display: inline-block;
}

body.homepage-redesign .hero-report-preview .detail-row { display: none; }
body.homepage-redesign .hero-report-preview .detail-row.open { display: table-row; }

body.homepage-redesign .hero-report-preview .detail-cell {
  padding: 0 10px 14px;
  background: #f8fafc;
}

body.homepage-redesign .hero-report-preview .match-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}

body.homepage-redesign .hero-report-preview .match-panel {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

body.homepage-redesign .hero-report-preview .match-panel-hdr {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 9px 12px;
  background: #f1f5f9;
  border-bottom: 1px solid #e5e7eb;
  color: #475569;
}

body.homepage-redesign .hero-report-preview .match-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 12.5px;
  border-bottom: 1px solid #f3f4f6;
}

body.homepage-redesign .hero-report-preview .match-row:last-child { border-bottom: none; }
body.homepage-redesign .hero-report-preview .ml { color: #6b7280; }
body.homepage-redesign .hero-report-preview .mv { color: #111827; font-weight: 500; }
body.homepage-redesign .hero-report-preview .match-indent { padding-left: 6px; }

body.homepage-redesign .hero-report-preview .mv.hi {
  background: #d1fae5;
  padding: 1px 6px;
  border-radius: 4px;
  color: #065f46;
}

body.homepage-redesign .hero-report-preview .mv.up {
  background: #fef9c3;
  padding: 1px 6px;
  border-radius: 4px;
  color: #854d0e;
}

body.homepage-redesign .hero-report-preview .chk {
  color: #059669;
  font-weight: 700;
  margin-left: 5px;
  font-size: 13px;
}

body.homepage-redesign .hero-report-preview .star {
  color: #d97706;
  margin-left: 5px;
  font-size: 13px;
}

body.homepage-redesign .hero-report-preview .ret-link {
  color: #3b5bdb;
  text-decoration: none;
  font-weight: 500;
}

body.homepage-redesign .hero-report-preview .ret-link:hover { text-decoration: underline; }

body.homepage-redesign .services-row {
  max-width: var(--home-max-w);
  margin: 0 auto;
  padding: 48px var(--px) 0;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

body.homepage-redesign .service-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 40px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
}

body.homepage-redesign .service-chip svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.homepage-redesign .how-section,
body.homepage-redesign .pricing-section,
body.homepage-redesign .cta-section {
  max-width: var(--home-max-w);
  margin: 0 auto;
  padding: 72px var(--px) 0;
}

body.homepage-redesign .how-header,
body.homepage-redesign .pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

body.homepage-redesign .how-header h2,
body.homepage-redesign .pricing-header h2,
body.homepage-redesign .cta-info h2 {
  font-family: "Outfit", system-ui, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text-head);
  margin-bottom: 8px;
}

body.homepage-redesign .how-header p,
body.homepage-redesign .pricing-header p {
  font-size: 15px;
  color: var(--slate);
  max-width: 520px;
  margin: 0 auto;
}

body.homepage-redesign .how-grid,
body.homepage-redesign .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

body.homepage-redesign .how-card,
body.homepage-redesign .pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: box-shadow 0.2s;
}

body.homepage-redesign .how-card {
  padding: 28px 24px;
  position: relative;
}

body.homepage-redesign .how-card:hover,
body.homepage-redesign .pricing-card:hover {
  box-shadow: var(--shadow-md);
}

body.homepage-redesign .how-num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

body.homepage-redesign .how-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 8px;
}

body.homepage-redesign .how-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}

body.homepage-redesign .how-connector {
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--border);
  font-size: 18px;
  font-weight: 400;
}

body.homepage-redesign .pricing-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}

body.homepage-redesign .pricing-card.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), var(--shadow-md);
}

body.homepage-redesign .featured-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

body.homepage-redesign .pc-tier {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--slate-light);
  margin-bottom: 4px;
}

body.homepage-redesign .pc-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 8px;
}

body.homepage-redesign .pc-desc {
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.5;
  margin-bottom: 18px;
}

body.homepage-redesign .pc-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-head);
  letter-spacing: -1px;
  margin-bottom: 2px;
}

body.homepage-redesign .pc-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--slate);
  letter-spacing: 0;
}

body.homepage-redesign .pc-note {
  font-size: 12px;
  color: var(--slate-light);
  margin-bottom: 18px;
}

body.homepage-redesign .pc-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin-bottom: 16px;
}

body.homepage-redesign .pc-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

body.homepage-redesign .pc-features li {
  font-size: 13.5px;
  color: var(--slate);
  padding: 4px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

body.homepage-redesign .pc-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

body.homepage-redesign .btn-tier {
  display: block;
  text-align: center;
  padding: 11px 20px;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 14px;
  transition: all 0.15s;
  border: 1.5px solid transparent;
}

body.homepage-redesign .btn-tier-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

body.homepage-redesign .btn-tier-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

body.homepage-redesign .btn-tier-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

body.homepage-redesign .btn-tier-outline:hover { border-color: var(--slate-light); }

body.homepage-redesign .cta-card {
  background: var(--navy);
  border-radius: 16px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  color: var(--white);
}

body.homepage-redesign .cta-info p {
  font-size: 15px;
  color: var(--slate-light);
  line-height: 1.6;
  margin-bottom: 28px;
}

body.homepage-redesign .cta-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.homepage-redesign .cta-detail-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--slate-light);
}

body.homepage-redesign .cta-detail-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

body.homepage-redesign .cta-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px;
  color: var(--text-body);
}

body.homepage-redesign .cta-form-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-head);
  margin-bottom: 20px;
}

body.homepage-redesign .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

body.homepage-redesign .form-group { margin-bottom: 14px; }

body.homepage-redesign .form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

body.homepage-redesign .form-group input,
body.homepage-redesign .form-group select,
body.homepage-redesign .form-group textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text-head);
  transition: border-color 0.15s;
  background: var(--white);
}

body.homepage-redesign .form-group input:focus,
body.homepage-redesign .form-group select:focus,
body.homepage-redesign .form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

body.homepage-redesign .form-group textarea {
  resize: vertical;
  min-height: 60px;
}

body.homepage-redesign .form-opt,
body.homepage-redesign .form-privacy {
  font-weight: 400;
  color: var(--slate-light);
}

body.homepage-redesign .form-disclaimer {
  font-size: 11.5px;
  color: var(--slate-light);
  line-height: 1.55;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

body.homepage-redesign .file-upload-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

body.homepage-redesign .file-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  color: var(--navy);
  background: var(--bg-warm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

body.homepage-redesign .file-upload-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

body.homepage-redesign .file-upload-name {
  font-size: 12px;
  color: var(--slate-light);
}

body.homepage-redesign .file-upload-name.has-file { color: var(--navy); }

body.homepage-redesign .form-submit {
  width: 100%;
  padding: 12px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.15s;
}

body.homepage-redesign .form-submit:hover { background: var(--accent-hover); }

body.homepage-redesign .form-status {
  min-height: 1.25rem;
  margin-top: 10px;
  font-size: 12px;
}

body.homepage-redesign .form-status--success { color: #16a34a; }
body.homepage-redesign .form-status--error { color: #dc2626; }

body.homepage-redesign footer {
  max-width: var(--home-max-w);
  margin: 0 auto;
  padding: 48px var(--px) 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--slate-light);
}

body.homepage-redesign .footer-links {
  display: flex;
  gap: 20px;
}

body.homepage-redesign .footer-links a {
  transition: color 0.15s;
}

body.homepage-redesign .footer-links a:hover { color: var(--navy); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

body.homepage-redesign .how-card:nth-child(1) { animation: fadeUp 0.5s ease-out 0.3s both; }
body.homepage-redesign .how-card:nth-child(2) { animation: fadeUp 0.5s ease-out 0.4s both; }
body.homepage-redesign .how-card:nth-child(3) { animation: fadeUp 0.5s ease-out 0.5s both; }

@media (max-width: 900px) {
  body.homepage-redesign .nav-actions { display: none; }
  body.homepage-redesign .nav-toggle { display: inline-flex; }
  body.homepage-redesign .nav-mobile-cta { display: block; padding-top: 0.5rem; border-top: 1px solid var(--border); }
  body.homepage-redesign .header-logo {
    width: 180px;
    max-width: 200px;
    height: 40px;
    max-height: 40px;
  }
  body.homepage-redesign .header-logo-img {
    height: 34px;
    max-width: 180px;
    max-height: 38px;
  }
  body.homepage-redesign .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--px);
    right: var(--px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-left: 0;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-lg);
    padding: 0.625rem;
    z-index: 50;
  }
  body.homepage-redesign .nav-links.is-open { display: flex; }
  body.homepage-redesign .nav-links li { width: 100%; }
  body.homepage-redesign .nav-links a { display: block; padding: 0.7rem 0.875rem; border-radius: var(--r); }
  body.homepage-redesign .nav-mobile-cta .nav-cta {
    justify-content: center;
    border-radius: var(--r);
  }
}

@media (max-width: 1180px) {
  body.homepage-redesign .home-hero {
    grid-template-columns: minmax(340px, 0.82fr) minmax(620px, 1.3fr);
    gap: 44px;
  }

  body.homepage-redesign .home-hero-report {
    justify-self: stretch;
    max-width: 100%;
  }
}

@media (max-width: 820px) {
  body.homepage-redesign .home-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 36px;
  }
  body.homepage-redesign .home-hero-text { max-width: 100%; }
  body.homepage-redesign .home-hero-title { font-size: 30px; }
  body.homepage-redesign .how-grid { grid-template-columns: 1fr; }
  body.homepage-redesign .how-connector { display: none; }
  body.homepage-redesign .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  body.homepage-redesign .cta-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  body.homepage-redesign .form-row { grid-template-columns: 1fr; }
  body.homepage-redesign .hero-report-preview .body { flex-direction: column; }
  body.homepage-redesign .hero-report-preview .sidebar {
    width: 100%;
    min-width: 100%;
    border-right: none;
    border-bottom: 1px solid #e8eaed;
    padding: 14px 0;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  body.homepage-redesign .hero-report-preview .sb-title { width: 100%; }
  body.homepage-redesign .hero-report-preview .sb-spacer { display: none; }
  body.homepage-redesign .hero-report-preview .sb-total { margin: 8px 10px 0; }
  body.homepage-redesign .hero-report-preview .stats { flex-direction: column; }
  body.homepage-redesign .hero-report-preview .match-grid { grid-template-columns: 1fr; }
  body.homepage-redesign footer {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  body.homepage-redesign .header-logo {
    width: 160px;
    max-width: 160px;
    height: 40px;
    max-height: 40px;
  }
  body.homepage-redesign .header-logo-img {
    width: auto;
    height: 30px;
    max-width: 160px;
    max-height: 34px;
  }
}
