/* ============================================================
   SeahorseDesk — Inner Pages CSS (inner.css)
   Covers all classes used by inner pages not in style.css
   ============================================================ */

/* ── Nav: pages without any hero section show solid white nav ── */
/* Pages WITH .ph (dark navy hero) use the default hero-mode white-logo logic */
/* Pages WITHOUT a hero (404, edge cases) always show solid nav */
body:not(.has-hero) .site-header:not(.hero-mode) {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), var(--sh1);
}

/* ── Dropdown text (dd-text) ─────────────────────────────── */
.dd-text { display: flex; flex-direction: column; gap: 2px; }
.dd-text strong { font-size: 13px; font-weight: 700; color: var(--ink); display: block; }
.dd-text span { font-size: 12px; color: var(--muted); line-height: 1.3; }

/* ── Page Hero (.ph) ─────────────────────────────────────── */
.ph {
  background: linear-gradient(135deg, var(--navy) 0%, #0F2540 100%);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.ph-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.phg1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,93,26,.18), transparent 70%);
  top: -100px; right: -60px;
}
.phg2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(14,168,107,.12), transparent 70%);
  bottom: -80px; left: 10%;
}
.ph .wrap { position: relative; z-index: 1; }
.ph h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  margin: 16px 0 18px;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.ph-sub {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 28px;
}
.ph-bc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-bottom: 24px;
}
.ph-bc a { color: rgba(255,255,255,.55); transition: color .2s; }
.ph-bc a:hover { color: rgba(255,255,255,.9); }
.ph-bc span { color: rgba(255,255,255,.3); }
.ph-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ── Button variants ─────────────────────────────────────── */
.btn-white {
  background: #fff;
  color: var(--brand);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--bg);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.18);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
}
.btn-navy:hover {
  background: #1a3255;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--brand);
  border: 2px solid var(--brand);
}
.btn-outline:hover {
  background: var(--brand-pale);
  transform: translateY(-2px);
}

/* ── Footer inner-pages classes ─────────────────────────── */
.ft-brand { grid-column: 1; }
.ft-brand-logo { margin-bottom: 16px; }
.ft-tagline {
  font-size: 14px;
  color: rgba(255,255,255,.45);
  line-height: 1.7;
  margin-bottom: 24px;
}
.ft-col-heading {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 20px;
}
.ft-col ul { display: flex; flex-direction: column; gap: 10px; }
.ft-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.ft-col ul li a:hover { color: #fff; }
.ft-contact { font-style: normal; }
.ft-meta {
  font-size: 13px;
  color: rgba(255,255,255,.35);
  line-height: 1.6;
  padding: 2px 0;
}
.ft-cta { margin-top: 16px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 13px;
  color: rgba(255,255,255,.3);
}
.footer-bottom a { color: rgba(255,255,255,.45); transition: color .2s; }
.footer-bottom a:hover { color: rgba(255,255,255,.8); }

/* ── Section headings shorthand ─────────────────────────── */
.sh {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 52px;
}
.sh h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  color: var(--ink);
  margin-top: 12px;
  line-height: 1.12;
  letter-spacing: -.03em;
}
.sh p {
  font-size: 16px;
  color: var(--sub);
  margin-top: 14px;
  line-height: 1.7;
}
.tn { color: var(--brand); }

/* ── Two-column layout ───────────────────────────────────── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ── Stat cards ──────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 40px 0;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--sh1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -.03em;
}
.stat-lbl {
  font-size: 13px;
  color: var(--sub);
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 600;
}
.stat-sub {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}

/* ── Services grid (inner pages) ─────────────────────────── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.svc-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.7;
}
.svc-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--brand-pale2);
  line-height: 1;
  margin-bottom: 12px;
}
.step-arr {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  flex-shrink: 0;
}

/* ── Problem list ─────────────────────────────────────────── */
.prob-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prob-item {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  box-shadow: var(--sh1);
  transition: box-shadow .25s, border-color .25s;
}
.prob-item:hover { box-shadow: var(--sh2); border-color: var(--brand); }
.prob-txt h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.prob-txt p { font-size: 14px; color: var(--sub); line-height: 1.65; }

