/* ═══════════════════════════════════════════════════════
   CA$H.BOT — Premium Design System
   Matrix-tech aesthetic with green/red accents
   ═══════════════════════════════════════════════════════ */

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

:root {
  --bg: #030504;
  --bg2: #070b08;
  --bg3: #0c110d;
  --bg4: #111812;
  --surface: #070b08;
  --border: rgba(0,217,126,0.06);
  --border-accent: rgba(0,217,126,0.2);
  --text: #e0ffe8;
  --text-secondary: #7a9b85;
  --muted: #3d5a45;
  --accent: #00d97e;
  --accent-bright: #00ff94;
  --accent-dim: rgba(0,217,126,0.06);
  --accent-glow: rgba(0,217,126,0.25);
  --red: #ff3b3b;
  --red-bright: #ff5252;
  --orange: #f6a623;
  --purple: #818cf8;
  --blue: #38bdf8;
  --gold: #fbbf24;
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: 'SF Mono', 'Fira Code', 'Courier New', monospace;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-accent: 0 4px 32px rgba(0,217,126,0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--accent); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent-bright); }
img { max-width: 100%; height: auto; }

/* ── Matrix Rain Background ── */
.grid-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  background: var(--bg);
}
.grid-bg::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(0,217,126,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,217,126,0.018) 1px, transparent 1px);
  background-size: 48px 48px;
}
.grid-bg::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(0,255,148,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(0,217,126,0.03) 0%, transparent 50%);
}

/* ── Matrix Canvas (injected by JS) ── */
#matrix-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.08;
}

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; display: flex; justify-content: space-between; align-items: center; width: 100%; }
section, article { position: relative; z-index: 2; }

