/* 1stIdeaWeb — site stylesheet.
   Base (tokens, reset, header, hero, dashboard mockup, solutions, stats, tools,
   steps, why, services, final CTA, footer, WhatsApp float, reveal-on-scroll) is
   restored from the premium "1stIdea OS" homepage design (source: live site
   export, assets/css/homepage.css, captured 2026-08-05), de-scoped from its
   original `.hp`-only selectors so the same premium chrome applies site-wide —
   including the new SEO hub/money/supporting/tool pages. Component styles for
   those inner-page templates (prose, breadcrumbs, TOC, FAQ, pros/cons,
   comparison table, related links, coming-soon panel) are appended below using
   the same design tokens, since the original site never had those templates. */

:root {
  --navy: #0a0f1e;
  --navy-2: #0f1830;
  --navy-3: #141f3d;
  --ink: #0f172a;
  --body-text: #475467;
  --muted: #667085;
  --line: #e6e9f0;
  --line-soft: #eef1f6;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-soft-2: #f2f5fb;
  --blue: #2f5fe0;
  --blue-dark: #1f47b8;
  --purple: #7c3aed;
  --cyan: #0ea5c8;
  --green: #17a06b;
  --orange: #ee7a2b;
  --white: #ffffff;
  --grad-brand: linear-gradient(135deg, var(--blue) 0%, var(--purple) 100%);
  --grad-soft: linear-gradient(180deg, #f6f8ff 0%, #ffffff 60%);
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, 0.06);
  --shadow-md: 0 4px 14px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 18px 40px -12px rgba(16, 24, 40, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --container: 1320px;
  --header-h: 76px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Aliases so the inner-page component CSS below (written against the
     previous simplified token set) keeps working unchanged against the
     restored premium tokens above. */
  --ink-soft: var(--muted);
  --radius: var(--radius-md);
  --bg-dark: var(--navy);
}

/* ---------- Reset (scoped to this page) ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
body { margin: 0; padding: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
svg { display: block; }

body {
  font-family: var(--font);
  color: var(--body-text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: #eef2ff;
  border: 1px solid #dfe4fb;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.eyebrow-badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--grad-brand);
  flex: none;
}

.section {
  padding: 96px 0;
}
.section-head {
  max-width: 700px;
  margin: 0 0 52px;
}
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  color: var(--blue-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.section-head p {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  min-height: 48px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 10px 24px -8px rgba(47, 95, 224, 0.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -10px rgba(47, 95, 224, 0.6); }
.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-secondary:hover { border-color: var(--blue); color: var(--blue-dark); transform: translateY(-2px); }
.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.16); transform: translateY(-2px); }
.btn:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 8px;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--ink);
  color: #fff;
  padding: 12px 18px;
  border-radius: 8px;
  z-index: 10000;
}
.skip-link:focus {
  left: 16px;
  top: 16px;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
}
.brand img { height: 38px; width: auto; }
.primary-nav { display: none; }
.primary-nav ul { display: flex; align-items: center; gap: 4px; }
.primary-nav li { position: relative; }
.primary-nav a,
.primary-nav .nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease;
}
.primary-nav a:hover,
.primary-nav .nav-trigger:hover { background: var(--bg-soft-2); color: var(--blue-dark); }
.primary-nav a.nav-new { color: var(--purple); }
.nav-trigger svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.has-dropdown:hover .nav-trigger svg,
.has-dropdown:focus-within .nav-trigger svg { transform: rotate(180deg); }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-panel a {
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 13.5px;
}
.dropdown-panel a small { color: var(--muted); font-weight: 500; font-size: 12px; margin-top: 2px; }
.dropdown-panel a:hover { background: var(--bg-soft-2); }
.header-actions { display: flex; align-items: center; gap: 8px; }
.icon-btn {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  color: var(--ink);
}
.icon-btn:hover { background: var(--bg-soft-2); }
.login-link {
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink);
}
.login-link:hover { background: var(--bg-soft-2); }
.hamburger {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
}
.hamburger:hover { background: var(--bg-soft-2); }
.hamburger span { display: block; width: 20px; height: 2px; background: var(--ink); position: relative; }
.hamburger span::before, .hamburger span::after {
  content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: var(--ink); transition: transform 0.2s ease;
}
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }

@media (min-width: 1024px) {
  .primary-nav { display: block; }
  .hamburger { display: none; }
}
@media (max-width: 1023px) {
  .desktop-only { display: none !important; }
}

/* ---- Mobile drawer ---- */
.mobile-drawer { position: fixed; inset: 0; z-index: 900; visibility: hidden; }
.mobile-drawer[data-open="false"] { display: none; }
.mobile-drawer[data-open="true"] { visibility: visible; }
.drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(10, 15, 30, 0.5);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-drawer[data-open="true"] .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(320px, 86vw);
  background: #fff;
  box-shadow: -12px 0 40px rgba(16,24,40,0.18);
  padding: 20px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow-y: auto;
}
.mobile-drawer[data-open="true"] .drawer-panel { transform: translateX(0); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; }
.drawer-top img { height: 33px; width: auto; }
.drawer-close {
  width: 40px; height: 40px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
}
.drawer-close:hover { background: var(--bg-soft-2); }
.drawer-panel nav ul { display: flex; flex-direction: column; gap: 2px; }
.drawer-panel nav a {
  display: block;
  padding: 14px 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  border-bottom: 1px solid var(--line-soft);
}
.drawer-panel nav a.nav-new { color: var(--purple); }
.drawer-actions { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.drawer-actions .btn { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ================= HERO ================= */
.hero {
  padding: 64px 0 90px;
  background: var(--grad-soft);
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  margin-top: 20px;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.hero-copy p.lede {
  margin-top: 20px;
  font-size: 18px;
  color: var(--muted);
  max-width: 54ch;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-row {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 38px;
  padding-top: 26px;
  border-top: 1px solid var(--line-soft);
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 600; color: var(--ink); }
.trust-item .tick {
  width: 22px; height: 22px; border-radius: 50%;
  background: #e9f8ef; color: var(--green);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}

/* ---- Dashboard mockup ---- */
.hero-visual { position: relative; }
.dashboard {
  position: relative;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.dash-top {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.dash-title { margin-left: 8px; font-size: 12.5px; color: rgba(255,255,255,0.55); font-weight: 600; }
.dash-body { display: grid; grid-template-columns: 148px minmax(0,1fr); min-height: 420px; }
.dash-side {
  border-right: 1px solid rgba(255,255,255,0.08);
  padding: 16px 10px;
  display: flex; flex-direction: column; gap: 2px;
}
.dash-side .item {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 10px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
.dash-side .item.active { background: rgba(255,255,255,0.08); color: #fff; }
.dash-side .item .sw { width: 7px; height: 7px; border-radius: 2px; background: currentColor; opacity: 0.7; flex: none; }
.dash-main { padding: 20px; color: #fff; }
.dash-welcome { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.dash-welcome h3 { font-size: 15px; font-weight: 700; color: #fff; }
.dash-welcome span { font-size: 11.5px; color: rgba(255,255,255,0.45); }
.dash-stats { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px; margin-bottom: 16px; }
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
}
.stat-card .label { font-size: 10.5px; color: rgba(255,255,255,0.5); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.stat-card .value { font-size: 19px; font-weight: 800; color: #fff; margin-top: 6px; }
.stat-card .delta { font-size: 11px; font-weight: 700; margin-top: 4px; }
.stat-card .delta.up { color: #4ade80; }
.chart-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 14px 14px 6px;
  margin-bottom: 12px;
}
.chart-card .chart-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.chart-card .chart-head span { font-size: 11.5px; color: rgba(255,255,255,0.55); font-weight: 600; }
.chart-card svg { width: 100%; height: 92px; }
.dash-bottom-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 12px; }
.mini-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px;
}
.mini-card .label { font-size: 10.5px; color: rgba(255,255,255,0.5); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 8px; }
.mini-bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; font-size: 11px; color: rgba(255,255,255,0.7); }
.mini-bar-track { flex: 1; height: 6px; border-radius: 3px; background: rgba(255,255,255,0.08); overflow: hidden; }
.mini-bar-fill { height: 100%; border-radius: 3px; background: var(--grad-brand); }
.demo-flag {
  position: absolute; top: 14px; right: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  padding: 4px 9px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.14);
}
.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 12px 14px;
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}
.float-chip .ic {
  width: 30px; height: 30px; border-radius: 9px;
  display: inline-flex; align-items: center; justify-content: center;
  flex: none;
}
.chip-seo { top: -44px; left: -20px; }
.chip-seo .ic { background: #e9f8ef; color: var(--green); }
.chip-leads { bottom: -16px; right: -12px; }
.chip-leads,
.chip-seo { padding: 10px 14px; }
.chip-leads .ic { background: #eef2ff; color: var(--blue); }
@media (max-width: 640px) {
  .float-chip { display: none; }
}

@media (min-width: 1024px) {
  .hero .container { grid-template-columns: minmax(0,1fr) minmax(0,1fr); }
}

/* ================= SOLUTIONS / GUIDES card grid ================= */
.solutions-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 20px;
}
@media (min-width: 640px) { .solutions-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
@media (min-width: 1100px) { .solutions-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-card:hover, .feature-card:focus-within {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
}
.feature-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); }
.feature-card p { font-size: 14.5px; color: var(--muted); flex: 1; }
.feature-link { font-size: 14px; font-weight: 700; color: var(--blue-dark); display: inline-flex; align-items: center; gap: 6px; }
.feature-card:hover .feature-link { gap: 9px; }
.feature-link svg { transition: transform 0.2s ease; }
.feature-card:hover .feature-link svg { transform: translateX(2px); }

.ic-purple { background: #f3ecff; color: var(--purple); }
.ic-blue { background: #eaf0ff; color: var(--blue); }
.ic-cyan { background: #e6f8fc; color: var(--cyan); }
.ic-green { background: #e9f8ef; color: var(--green); }
.ic-orange { background: #fdf0e5; color: var(--orange); }

/* ================= STATS (dark) ================= */
.stats-section {
  background: var(--navy);
  padding: 90px 0;
  position: relative;
}
.stats-section .section-head h2,
.stats-section .section-head p { color: #fff; }
.stats-section .section-head p { color: rgba(255,255,255,0.6); }
.stats-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (min-width: 700px) { .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 1080px) { .stats-grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.stat-tile {
  background: var(--navy-2);
  padding: 30px 22px;
}
.stat-tile .feature-icon { margin-bottom: 16px; }
.stat-tile h4 { font-size: 15.5px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.stat-tile p { font-size: 13.5px; color: rgba(255,255,255,0.55); }

/* ================= TOOLS ================= */
.tools-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 16px;
}
@media (min-width: 700px) { .tools-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 1100px) { .tools-grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }
.tool-card {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  position: relative;
}
.tool-card .feature-icon { margin-inline: auto; }
.tool-card h4 { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-top: 12px; }
.tool-badge {
  display: inline-block;
  margin-top: 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  background: #eef1f6;
  border: 1px solid var(--line);
  padding: 4px 9px;
  border-radius: 999px;
}
.tool-card[aria-disabled="true"] { opacity: 0.92; cursor: not-allowed; }
.tool-card > a.feature-link { justify-content: center; margin-top: 10px; }

.icon-sprite { display: none; }

/* ================= HOW IT WORKS ================= */
.steps-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 28px;
  counter-reset: step;
}
@media (min-width: 860px) { .steps-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
.step-card { position: relative; padding-top: 8px; }
.step-num {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--grad-brand);
  color: #fff;
  font-weight: 800;
  font-size: 19px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.step-card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.step-card p { font-size: 14.5px; color: var(--muted); }
.step-connector { display: none; }
@media (min-width: 860px) {
  .step-connector {
    display: block;
    position: absolute;
    top: 26px; left: calc(100% - 8px);
    width: calc(100% - 36px);
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 14px);
  }
}

/* ================= WHY US (split) ================= */
.why-section .container { display: grid; grid-template-columns: minmax(0,1fr); gap: 48px; align-items: center; }
@media (min-width: 980px) { .why-section .container { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
.why-list { display: grid; gap: 18px; margin-top: 28px; }
.why-item { display: flex; gap: 14px; }
.why-item .feature-icon { flex: none; width: 42px; height: 42px; }
.why-item h4 { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.why-item p { font-size: 14px; color: var(--muted); }

.why-illustration {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.why-illustration svg { width: 100%; height: auto; }

/* ================= SERVICES ================= */
.services-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 14px;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
@media (min-width: 1100px) { .services-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
.service-row {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.service-row:hover { border-color: transparent; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.service-row .feature-icon { flex: none; width: 40px; height: 40px; }
.service-row span.name { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.service-row small { display: block; font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ================= FINAL CTA ================= */
.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  border-radius: 0;
  padding: 96px 0;
}
.final-cta .cta-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.final-cta .eyebrow-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); color: #fff; }
.final-cta h2 { color: #fff; margin-top: 20px; }
.final-cta p { color: rgba(255,255,255,0.65); margin-top: 16px; font-size: 17px; }
.final-cta .hero-ctas { justify-content: center; margin-top: 32px; }
.cta-orbit { position: absolute; inset: 0; z-index: 1; opacity: 0.55; }

/* ================= FOOTER ================= */
.site-footer { background: #070b16; color: rgba(255,255,255,0.6); padding: 72px 0 28px; }
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0,1fr);
  gap: 40px;
}
@media (min-width: 720px) { .footer-grid { grid-template-columns: minmax(0,1.4fr) repeat(4, minmax(0,1fr)); } }
@media (min-width: 720px) { .footer-grid-6 { grid-template-columns: minmax(0,1.1fr) repeat(5, minmax(0,1fr)); } }
.footer-brand img { height: 34px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; max-width: 34ch; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
}
.social-row a:hover { background: rgba(255,255,255,0.12); }
.footer-col h5 { color: #fff; font-size: 13.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col a { font-size: 14px; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between;
  font-size: 13px;
}
.footer-legal { display: flex; flex-wrap: wrap; gap: 18px; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 400;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 24px -6px rgba(37, 211, 102, 0.55);
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .stats-section, .final-cta { padding: 64px 0; }
}

/* ==================================================================
   INNER PAGES — hubs, money, supporting, tool stubs
   (new templates; no equivalent existed in the original site design,
   built here on the same restored token set for visual consistency)
   ================================================================== */

.breadcrumbs { padding: 14px 0; font-size: 0.84rem; border-bottom: 1px solid var(--line); }
.breadcrumbs .container, .breadcrumbs ol { max-width: var(--container); margin: 0 auto; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; color: var(--ink-soft); }
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--blue-dark); text-decoration: underline; }
.breadcrumbs li[aria-current] { color: var(--ink); font-weight: 600; }
.sep { color: var(--line); }

.page-content { max-width: 820px; margin: 0 auto; padding-top: 48px; padding-bottom: 80px; }
.page-content h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.18; margin: 0 0 12px; letter-spacing: -0.02em; font-weight: 800; color: var(--ink); }
.page-meta { display: flex; flex-wrap: wrap; gap: 8px; font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 26px; }

.toc { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin-bottom: 30px; }
.toc-title { font-size: 0.9rem; margin: 0 0 8px; font-weight: 700; color: var(--ink); }
.toc ul { margin: 0; padding-left: 18px; list-style: disc; }
.toc a { font-size: 0.92rem; color: var(--blue-dark); }
.toc a:hover { text-decoration: underline; }

.prose h2 { font-size: 1.4rem; margin: 38px 0 14px; letter-spacing: -0.01em; font-weight: 700; color: var(--ink); }
.prose h3 { font-size: 1.14rem; margin: 24px 0 10px; font-weight: 700; color: var(--ink); }
.prose p { margin: 0 0 15px; color: var(--body-text); }
.prose ul, .prose ol { margin: 0 0 15px; padding-left: 22px; color: var(--body-text); list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 7px; }
.prose a { color: var(--blue-dark); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 2px; }
.prose a:hover { text-decoration-color: var(--blue-dark); }
.callout { background: var(--bg-soft); border-left: 3px solid var(--blue); border-radius: 8px; padding: 14px 16px; margin: 0 0 16px; font-size: 0.94rem; }

.pros-cons { display: grid; gap: 16px; margin: 24px 0; }
@media (min-width: 640px) { .pros-cons { grid-template-columns: 1fr 1fr; } }
.pros-cons > div { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; }
.pros h3 { color: var(--green); margin: 0 0 8px; font-size: 1rem; }
.cons h3 { color: var(--orange); margin: 0 0 8px; font-size: 1rem; }
.pros-cons ul { margin: 0; padding-left: 18px; list-style: disc; }

.table-wrap { overflow-x: auto; margin: 24px 0; border-radius: var(--radius); border: 1px solid var(--line); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 480px; }
.comparison-table th, .comparison-table td { border: 1px solid var(--line); padding: 12px 14px; text-align: left; vertical-align: top; }
.comparison-table thead th { background: var(--bg-soft); color: var(--ink); }
.comparison-table th[scope="row"] { font-weight: 700; background: var(--bg-soft); }

.inline-cta {
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
  background: var(--navy); color: rgba(255,255,255,0.85);
  border-radius: var(--radius-lg); padding: 30px; margin: 36px 0;
}
.inline-cta h2 { margin: 0 0 6px; font-size: 1.25rem; color: #fff; }
.inline-cta p { margin: 0; color: rgba(255,255,255,0.65); }
.inline-cta .btn-primary { flex: none; }
@media (min-width: 640px) { .inline-cta { flex-direction: row; align-items: center; justify-content: space-between; } }

.affiliate-disclosure { font-size: 0.82rem; color: var(--ink-soft); border-top: 1px solid var(--line); padding-top: 14px; margin-top: 26px; }
.related-links { margin-top: 36px; border-top: 1px solid var(--line); padding-top: 22px; }
.related-links h2 { font-size: 1.1rem; margin: 0 0 12px; font-weight: 700; color: var(--ink); }
.related-links ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.related-links a { color: var(--blue-dark); font-weight: 600; font-size: 0.94rem; }
.related-links a:hover { text-decoration: underline; }

.hub-child-grid { display: grid; gap: 18px; margin: 24px 0 40px; }
@media (min-width: 640px) { .hub-child-grid { grid-template-columns: repeat(2, 1fr); } }
.hub-child-grid .card,
.hub-child-grid a.card { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; background: #fff; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.hub-child-grid a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.hub-child-grid .card h3 { margin: 0 0 8px; font-size: 1.05rem; color: var(--ink); }
.hub-child-grid .card p { margin: 0; color: var(--ink-soft); font-size: 0.94rem; }

/* generic card grid (used by a few inner sections outside the homepage) */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 860px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4,1fr); } }
.card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.card h3, .card h4 { margin: 0 0 8px; font-size: 1.05rem; color: var(--ink); }
.card p { margin: 0 0 12px; color: var(--ink-soft); font-size: 0.94rem; }

/* ---- coming-soon / tool stub panel ---- */
.coming-soon-panel {
  border: 1px dashed var(--line); border-radius: var(--radius); padding: 26px; background: var(--bg-soft);
  margin: 26px 0;
}
.coming-soon-panel h2 { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