/* ── Scorecard rows ──────────────────────────────────────── */
.sc-rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  overflow: hidden;
  box-shadow: var(--sh1);
}
.sc-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.sc-row:last-child { border-bottom: none; }
.sc-row:hover { background: var(--bg); }
.sc-title { font-size: 14px; font-weight: 600; color: var(--ink); }
.sc-label { font-size: 11px; color: var(--muted); margin-top: 2px; }
.sc-val { font-size: 13px; font-weight: 700; color: var(--green); white-space: nowrap; }
.sc-note { font-size: 11px; color: var(--muted); white-space: nowrap; }

/* ── FAQ list (inner pages) ──────────────────────────────── */
.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Alert strip ─────────────────────────────────────────── */
.alert-strip {
  background: linear-gradient(135deg, rgba(232,93,26,.08), rgba(232,93,26,.04));
  border: 1.5px solid rgba(232,93,26,.2);
  border-radius: var(--rxl);
  padding: 20px 28px;
  margin-bottom: 48px;
}
.alert-inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* ── Policy grid ─────────────────────────────────────────── */
.pol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 40px;
}
.pol-warn {
  background: linear-gradient(135deg, #FFF4EC, #FFF9F6);
  border: 1.5px solid rgba(232,93,26,.2);
  border-radius: var(--rxx);
  padding: 32px;
}
.pol-sol {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pol-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

/* ── Reconciliation recovery item ────────────────────────── */
.rec-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  transition: all .25s;
}
.rec-item:hover { box-shadow: var(--sh2); border-color: var(--brand); transform: translateY(-2px); }
.rec-info h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.rec-info p { font-size: 13.5px; color: var(--sub); line-height: 1.65; }

/* ── Contact page ─────────────────────────────────────────── */
.contact-2col {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 56px;
  align-items: start;
}
.contact-side h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 14px;
  line-height: 1.15;
}
.contact-side > p {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.75;
  margin-bottom: 28px;
}
.cinfo {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.cinfo:last-of-type { border-bottom: none; }
.cinfo-ico {
  width: 36px; height: 36px;
  background: var(--brand-pale);
  border-radius: var(--rm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.cinfo div strong { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.cinfo div span { font-size: 13px; color: var(--sub); line-height: 1.5; }
.cbens {
  margin-top: 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 24px;
}
.cbens h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.cben {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--sub);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}
.cben:last-child { border-bottom: none; }
.cben::before {
  content: '✓';
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  font-size: 14px;
}

/* ── Contact form box ─────────────────────────────────────── */
.form-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxx);
  padding: 44px 40px;
  box-shadow: var(--sh2);
}
.form-box-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 6px;
}
.form-box-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.fg label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--rl);
  font-size: 14.5px;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  font-family: var(--font-body);
}
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(232,93,26,.1);
  background: #fff;
}
.fg textarea { min-height: 110px; resize: vertical; }
.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  font-size: 16px;
  padding: 16px 24px;
}
.form-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}
.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.show { display: block; }
.fs-icon { font-size: 52px; margin-bottom: 16px; }
.fs-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
}
.fs-body { font-size: 15px; color: var(--sub); line-height: 1.75; }

/* ── About page ──────────────────────────────────────────── */
.founder-media {
  display: flex;
  justify-content: center;
}
.founder-av {
  width: 100%;
  max-width: 340px;
  border-radius: var(--rxx);
  overflow: hidden;
  border: 3px solid var(--brand);
  box-shadow: 0 0 0 8px var(--brand-pale), var(--sh3);
}
.founder-av img { width: 100%; height: auto; display: block; }
.founder-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.address-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  box-shadow: var(--sh1);
  margin-top: 20px;
}
.address-ico {
  width: 44px; height: 44px;
  background: var(--brand-pale);
  border-radius: var(--rl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.why-grid {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxx);
  overflow: hidden;
  box-shadow: var(--sh1);
  margin-top: 40px;
}
.why-cell {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 20px;
  align-items: center;
}
.why-cell:last-child { border-bottom: none; }
.why-lbl { font-size: 14px; font-weight: 600; color: var(--ink); }
.why-val { font-size: 13px; font-weight: 700; text-align: center; padding: 4px 12px; border-radius: 100px; }
.c-yes { background: var(--green-pale); color: var(--green); }
.c-no { background: rgba(239,68,68,.08); color: #EF4444; }
.c-hi-col { background: var(--brand-pale); color: var(--brand); }
.tbl-wrap { overflow-x: auto; border-radius: var(--rl); }
.compare-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-tbl th {
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-align: left;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.compare-tbl td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--sub);
  vertical-align: top;
}
.compare-tbl tr:last-child td { border-bottom: none; }

/* ── Legal pages (privacy/terms) ─────────────────────────── */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 60px 0 100px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  margin: 40px 0 14px;
}
.legal-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 10px;
}
.legal-content p {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul {
  margin: 0 0 16px 24px;
}
.legal-content ul li {
  font-size: 15px;
  color: var(--sub);
  line-height: 1.8;
  list-style: disc;
}
.legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rm);
  padding: 8px 16px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 36px;
}