/* ── Sticky Navbar ── */
nav {
  position: sticky; top: 0; z-index: 1000;
  padding: 0 32px; height: 64px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3,5,4,0.88);
  backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid rgba(0,217,126,0.08);
  transition: all 0.3s;
}
nav .wrap {
  width: 100%; max-width: 1200px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--mono); font-size: 18px; font-weight: 800;
  letter-spacing: 2px; color: var(--accent-bright);
  text-shadow: 0 0 30px rgba(0,255,148,0.5);
  text-decoration: none;
}
.logo span { color: var(--accent-bright); }
.cta-nav {
  background: var(--accent); color: #000 !important; border: none; border-radius: var(--radius-sm);
  padding: 10px 24px; font-size: 12px; font-weight: 800; cursor: pointer;
  font-family: var(--font); transition: all 0.3s; text-decoration: none;
  letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 0 24px rgba(0,217,126,0.3), 0 0 60px rgba(0,217,126,0.1);
}
.cta-nav:hover { box-shadow: 0 0 40px rgba(0,217,126,0.5), 0 0 80px rgba(0,217,126,0.2); transform: translateY(-1px); color: #000 !important; }

/* ── Nav Links (injected by seo-shared.js) ── */
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  color: var(--text-secondary); font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: var(--radius-sm);
  transition: all 0.2s; text-decoration: none; white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-links a:hover { color: var(--accent-bright); background: rgba(0,217,126,0.06); text-shadow: 0 0 10px rgba(0,255,148,0.3); }
.nav-links a.active { color: var(--accent); text-shadow: 0 0 10px rgba(0,255,148,0.3); }
.nav-hamburger {
  display: none; background: none; border: 1px solid rgba(0,217,126,0.15);
  border-radius: var(--radius-sm); padding: 8px; cursor: pointer; color: var(--accent);
  transition: all 0.3s;
}
.nav-hamburger:hover { border-color: var(--accent); box-shadow: 0 0 20px var(--accent-glow); }
.nav-hamburger svg { width: 20px; height: 20px; }
.nav-hamburger.open svg path:nth-child(1) { d: path("M6 6L18 18"); }
.nav-hamburger.open svg path:nth-child(2) { opacity: 0; }
.nav-hamburger.open svg path:nth-child(3) { d: path("M6 18L18 6"); }

/* ── Footer ── */
footer {
  padding: 48px 0; border-top: 1px solid rgba(0,217,126,0.08);
  text-align: center; color: var(--muted); font-size: 0.85rem;
  background: rgba(0,0,0,0.3);
}
.footer-inner { max-width: 1000px; margin: 0 auto; padding: 0 24px; }
.footer-links {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 16px;
  margin-bottom: 24px;
}
.footer-links a {
  color: var(--muted); font-size: 0.8rem; font-weight: 500;
  transition: all 0.2s; text-decoration: none;
}
.footer-links a:hover { color: var(--accent); text-shadow: 0 0 8px rgba(0,217,126,0.3); }
.footer-copy { color: var(--muted); font-size: 0.8rem; margin-bottom: 8px; }
.footer-founder { color: var(--accent); font-size: 0.7rem; font-weight: 700; letter-spacing: 3px; opacity: 0.5; }

/* ── Hero Section ── */
.page-hero {
  padding: 140px 0 80px; text-align: center;
  background:
    radial-gradient(ellipse at 50% -20%, rgba(0,255,148,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(0,217,126,0.02) 0%, transparent 80%);
}
.page-hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 900;
  letter-spacing: -2px; margin-bottom: 24px; line-height: 1.05;
  text-shadow: 0 0 60px rgba(0,217,126,0.15);
}
.page-hero h1 em {
  font-style: normal;
  color: var(--red-bright);
  text-shadow: 0 0 40px rgba(255,59,59,0.3);
}
.page-hero h1 .green, .page-hero h1 span:not(.accent) {
  color: var(--accent-bright);
  text-shadow: 0 0 40px rgba(0,255,148,0.3);
}
.page-hero p {
  font-size: 1.1rem; color: var(--text-secondary);
  max-width: 600px; margin: 0 auto 36px; line-height: 1.8;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 40px; font-size: 14px; font-weight: 800; cursor: pointer;
  border-radius: var(--radius); font-family: var(--font); transition: all 0.3s;
  border: none; text-decoration: none; letter-spacing: 1px; text-transform: uppercase;
  background: var(--accent); color: #000;
  box-shadow: 0 0 30px rgba(0,217,126,0.25), 0 0 60px rgba(0,217,126,0.08);
}
.btn:hover {
  color: #000;
  box-shadow: 0 0 50px rgba(0,217,126,0.4), 0 0 100px rgba(0,217,126,0.15);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1px solid rgba(0,217,126,0.2); box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--accent); color: var(--accent-bright);
  box-shadow: 0 0 30px rgba(0,217,126,0.15);
}

/* ── Badge ── */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  background: rgba(0,217,126,0.06); color: var(--accent);
  border: 1px solid rgba(0,217,126,0.1);
  text-transform: uppercase;
}
.badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px var(--accent);
  animation: pulseDot 2s infinite;
}

/* ── Article Content ── */
article { padding: 60px 0; }
article h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800;
  margin: 56px 0 16px; letter-spacing: -0.5px; line-height: 1.2;
  color: var(--text);
  text-shadow: 0 0 30px rgba(0,217,126,0.08);
}
article h3 {
  font-size: 1.25rem; font-weight: 700;
  margin: 36px 0 12px; color: var(--accent);
}
article p {
  color: var(--text-secondary); margin-bottom: 16px;
  font-size: 1.05rem; line-height: 1.8;
}
article ul, article ol {
  color: var(--text-secondary); margin: 0 0 20px 24px;
  line-height: 1.8;
}
article li { margin-bottom: 8px; }
article li strong { color: var(--accent-bright); }

/* ── Stats Grid ── */
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px; margin: 40px 0;
}
.stat-card {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.08);
  border-radius: var(--radius); padding: 24px; text-align: center;
  transition: all 0.3s;
  backdrop-filter: blur(8px);
}
.stat-card:hover {
  border-color: rgba(0,217,126,0.2);
  box-shadow: 0 0 40px rgba(0,217,126,0.1);
}
.stat-card .number {
  font-size: 2.5rem; font-weight: 900; color: var(--accent-bright);
  display: block; font-family: var(--mono);
  text-shadow: 0 0 30px rgba(0,255,148,0.4);
}
.stat-card .label {
  font-size: 0.8rem; color: var(--muted); margin-top: 6px; text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── Feature Grid ── */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin: 40px 0;
}
.feature-card {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.06);
  border-radius: var(--radius); padding: 28px;
  transition: all 0.4s;
}
.feature-card:hover {
  border-color: rgba(0,217,126,0.2);
  box-shadow: 0 0 40px rgba(0,217,126,0.08), inset 0 0 40px rgba(0,217,126,0.02);
  transform: translateY(-3px);
}
.feature-card h3 {
  margin: 0 0 10px; font-size: 1.1rem; color: var(--text);
}
.feature-card p {
  margin: 0; font-size: 0.95rem; color: var(--text-secondary);
}