/* ── Blog article pages ──────────────────────────────────── */
.art-wrap {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 0 100px;
}
.art-body {
  font-size: 16px;
  color: var(--sub);
  line-height: 1.85;
}
.art-body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  color: var(--ink);
  margin: 44px 0 16px;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.art-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 28px 0 12px;
}
.art-body p { margin-bottom: 18px; }
.art-body ul, .art-body ol {
  margin: 0 0 18px 24px;
}
.art-body ul li { list-style: disc; margin-bottom: 8px; }
.art-body ol li { list-style: decimal; margin-bottom: 8px; }
.art-body strong { color: var(--ink); font-weight: 700; }
.art-body a { color: var(--brand); text-decoration: underline; }

.art-toc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.art-toc-heading {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.art-toc ol {
  margin: 0;
  padding: 0 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.art-toc ol li { font-size: 14px; color: var(--sub); }
.art-toc ol li a { color: var(--brand); text-decoration: none; }
.art-toc ol li a:hover { text-decoration: underline; }

.art-warn {
  background: linear-gradient(135deg, #FFF4EC, #FFF9F6);
  border-left: 4px solid var(--brand);
  border-radius: 0 var(--rl) var(--rl) 0;
  padding: 18px 24px;
  margin: 28px 0;
}
.art-callout {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rl);
  padding: 20px 24px;
  margin: 28px 0;
}
.art-success {
  background: rgba(14,168,107,.06);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--rl) var(--rl) 0;
  padding: 18px 24px;
  margin: 28px 0;
}

.art-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
  border-radius: var(--rl);
  border: 1px solid var(--border);
}
.art-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.art-table th {
  padding: 12px 16px;
  background: var(--bg);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.art-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--sub);
  vertical-align: top;
}
.art-table tr:last-child td { border-bottom: none; }
.art-table tr:hover td { background: var(--bg); }

.art-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  margin-top: 48px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.art-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  margin-top: 24px;
}
.an-dir {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.an-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand);
  transition: color .2s;
}
.an-title:hover { color: var(--brand-d); }
.art-cta {
  background: linear-gradient(135deg, var(--navy), #162644);
  border-radius: var(--rxx);
  padding: 40px;
  text-align: center;
  margin: 48px 0;
}
.art-cta h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.art-cta p {
  font-size: 15px;
  color: rgba(255,255,255,.65);
  margin-bottom: 24px;
  line-height: 1.65;
}

/* ── Blog index page ─────────────────────────────────────── */
.blog-hero-card {
  background: linear-gradient(135deg, var(--navy), #1a3255);
  border-radius: var(--rxx);
  padding: 48px;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.blog-hero-ico {
  font-size: 52px;
  margin-bottom: 20px;
}
.blog-cat {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.bc-guide { background: var(--brand-pale); color: var(--brand); }
.bc-policy { background: var(--gold-pale); color: var(--gold); }
.bc-tips { background: var(--green-pale); color: var(--green); }
.blog-read { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 700; color: var(--brand); transition: gap .2s; }
.blog-read:hover { gap: 10px; }

/* ── FBA Calculator page ─────────────────────────────────── */
.frow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}
.frow3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}
.f {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.f label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
}
.f input, .f select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--rl);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition: border-color .2s;
  font-family: var(--font-body);
}
.f input:focus, .f select:focus { border-color: var(--brand); background: #fff; box-shadow: 0 0 0 3px rgba(232,93,26,.1); }
.has-pfx, .has-sfx { position: relative; }
.pfx {
  position: absolute;
  left: 12px; top: 50%; transform: translateY(-50%);
  font-weight: 700; color: var(--muted); font-size: 14px; pointer-events: none;
}
.sfx {
  position: absolute;
  right: 12px; top: 50%; transform: translateY(-50%);
  font-weight: 700; color: var(--muted); font-size: 14px; pointer-events: none;
}
.has-pfx input { padding-left: 28px; }
.has-sfx input { padding-right: 28px; }
.fhint { font-size: 11px; color: var(--muted); margin-top: 2px; }
.c-panel {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--rxx);
  padding: 32px;
}
.c-panel-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.c-divider { height: 1px; background: var(--border); margin: 16px 0; }
.res-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
  margin: 24px 0;
}
.res-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--rxl);
  padding: 18px 16px;
  text-align: center;
}
.rc-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 8px; }
.rc-val { font-family: var(--font-display); font-size: 1.6rem; font-weight: 900; color: var(--ink); }
.rc-sub { font-size: 11px; color: var(--muted); margin-top: 4px; }
.rc-info { font-size: 12px; color: var(--sub); margin-top: 6px; }
.rc-blue { color: var(--brand) !important; }
.bk-tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.bk-tbl td { padding: 10px 0; border-bottom: 1px solid var(--border); }
.bk-tbl tr:last-child td { border-bottom: none; }
.bk-sub { color: var(--sub); }
.bk-total { font-weight: 800; color: var(--ink); }
.bk-neg { color: #EF4444 !important; }
.fee-tbl-wrap { overflow-x: auto; }
.fee-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.fee-table th { padding: 10px 14px; background: var(--bg); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); border-bottom: 1px solid var(--border); text-align: left; }
.fee-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--sub); }
.fee-table tr:last-child td { border-bottom: none; }
.h-good { color: var(--green); font-weight: 700; }
.mkt-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 20px; }
.mkt-tab {
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--sub);
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mkt-tab.active, .mkt-tab:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.mkt-flag { font-size: 16px; }
.mkt-badge { font-size: 10px; background: var(--green-pale); color: var(--green); padding: 2px 6px; border-radius: 4px; }
.mb-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 24px 0; }
.mb-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rxl); padding: 18px; }
.mb-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); margin-bottom: 6px; }
.mb-val { font-family: var(--font-display); font-size: 1.4rem; font-weight: 900; color: var(--ink); }
.mb-lbl { font-size: 11px; color: var(--muted); margin-top: 4px; }
.mb-red { color: #EF4444 !important; }
.calc-note { font-size: 12px; color: var(--muted); margin-top: 12px; line-height: 1.5; }
.tips-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 32px; }
.tip-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rxl); padding: 24px; }
.tip-ico { font-size: 28px; margin-bottom: 12px; }
.tier-badge { display: inline-flex; align-items: center; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 700; }
.monthly-box { background: var(--bg); border: 1px solid var(--border); border-radius: var(--rl); padding: 16px 20px; }
.ftab-row { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 24px; }
.ftab {
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  background: var(--bg); border: 1px solid var(--border); color: var(--sub);
  cursor: pointer; transition: all .2s;
}
.ftab.active, .ftab:hover { background: var(--brand); color: #fff; border-color: var(--brand); }
.ftab-panel { display: none; }
.ftab-panel.active { display: block; }
.ppc-toggle-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.ppc-toggle-label { font-size: 13px; font-weight: 600; color: var(--sub); }
.toggle-switch {
  width: 44px; height: 24px;
  background: var(--border);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
  transition: background .2s;
}
.toggle-switch.on { background: var(--green); }
.toggle-switch::after {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.toggle-switch.on::after { transform: translateX(20px); }
.rev-bars { margin: 16px 0; }
.rv-row { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.rv-name { font-size: 12px; font-weight: 600; color: var(--sub); width: 90px; flex-shrink: 0; }
.rv-bg { flex: 1; height: 8px; background: var(--bg2); border-radius: 4px; overflow: hidden; }
.rv-fill { height: 100%; border-radius: 4px; background: var(--brand); transition: width .8s var(--ease); }
.rv-pct { font-size: 12px; font-weight: 700; color: var(--ink); width: 36px; text-align: right; }
.rv-head { display: flex; justify-content: space-between; font-size: 11px; color: var(--muted); margin-bottom: 6px; }
.seo-block { background: var(--bg); border: 1px solid var(--border); border-radius: var(--rxl); padding: 24px; margin-bottom: 16px; }
.seo-two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tg { display: inline-flex; align-items: center; gap: 6px; background: var(--bg); border: 1px solid var(--border); color: var(--sub); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 100px; }
.trust-list { display: flex; flex-direction: column; gap: 8px; }
.ico { display: flex; align-items: center; justify-content: center; }
.hiw-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--border); border-radius: var(--rxx); overflow: hidden; margin-top: 40px; }
.hiw-card { background: var(--white); padding: 32px 24px; position: relative; }
.hiw-num { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: var(--brand-pale2); position: absolute; top: 16px; right: 20px; line-height: 1; }
.hiw-illus { font-size: 36px; margin-bottom: 16px; }
.hiw-card-c1 .hiw-illus { color: var(--brand); }
.hiw-card-c2 .hiw-illus { color: var(--green); }
.hiw-card-c3 .hiw-illus { color: var(--gold); }
.hiw-card-c4 .hiw-illus { color: var(--brand-d); }
.health-bar { height: 8px; background: var(--bg2); border-radius: 4px; overflow: hidden; flex: 1; }
.health-ico { font-size: 20px; flex-shrink: 0; }
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.cmp-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--rxx); padding: 28px; }
.cmp-title { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 16px; }
.cmp-good { color: var(--green); }
.cmp-bad { color: var(--muted); }
.pt-ico { font-size: 28px; margin-bottom: 12px; }