/* ── CTA Box ── */
.cta-box {
  background: rgba(0,217,126,0.03);
  border: 1px solid rgba(0,217,126,0.12);
  border-radius: var(--radius-lg); padding: 56px;
  text-align: center; margin: 72px 0;
  position: relative; overflow: hidden;
}
.cta-box::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 20px rgba(0,217,126,0.5);
}
.cta-box h2 {
  margin-top: 0; color: var(--text); font-size: 1.8rem;
  text-shadow: 0 0 30px rgba(0,217,126,0.1);
}
.cta-box p {
  max-width: 500px; margin: 0 auto 28px; color: var(--text-secondary);
}

/* ── Comparison Table ── */
.comparison-table {
  width: 100%; border-collapse: collapse; margin: 32px 0;
  font-size: 0.9rem;
}
.comparison-table th, .comparison-table td {
  padding: 14px 16px; border: 1px solid rgba(0,217,126,0.06); text-align: center;
}
.comparison-table th {
  background: rgba(0,217,126,0.04); color: var(--accent);
  text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1.5px;
  font-weight: 700;
}
.comparison-table td:first-child {
  text-align: left; font-weight: 600; color: var(--text); background: rgba(0,217,126,0.02);
}
.comparison-table .yes { color: var(--accent-bright); font-weight: 700; text-shadow: 0 0 8px rgba(0,255,148,0.3); }
.comparison-table .no { color: var(--red); font-weight: 700; }
.comparison-table .partial { color: var(--orange); font-weight: 600; }
.comparison-table .highlight { background: rgba(0,217,126,0.04); }
.comparison-table tr:hover td { background: rgba(0,217,126,0.02); }

/* ── Steps (Numbered) ── */
.steps { counter-reset: step; margin: 40px 0; }
.steps .step {
  counter-increment: step;
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.06);
  border-radius: var(--radius); padding: 28px 28px 28px 80px;
  margin-bottom: 12px; position: relative;
  transition: all 0.3s;
}
.steps .step:hover {
  border-color: rgba(0,217,126,0.2);
  box-shadow: 0 0 30px rgba(0,217,126,0.06);
}
.steps .step::before {
  content: counter(step); position: absolute; left: 24px; top: 28px;
  width: 40px; height: 40px; background: var(--accent); color: #000;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; font-family: var(--mono);
  box-shadow: 0 0 24px rgba(0,217,126,0.4);
}
.steps .step h3 { margin: 0 0 8px; font-size: 1.1rem; }
.steps .step p { margin: 0; font-size: 0.95rem; }

/* ── FAQ ── */
.faq { margin: 48px 0; }
.faq details {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.06);
  border-radius: var(--radius-sm); margin-bottom: 8px; padding: 18px 22px;
  transition: all 0.3s;
}
.faq details:hover { border-color: rgba(0,217,126,0.15); }
.faq details[open] { border-color: rgba(0,217,126,0.2); box-shadow: 0 0 30px rgba(0,217,126,0.06); }
.faq summary {
  cursor: pointer; font-weight: 600; color: var(--text);
  font-size: 1.05rem; list-style: none; display: flex; justify-content: space-between; align-items: center;
}
.faq summary::after { content: '+'; color: var(--accent); font-size: 1.4rem; font-weight: 300; transition: transform 0.3s; }
.faq details[open] summary::after { content: '−'; }
.faq details[open] summary { margin-bottom: 14px; color: var(--accent); }
.faq p { margin: 0; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }

/* ── Internal Links ── */
.internal-links {
  padding: 48px 0; border-top: 1px solid rgba(0,217,126,0.06);
}
.internal-links h3 {
  font-family: var(--mono); font-size: 0.7rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 3px; margin-bottom: 16px;
}
.internal-links a {
  display: inline-block; margin: 0 12px 10px 0; font-size: 0.9rem;
  padding: 6px 14px; border: 1px solid rgba(0,217,126,0.08); border-radius: var(--radius-sm);
  transition: all 0.2s; color: var(--text-secondary);
}
.internal-links a:hover {
  border-color: var(--accent); background: rgba(0,217,126,0.06);
  box-shadow: 0 0 20px rgba(0,217,126,0.1); color: var(--accent);
}

/* ── Hub Links Grid ── */
.hub-links {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px; margin: 32px 0;
}
.hub-link {
  display: block; background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.06);
  border-radius: var(--radius-sm); padding: 14px 18px;
  color: var(--text); font-weight: 600; font-size: 0.95rem;
  transition: all 0.3s;
}
.hub-link:hover {
  border-color: var(--accent); color: var(--accent);
  box-shadow: 0 0 30px rgba(0,217,126,0.12); transform: translateY(-1px);
}
.hub-link span {
  display: block; font-size: 0.8rem; color: var(--muted);
  font-weight: 400; margin-top: 4px;
}

/* ── Animations ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes pulseDot {
  0%, 100% { opacity: 1; box-shadow: 0 0 12px var(--accent); }
  50% { opacity: 0.3; box-shadow: 0 0 4px var(--accent); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0,217,126,0.1); }
  50% { box-shadow: 0 0 50px rgba(0,217,126,0.3); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scanline {
  0% { top: -100%; }
  100% { top: 200%; }
}

/* ── Industry Grid ── */
.industry-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px; margin: 32px 0;
}
.industry-card {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.06);
  border-radius: var(--radius-sm); padding: 20px; text-align: center;
  transition: all 0.3s;
}
.industry-card:hover {
  border-color: rgba(0,217,126,0.2);
  box-shadow: 0 0 30px rgba(0,217,126,0.08);
}
.industry-card .icon { font-size: 2rem; margin-bottom: 8px; display: block; }
.industry-card .name { font-weight: 600; color: var(--text); font-size: 0.9rem; }

/* ── Checklist ── */
.checklist {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.08);
  border-radius: var(--radius); padding: 28px; margin: 32px 0;
}
.checklist h3 { margin: 0 0 16px; color: var(--accent); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; }
.checklist label {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 10px 0; border-bottom: 1px solid rgba(0,217,126,0.03);
  color: var(--text-secondary); font-size: 0.95rem; cursor: pointer;
}
.checklist label:last-child { border-bottom: none; }
.checklist input[type=checkbox] { margin-top: 4px; accent-color: var(--accent); }

/* ── TOC ── */
.toc {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.08);
  border-radius: var(--radius); padding: 28px 32px; margin: 32px 0;
}
.toc h3 {
  margin: 0 0 14px; font-family: var(--mono); font-size: 0.7rem;
  color: var(--accent); text-transform: uppercase; letter-spacing: 3px;
}
.toc ol { margin: 0; padding-left: 20px; }
.toc li { margin-bottom: 8px; font-size: 0.95rem; }
.toc a { color: var(--text-secondary); }
.toc a:hover { color: var(--accent); }