/* ── Product research page ───────────────────────────────── */
.aud-title { font-size: 15px; font-weight: 800; color: var(--ink); margin-bottom: 8px; }
.aud-desc { font-size: 13.5px; color: var(--sub); line-height: 1.65; }
.f-in { display: flex; gap: 12px; align-items: flex-end; }

/* ── has-hero body: keep class but fix nav init ──────────── */
/* The js sets scrolled/hero-mode based on scrollY > 30
   On inner pages with dark .ph hero, nav should show scrolled version by default */

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — INNER PAGES
══════════════════════════════════════════════════════════════ */
@media(max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .two-col.reverse { direction: ltr; }
  .contact-2col { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pol-grid { grid-template-columns: 1fr; }
  .hiw-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .seo-two { grid-template-columns: 1fr; }
  .frow3 { grid-template-columns: 1fr 1fr; }
  .mb-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width: 640px) {
  .ph { padding: 100px 0 52px; }
  .ph h1 { font-size: clamp(1.8rem, 6vw, 2.4rem); }
  .ph-sub { font-size: 15px; }
  .ph-ctas { flex-direction: column; }
  .ph-ctas .btn { width: 100%; justify-content: center; }
  .form-box { padding: 28px 20px; }
  .form-row2 { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .frow { grid-template-columns: 1fr; }
  .frow3 { grid-template-columns: 1fr; }
  .art-cta { padding: 28px 20px; }
  .art-wrap { padding: 40px 0 80px; }
  .blog-hero-card { padding: 28px 20px; }
  .hiw-grid { grid-template-columns: 1fr; }
  .mb-grid { grid-template-columns: 1fr 1fr; }
  .pol-warn, .pol-sol { padding: 20px; }
}
@media(max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .mb-grid { grid-template-columns: 1fr; }
  .res-cards { grid-template-columns: 1fr 1fr; }
  .contact-side h2 { font-size: 1.5rem; }
}

/* ── Footer inner pages responsive ──────────────────────── */
@media(max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; font-size: 12px; }
}

/* ── Index page missing classes ──────────────────────────── */
.hci-text { display: flex; flex-direction: column; gap: 4px; }
.lm-body { display: flex; flex-direction: column; gap: 16px; }
.pc-body { display: flex; flex-direction: column; gap: 12px; }
.prob-body { display: flex; flex-direction: column; }
.ps-body { display: flex; flex-direction: column; gap: 8px; }

/* ── has-hero: body class for pages with dark hero ─────── */
/* Ensures nav starts in white-logo mode on hero pages */
.has-hero .site-header:not(.scrolled) {
  background: transparent;
}