/* ── Responsive — Mobile ── */
@media (max-width: 768px) {
  nav { padding: 0 16px; }
  .nav-links {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; background: rgba(3,5,4,0.97);
    backdrop-filter: blur(24px); border-bottom: 1px solid rgba(0,217,126,0.1);
    padding: 16px 24px; gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 15px; border-radius: var(--radius-sm); }
  .nav-links a:hover { background: rgba(0,217,126,0.06); }
  .nav-hamburger { display: flex; align-items: center; justify-content: center; }
  .page-hero { padding: 100px 0 50px; }
  .page-hero h1 { font-size: 2.2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: 1fr; }
  .hub-links { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .steps .step { padding-left: 70px; }
  .cta-box { padding: 36px 20px; }
  .comparison-table { font-size: 0.8rem; display: block; overflow-x: auto; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   COMPATIBILITY: Alternate class names used by some pages
   ═══════════════════════════════════════════════════════ */

/* ── Hero variants ── */
.hero { padding: 140px 0 80px; text-align: center; background: radial-gradient(ellipse at 50% -20%, rgba(0,255,148,0.08) 0%, transparent 60%); }
.hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); font-weight: 900; letter-spacing: -2px; margin-bottom: 24px; line-height: 1.05; text-shadow: 0 0 60px rgba(0,217,126,0.15); }
.hero h1 em, .hero h1 .accent { font-style: normal; color: var(--red-bright); text-shadow: 0 0 40px rgba(255,59,59,0.3); }
.hero h1 span.accent { color: var(--accent-bright); text-shadow: 0 0 40px rgba(0,255,148,0.3); -webkit-text-fill-color: unset; background: none; }
.hero p { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto 36px; }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

/* ── Card variants ── */
.card, .feature-item, .case-card, .benefit-card {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.06);
  border-radius: var(--radius); padding: 28px; transition: all 0.4s;
}
.card:hover, .feature-item:hover, .case-card:hover, .benefit-card:hover {
  border-color: rgba(0,217,126,0.2); box-shadow: 0 0 40px rgba(0,217,126,0.08); transform: translateY(-3px);
}
.card h3, .feature-item h3, .case-card h3 { margin: 0 0 10px; font-size: 1.1rem; color: var(--text); }
.card p, .feature-item p, .case-card p { margin: 0; font-size: 0.95rem; color: var(--text-secondary); }
.card-grid, .case-grid, .benefit-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin: 40px 0;
}

/* ── CTA variants ── */
.cta-btn, .hero-cta .btn, a.cta-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 40px; font-size: 14px; font-weight: 800; cursor: pointer;
  border-radius: var(--radius); font-family: var(--font); transition: all 0.3s;
  border: none; text-decoration: none; background: var(--accent); color: #000;
  letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 0 30px rgba(0,217,126,0.25), 0 0 60px rgba(0,217,126,0.08);
}
.cta-btn:hover { color: #000; box-shadow: 0 0 50px rgba(0,217,126,0.4), 0 0 100px rgba(0,217,126,0.15); transform: translateY(-2px); }
.cta-banner, .inline-cta {
  background: rgba(0,217,126,0.03); border: 1px solid rgba(0,217,126,0.12);
  border-radius: var(--radius-lg); padding: 56px; text-align: center; margin: 72px 0;
}
.cta-banner h2, .inline-cta h2 { margin-top: 0; color: var(--text); font-size: 1.8rem; }
.cta-banner p, .inline-cta p { max-width: 500px; margin: 0 auto 28px; color: var(--text-secondary); }

/* ── FAQ variants ── */
.faq-list { margin: 48px 0; }
.faq-item {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.06);
  border-radius: var(--radius-sm); margin-bottom: 8px; padding: 18px 22px;
  transition: all 0.3s; cursor: pointer;
}
.faq-item:hover { border-color: rgba(0,217,126,0.15); }
.faq-item.active { border-color: rgba(0,217,126,0.2); box-shadow: 0 0 30px rgba(0,217,126,0.06); }
.faq-q {
  font-weight: 600; color: var(--text); font-size: 1.05rem;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; color: var(--accent); font-size: 1.4rem; font-weight: 300; }
.faq-item.active .faq-q::after { content: '−'; }
.faq-item.active .faq-q { color: var(--accent); margin-bottom: 14px; }
.faq-a { display: none; font-size: 0.95rem; color: var(--text-secondary); line-height: 1.7; }
.faq-item.active .faq-a { display: block; }

/* ── Stats bar variants ── */
.stats-bar, .trust-bar {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin: 40px 0;
}
.stats-bar .stat, .trust-bar .stat, .stat-item {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.08);
  border-radius: var(--radius); padding: 20px 28px; text-align: center;
  min-width: 160px; flex: 1;
}
.stat .num, .stat-item .num, .stat .number { font-size: 2rem; font-weight: 900; color: var(--accent-bright); font-family: var(--mono); display: block; text-shadow: 0 0 30px rgba(0,255,148,0.4); }
.stat .label, .stat-item .label { font-size: 0.75rem; color: var(--muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ── Pricing cards ── */
.pricing-grid, .price-cards {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; margin: 40px 0;
}
.price-card, .pricing-card {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.06);
  border-radius: var(--radius); padding: 32px; text-align: center; transition: all 0.4s;
}
.price-card.highlight, .pricing-card.featured, .price-card.best {
  border-color: var(--accent); box-shadow: 0 0 40px rgba(0,217,126,0.12);
}
.price-card h3, .pricing-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--text); }
.price-card .price, .pricing-card .price { font-size: 2.5rem; font-weight: 900; color: var(--accent-bright); font-family: var(--mono); margin: 16px 0; text-shadow: 0 0 20px rgba(0,255,148,0.3); }
.price-card .price small { font-size: 0.9rem; color: var(--muted); font-weight: 400; }

/* ── Breadcrumb ── */
.breadcrumb { font-size: 0.85rem; color: var(--muted); padding: 12px 0; }
.breadcrumb a { color: var(--accent); }

/* ── Job flow / process flow ── */
.job-flow, .process-flow {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex-wrap: wrap; margin: 40px 0; padding: 24px;
}
.flow-step {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.06); border-radius: var(--radius-sm);
  padding: 16px 20px; text-align: center; min-width: 120px;
}
.flow-icon { font-size: 1.5rem; margin-bottom: 6px; display: block; }
.flow-label { font-size: 0.8rem; color: var(--text-secondary); }
.flow-arrow, .arrow { color: var(--accent); font-size: 1.2rem; text-shadow: 0 0 10px rgba(0,217,126,0.3); }

/* ── Service cards ── */
.service-card, .use-case-card {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.06);
  border-radius: var(--radius); padding: 24px; transition: all 0.4s;
}
.service-card:hover, .use-case-card:hover {
  border-color: rgba(0,217,126,0.2); box-shadow: 0 0 30px rgba(0,217,126,0.08);
}

/* ── Lead capture form ── */
.lead-form, .contact-form {
  background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.08);
  border-radius: var(--radius); padding: 32px; margin: 40px 0;
}
.lead-form h3, .contact-form h3 { margin: 0 0 16px; color: var(--text); }
.lead-form input, .lead-form textarea, .contact-form input, .contact-form textarea {
  width: 100%; background: rgba(0,0,0,0.4); border: 1px solid rgba(0,217,126,0.08);
  border-radius: var(--radius-sm); padding: 12px 16px; color: var(--text);
  font-family: var(--font); font-size: 0.95rem; margin-bottom: 12px;
  outline: none; transition: border-color 0.2s;
}
.lead-form input:focus, .lead-form textarea:focus, .contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--accent); box-shadow: 0 0 15px rgba(0,217,126,0.1);
}
.lead-form button, .contact-form button {
  background: var(--accent); color: #000; border: none;
  border-radius: var(--radius-sm); padding: 14px 32px;
  font-weight: 800; font-size: 1rem; cursor: pointer;
  font-family: var(--font); transition: all 0.3s;
  letter-spacing: 1px; text-transform: uppercase;
  box-shadow: 0 0 24px rgba(0,217,126,0.25);
}
.lead-form button:hover, .contact-form button:hover {
  box-shadow: 0 0 50px rgba(0,217,126,0.4); transform: translateY(-1px);
}

/* ── Content section layout ── */
.content-section { padding: 48px 0; }
.lead-section { padding: 48px 0; }
.section-header { margin-bottom: 32px; }

/* ── Icon styling ── */
.icon { font-size: 2rem; margin-bottom: 12px; display: block; }

/* ── Table styling ── */
table { width: 100%; border-collapse: collapse; margin: 24px 0; }
table th, table td { padding: 12px 16px; border: 1px solid rgba(0,217,126,0.06); text-align: left; font-size: 0.9rem; }
table th { background: rgba(0,217,126,0.04); color: var(--accent); font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1.5px; }
table td { color: var(--text-secondary); }
table tr:hover td { background: rgba(0,217,126,0.02); }

/* ── Cost / pricing breakdown ── */
.cost-breakdown { background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.08); border-radius: var(--radius); padding: 28px; margin: 24px 0; }
.cost-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid rgba(0,217,126,0.03); }
.cost-item:last-child { border-bottom: none; }
.cost-amount { font-weight: 800; color: var(--accent-bright); font-family: var(--mono); text-shadow: 0 0 10px rgba(0,255,148,0.3); }

/* ── Highlight column in tables ── */
.highlight-col, .highlight-head { background: rgba(0,217,126,0.04) !important; }

/* ── Big number display ── */
.big { font-size: 2.5rem; font-weight: 900; color: var(--accent-bright); font-family: var(--mono); text-shadow: 0 0 30px rgba(0,255,148,0.4); }

/* ── Calculator / interactive ── */
.calculator { background: rgba(0,217,126,0.02); border: 1px solid rgba(0,217,126,0.08); border-radius: var(--radius); padding: 32px; margin: 40px 0; }
input[type="range"] { width: 100%; accent-color: var(--accent); margin: 8px 0; }

/* ── Book button ── */
.book-btn {
  background: var(--accent); color: #000; border: none;
  border-radius: var(--radius-sm); padding: 8px 20px;
  font-weight: 800; font-size: 0.85rem; cursor: pointer; transition: all 0.2s;
  letter-spacing: 0.5px;
}
.book-btn:hover { box-shadow: 0 0 24px rgba(0,217,126,0.4); }

/* ── Blog styles (for blog pages using seo-shared) ── */
.cb-topnav { display: none; } /* Hide old blog nav, replaced by injected nav */
.blog-container { max-width: 800px; margin: 0 auto; padding: 40px 24px; position: relative; z-index: 2; }
.blog-nav { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; padding-bottom: 20px; border-bottom: 1px solid rgba(0,217,126,0.08); }
.blog-nav a { color: var(--accent); text-decoration: none; font-weight: 600; }
.blog-title { font-size: clamp(28px, 4vw, 42px); font-weight: 900; line-height: 1.2; margin-bottom: 16px; }
.blog-meta { color: var(--text-secondary); font-size: 14px; margin-bottom: 32px; }
.blog-body { font-size: 17px; line-height: 1.8; }
.blog-body h2 { font-size: 24px; font-weight: 700; margin: 32px 0 16px; color: var(--accent); }
.blog-body h3 { font-size: 20px; font-weight: 600; margin: 24px 0 12px; }
.blog-body p { margin-bottom: 16px; color: var(--text-secondary); }
.blog-body ul { margin: 16px 0; padding-left: 24px; }
.blog-body li { margin-bottom: 8px; color: var(--text-secondary); }
.blog-body strong { color: var(--accent-bright); }
.blog-body a { color: var(--accent); text-decoration: underline; }
.blog-cta { background: rgba(0,217,126,0.03); border: 1px solid rgba(0,217,126,0.12); border-radius: var(--radius); padding: 32px; margin: 40px 0; text-align: center; }
.blog-cta h3 { margin-bottom: 12px; color: var(--accent); }
.blog-cta p { margin-bottom: 16px; color: var(--text-secondary); }
.blog-cta a { display: inline-block; padding: 12px 32px; background: var(--accent); color: #000; font-weight: 800; border-radius: var(--radius); text-decoration: none; letter-spacing: 1px; text-transform: uppercase; }
.blog-cta a:hover { box-shadow: 0 0 40px rgba(0,217,126,0.4); }

/* ── Responsive additions ── */
@media (max-width: 768px) {
  .hero { padding: 100px 0 50px; }
  .hero h1 { font-size: 2.2rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .card-grid, .case-grid, .pricing-grid, .benefit-grid { grid-template-columns: 1fr; }
  .stats-bar, .trust-bar { flex-direction: column; align-items: stretch; }
  .job-flow, .process-flow { flex-direction: column; }
  .lead-form, .contact-form { padding: 20px; }
  table { display: block; overflow-x: auto; }
}
