/* comesportsplay.com - Fresh V9 FSL11 styles
   Combo: LAYOUT_050 (Fantasy Dashboard Cards) + COLOR_138_SLATE_PRO_APP + TYPO_008 (Inter + Noto Sans Devanagari)
   Built from scratch 2026-07-04
*/

:root {
  /* COLOR_138_SLATE_PRO_APP — slate professional app palette */
  --slate-900: #0B1220;
  --slate-800: #111C2E;
  --slate-700: #1A2942;
  --slate-600: #243757;
  --slate-500: #34466A;
  --slate-400: #4D6493;
  --slate-300: #7E92BB;
  --slate-200: #B8C6E0;
  --slate-100: #DDE5F3;

  --accent: #FFC847;       /* warm amber - play-action highlight */
  --accent-2: #FF9E2C;     /* deeper amber */
  --success: #34D399;      /* mint - winning plays */
  --danger: #F87171;       /* coral red - risk flags */
  --info: #60A5FA;         /* sky blue - data */

  --bg: var(--slate-900);
  --bg-2: var(--slate-800);
  --surface: var(--slate-700);
  --surface-2: var(--slate-600);
  --text: #F1F5F9;
  --text-2: #CBD5E1;
  --text-muted: #94A3B8;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* TYPO_008 — Inter + Noto Sans Devanagari */
  --font-body: 'Inter', 'Noto Sans Devanagari', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Inter', 'Noto Sans Devanagari', system-ui, sans-serif;

  /* LAYOUT_050 — Fantasy Dashboard Cards - signature border radius */
  --r-card: 12px;
  --r-tile: 10px;
  --r-pill: 999px;
  --t-fast: 0.18s ease;

  /* Section spacing - LAYOUT_050 unique rhythm */
  --band-pad-y: 64px;
  --gap-section: 56px;
  --gap-card: 20px;

  --header-h: 64px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--accent-2); }

/* TYPO_008 scale */
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--text); margin: 0 0 16px; line-height: 1.2; letter-spacing: -0.01em; }
h1 { font-size: 44px; font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: 32px; font-weight: 800; }
h3 { font-size: 22px; font-weight: 800; }
h4 { font-size: 18px; font-weight: 800; }
h5 { font-size: 15px; font-weight: 700; }
p { margin: 0 0 16px; color: var(--text-2); }

/* Container */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--slate-900);
  padding: 10px 16px; font-weight: 800; z-index: 9999;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- HEADER (MENU_044) ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-strong);
}
.nav-grid {
  display: flex; align-items: center; gap: 24px;
  height: var(--header-h);
  justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 900;
  color: var(--text); font-size: 20px;
}
.brand-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--slate-900); border-radius: var(--r-tile);
  font-size: 14px; font-weight: 900; letter-spacing: -0.02em;
}
.brand em { font-style: normal; color: var(--accent); }
.nav-links {
  display: flex; gap: 6px; align-items: center; flex: 1; justify-content: center;
}
.nav-links a {
  color: var(--text-2); padding: 8px 14px; border-radius: var(--r-tile);
  font-weight: 600; font-size: 14.5px; transition: all var(--t-fast);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--text); background: rgba(255, 200, 71, 0.12);
}
.header-cta { display: flex; gap: 8px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 18px; border-radius: var(--r-tile); font-weight: 700;
  font-size: 14px; cursor: pointer; border: 0; transition: all var(--t-fast);
  font-family: inherit;
}
.btn-sm { padding: 7px 13px; font-size: 13px; }
.btn-lg { padding: 13px 24px; font-size: 15.5px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--slate-900);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(255, 200, 71, 0.32); color: var(--slate-900); }
.btn-ghost {
  background: transparent; color: var(--text); border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.05); color: var(--text); }
.hamburger {
  display: none;
  background: transparent; border: 0; cursor: pointer;
  width: 40px; height: 40px; padding: 8px;
  flex-direction: column; justify-content: space-between;
}
.hamburger span {
  display: block; width: 100%; height: 3px;
  background: var(--text); border-radius: 2px;
  transition: all var(--t-fast);
}

/* Mobile drawer */
.mobile-drawer.is-open, .mobile-drawer.open { display: block !important; }
.mobile-drawer {
  display: none; flex-direction: column;
  background: var(--bg-2); padding: 12px;
  border-top: 1px solid var(--border-strong);
}
.mobile-drawer.open { display: flex; }
.drawer-section {
  color: var(--text); padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}
.drawer-section.active { color: var(--accent); }
.drawer-cta { background: rgba(255, 200, 71, 0.10); color: var(--text); margin-top: 6px; }
.drawer-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: var(--slate-900); font-weight: 800; }

@media (max-width: 899px) {
  .nav-links, .header-cta { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
}

/* ---------- HERO (LAYOUT_050 — Fantasy Dashboard Cards style) ---------- */
.hero {
  position: relative; padding: 56px 0 80px;
  background: linear-gradient(180deg, var(--slate-800) 0%, var(--bg) 100%);
  overflow: hidden;
  min-height: 520px;
}
.hero::before {
  content: ""; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 200, 71, 0.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px;
  align-items: center; position: relative; z-index: 2;
}
.hero-banner {
  width: 100%; height: auto; border-radius: var(--r-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border-strong);
}
.hero-copy .eyebrow {
  display: inline-block;
  background: rgba(255, 200, 71, 0.14); color: var(--accent);
  font-size: 12px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; padding: 6px 12px; border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.hero h1 { font-size: 50px; line-height: 1.05; margin-bottom: 18px; }
.hero-lede { font-size: 18px; color: var(--text-2); margin-bottom: 28px; max-width: 580px; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-trust {
  display: flex; gap: 18px; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-2);
}
.hero-trust-item strong { color: var(--text); font-weight: 800; }



/* ---------- BAND / SECTION (LAYOUT_050 unique spacing) ---------- */
.band {
  padding: var(--band-pad-y) 0;
  position: relative;
}
.band-elev-1 { background: var(--bg-2); }
.band-elev-2 { background: var(--bg); }
.band-elev-3 { background: linear-gradient(180deg, var(--slate-800) 0%, var(--slate-700) 100%); }

.band-header { margin-bottom: 36px; max-width: 800px; }
.band-header .eyebrow {
  display: inline-block;
  background: rgba(96, 165, 250, 0.12); color: var(--info);
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; padding: 5px 11px; border-radius: var(--r-pill);
  margin-bottom: 14px;
}
.band-title {
  font-size: 32px; font-weight: 900; margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.band-lede { font-size: 16px; color: var(--text-2); margin: 0; }

/* ---------- CARD GRID (LAYOUT_050 dashboard cards) ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--gap-card);
}
.card {
  background: linear-gradient(135deg, rgba(255, 200, 71, 0.06) 0%, rgba(96, 165, 250, 0.04) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: 24px;
  transition: all var(--t-fast);
  position: relative;
}
.card:hover {
  border-color: rgba(255, 200, 71, 0.4);
  transform: translateY(-2px);
}
.card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: var(--r-tile);
  background: rgba(255, 200, 71, 0.16); color: var(--accent);
  font-weight: 900; font-size: 18px;
  margin-bottom: 14px;
}
.card h3 { font-size: 18px; margin-bottom: 8px; color: var(--text); }
.card p { font-size: 14.5px; color: var(--text-2); margin: 0; line-height: 1.55; }
.card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px; font-size: 13px; font-weight: 800;
  color: var(--accent);
}

/* ---------- STAT TILES (LAYOUT_050 data dashboard) ---------- */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}
.data-card {
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-tile);
  padding: 22px;
  text-align: center;
}
.data-num {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 900; color: var(--accent);
  line-height: 1; letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.data-label {
  font-size: 11px; color: var(--text-muted); text-transform: uppercase;
  letter-spacing: 0.12em; font-weight: 700;
}

/* ---------- STEP GRID ---------- */
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: 24px;
  position: relative;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-pill);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: var(--slate-900); font-weight: 900; font-size: 16px;
  margin-bottom: 14px;
}
.step-card h3 { font-size: 17px; margin-bottom: 8px; }
.step-card p { font-size: 14px; margin: 0; color: var(--text-2); }

/* ---------- LOOSE CARD (mid-section content wrapper) ---------- */
.loose-card {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.08) 0%, rgba(96, 165, 250, 0.02) 100%);
  border: 1px solid rgba(96, 165, 250, 0.30);
  border-radius: var(--r-card);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  padding: 26px;
  margin: 28px 0;
}
.loose-card h3 {
  color: var(--info);
  font-size: 20px;
  display: flex; align-items: center; gap: 12px;
  margin: 0 0 16px;
}
.loose-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: rgba(96, 165, 250, 0.2); color: var(--info);
  border-radius: var(--r-tile); font-size: 16px; font-weight: 900;
}
.loose-card p { color: var(--text-2); margin-bottom: 12px; }
.loose-card p:last-child { margin-bottom: 0; }

/* ---------- RISK CARDS ---------- */
.risk-card {
  background: linear-gradient(135deg, rgba(248, 113, 113, 0.08) 0%, rgba(248, 113, 113, 0.02) 100%);
  border: 1px solid rgba(248, 113, 113, 0.35);
  border-radius: var(--r-card);
  padding: 22px;
}
.risk-card h3 { color: var(--danger); font-size: 17px; margin-bottom: 8px; }
.risk-card p { font-size: 14px; margin: 0; color: var(--text-2); }

/* ---------- INLINE IMAGE ROW (anti-stacking, image distribution) ---------- */
.inline-image-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
  background: linear-gradient(135deg, rgba(255, 200, 71, 0.05) 0%, rgba(96, 165, 250, 0.03) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: 24px;
  margin: 32px 0;
}
.inline-image-row-right { direction: rtl; }
.inline-image-row-right > * { direction: ltr; }
.inline-image-row-left { direction: ltr; }
.inline-image-row img {
  width: 100%; height: auto; border-radius: var(--r-tile);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
}
.inline-image-row .eyebrow {
  display: inline-block;
  background: rgba(255, 200, 71, 0.14); color: var(--accent);
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.14em; padding: 5px 11px; border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.inline-image-row h4 { color: var(--text); margin-bottom: 10px; font-size: 19px; }
.inline-image-row p { font-size: 14.5px; color: var(--text-2); margin: 0; }

@media (max-width: 899px) {
  .inline-image-row { grid-template-columns: 1fr; }
  .inline-image-row-right, .inline-image-row-left { direction: ltr; }
}

/* ---------- DATA TABLE ---------- */
.data-table {
  width: 100%; border-collapse: collapse;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  overflow: hidden;
  margin: 20px 0;
}
.data-table th {
  background: rgba(255, 200, 71, 0.12);
  color: var(--accent);
  padding: 12px 14px;
  text-align: left;
  font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.10em;
}
.data-table td {
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  color: var(--text-2);
  font-size: 14px;
}
.data-table tr:hover td { background: rgba(255, 255, 255, 0.03); }

/* ---------- FAQ GRID ---------- */
.faq-grid {
  display: flex; flex-direction: column;
  gap: 10px;
}
details.faq-item {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-tile);
  padding: 0;
  transition: border-color var(--t-fast);
}
details.faq-item[open] { border-color: rgba(255, 200, 71, 0.35); }
details.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700; color: var(--text);
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  font-size: 15px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+'; color: var(--accent); font-weight: 900;
  font-size: 22px; flex-shrink: 0;
  transition: transform var(--t-fast);
}
details.faq-item[open] summary::after { content: '−'; transform: rotate(0); }
details.faq-item > p {
  padding: 0 22px 18px;
  margin: 0;
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ---------- QUOTE / CALLOUT ---------- */
.pull-quote {
  margin: 32px 0; padding: 22px 26px;
  background: linear-gradient(135deg, rgba(255, 200, 71, 0.10) 0%, rgba(255, 200, 71, 0.02) 100%);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-tile);
  font-size: 17px; font-style: italic;
  color: var(--text);
}
.pull-quote cite {
  display: block; margin-top: 10px;
  font-size: 13px; font-style: normal;
  color: var(--text-muted); font-weight: 700;
}

.takeaway-box {
  margin: 32px 0; padding: 26px;
  background: linear-gradient(135deg, rgba(52, 211, 153, 0.08) 0%, rgba(52, 211, 153, 0.02) 100%);
  border: 1px solid rgba(52, 211, 153, 0.30);
  border-radius: var(--r-card);
}
.takeaway-box h3 { color: var(--success); font-size: 18px; margin-bottom: 12px; }
.takeaway-box ul { padding-left: 22px; margin: 0; }
.takeaway-box li { margin-bottom: 8px; color: var(--text-2); font-size: 14.5px; line-height: 1.55; }
.takeaway-box li::marker { color: var(--success); }

/* ---------- PAGE-SPECIFIC BAND VARIANTS (LAYOUT_050 dashboard sections) ---------- */
.band-page-specific {
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.band-csipl {
  background: linear-gradient(135deg, rgba(255, 200, 71, 0.04) 0%, rgba(96, 165, 250, 0.04) 100%);
}
.band-methodology {
  background: linear-gradient(180deg, var(--slate-800) 0%, var(--slate-700) 100%);
}
.band-ipl-specific {
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.05) 0%, rgba(255, 200, 71, 0.03) 100%);
}

/* ---------- BLOG / NEWS CARDS ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: all var(--t-fast);
}
.news-card:hover {
  border-color: rgba(255, 200, 71, 0.4);
  transform: translateY(-2px);
}
.news-card img {
  width: 100%; height: 180px; object-fit: cover;
  border-bottom: 1px solid var(--border);
}
.news-card-body { padding: 18px; }
.news-card-tag {
  display: inline-block;
  background: rgba(255, 200, 71, 0.14); color: var(--accent);
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.12em; padding: 4px 10px; border-radius: var(--r-pill);
  margin-bottom: 10px;
}
.news-card h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.35; }
.news-card p { font-size: 13.5px; color: var(--text-2); margin: 0; }
.news-meta { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ---------- TOC (table of contents) ---------- */
.toc {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: 24px;
  margin: 32px 0;
}
.toc h3 {
  font-size: 16px; color: var(--accent);
  margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.10em;
}
.toc ul { list-style: none; padding: 0; margin: 0; }
.toc li { margin-bottom: 8px; }
.toc a {
  color: var(--text-2); font-size: 14.5px;
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
}
.toc a::before { content: '→'; color: var(--accent); font-weight: 800; }
.toc a:hover { color: var(--accent); }

/* ---------- COMPARISON TABLE ---------- */
.compare-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.compare-table th, .compare-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 14px;
}
.compare-table th {
  background: var(--surface);
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 12px;
}
.compare-table td { color: var(--text-2); }

/* ---------- PROSE (general text blocks) ---------- */
.prose { font-size: 16px; color: var(--text-2); line-height: 1.7; }
.prose p { margin-bottom: 16px; }
.prose strong { color: var(--text); font-weight: 700; }
.prose em { color: var(--accent); font-style: normal; font-weight: 600; }

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--slate-900);
  border-top: 1px solid var(--border-strong);
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 {
  color: var(--accent); font-size: 13px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a {
  color: var(--text-2); font-size: 14px;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--accent); }
.footer-brand p { color: var(--text-muted); font-size: 13.5px; margin-top: 12px; }
.footer-social {
  display: flex; gap: 10px; margin-top: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: var(--r-tile);
  color: var(--text-2); font-size: 14px; font-weight: 800;
  transition: all var(--t-fast);
}
.footer-social a:hover { background: var(--accent); color: var(--slate-900); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

@media (max-width: 899px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 599px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- STICKY MOBILE CTA (LAYOUT_050) ---------- */
.sticky-mobile-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 99;
  background: rgba(11, 18, 32, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-strong);
  padding: 12px 16px;
}
.sticky-mobile-cta .btn { width: 100%; }
@media (max-width: 899px) {
  .sticky-mobile-cta { display: block; }
  body { padding-bottom: 70px; }
}

/* ---------- SECTION OFFSET (sticky-nav fix) ---------- */
section[id] { scroll-margin-top: 80px; }

/* ---------- RESPONSIVE GRID TWEAKS ---------- */
@media (max-width: 899px) {
  :root { --band-pad-y: 44px; --gap-section: 36px; }
  .band-title { font-size: 26px; }
}
/* ---------- RELATED LINKS ---------- */
.related-links {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-card);
  padding: 24px;
  margin: 32px 0;
}
.related-links h3 {
  font-size: 16px; color: var(--accent);
  margin-bottom: 14px;
  text-transform: uppercase; letter-spacing: 0.10em;
}
.related-links ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.related-links li { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--r-tile); padding: 14px 18px; }
.related-links a { color: var(--text); font-weight: 700; font-size: 15px; }
.related-links p { color: var(--text-2); font-size: 13.5px; margin: 6px 0 0; }

/* ---------- SOCIAL ICONS ---------- */
.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icons a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--surface); border-radius: var(--r-tile);
  color: var(--text-2); font-size: 14px; font-weight: 800;
  transition: all var(--t-fast);
}
.social-icons a:hover { background: var(--accent); color: var(--slate-900); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 200, 71, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--slate-700) 0%, var(--slate-800) 100%);
  border-top: 1px solid var(--border-strong);
  border-bottom: 1px solid var(--border-strong);
}
.cta-band h2 { font-size: 30px; margin-bottom: 12px; }
.cta-band p { color: var(--text-2); max-width: 640px; margin-bottom: 18px; font-size: 16px; }

/* ---------- METHODOLOGY MINI ---------- */
.methodology-mini {
  margin: 32px 0;
  padding: 22px 26px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.10) 0%, rgba(96, 165, 250, 0.02) 100%);
  border-left: 4px solid var(--info);
  border-radius: var(--r-tile);
}
.methodology-mini h4 { color: var(--info); font-size: 17px; margin-bottom: 10px; }
.methodology-mini p { color: var(--text-2); font-size: 14.5px; margin: 0; line-height: 1.6; }


/* ---------- INLINE IMG ---------- */
.inline-img { width: 100%; max-width: 1024px; height: auto; border-radius: 14px; margin: 20px auto; box-shadow: 0 4px 16px rgba(0,0,0,0.4); display: block; }


/* ===========================================
   COMPREHENSIVE CARD SYSTEM
   =========================================== */

/* ---------- STAT CARD (KPI) ---------- */
.stat-card {
  position: relative;
  padding: 28px 24px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.12));
  border-radius: 16px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, #FFD700), var(--accent-2, #FF8A3D));
}
.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  border-color: var(--accent, #FFD700);
}
.stat-num {
  font-size: 44px;
  font-weight: 800;
  color: var(--accent, #FFD700);
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-display, system-ui, sans-serif);
}
.stat-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text, #fff);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.stat-sub {
  font-size: 12px;
  color: var(--text-2, rgba(255,255,255,0.6));
}

/* ---------- STAT GRID ---------- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

/* ---------- FEATURE CARD ---------- */
.feature-card {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.005) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.10));
  border-radius: 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, #FFD700);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent, #FFD700) 0%, var(--accent-2, #FF8A3D) 100%);
  color: var(--bg, #060F1E);
  font-size: 28px;
  font-weight: 800;
  border-radius: 14px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}
.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text, #fff);
}
.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-2, rgba(255,255,255,0.7));
  margin: 0;
}

/* ---------- FEATURE GRID ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

/* ---------- HUB CARD (page navigation) ---------- */
.hub-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.12));
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  overflow: hidden;
}
.hub-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent, #FFD700), var(--accent-2, #FF8A3D));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.hub-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent, #FFD700);
  background: linear-gradient(180deg, rgba(255,215,0,0.06) 0%, rgba(255,255,255,0.01) 100%);
}
.hub-card:hover::after {
  transform: scaleX(1);
}
.hub-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent, #FFD700);
  background: rgba(255, 215, 0, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.hub-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--text, #fff);
}
.hub-card p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-2, rgba(255,255,255,0.7));
  margin: 0 0 12px;
  flex-grow: 1;
}
.hub-arrow {
  font-size: 18px;
  color: var(--accent, #FFD700);
  font-weight: 800;
  margin-top: auto;
}

/* ---------- HUB GRID ---------- */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

/* ---------- COMPARISON CARD (operator stats) ---------- */
.comparison-card {
  padding: 28px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.12));
  border-radius: 14px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.comparison-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent, #FFD700);
}
.comparison-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--accent, #FFD700);
  font-family: var(--font-display, system-ui, sans-serif);
  border-bottom: 2px solid var(--accent, #FFD700);
  padding-bottom: 12px;
}
.comparison-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
}
.comparison-stat:last-child {
  border-bottom: none;
}
.comparison-stat span {
  font-size: 13px;
  color: var(--text-2, rgba(255,255,255,0.7));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparison-stat strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--text, #fff);
}

/* ---------- COMPARISON GRID ---------- */
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin: 32px 0;
}

/* ---------- TESTIMONIAL CARD (user wins) ---------- */
.testimonial-card {
  position: relative;
  padding: 32px 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.12));
  border-radius: 14px;
  margin-top: 16px;
}
.testimonial-card::before {
  content: '“';
  position: absolute;
  top: -10px;
  left: 24px;
  font-size: 80px;
  color: var(--accent, #FFD700);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text, #fff);
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border, rgba(255,255,255,0.10));
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent, #FFD700), var(--accent-2, #FF8A3D));
  color: var(--bg, #060F1E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
}
.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text, #fff);
}
.testimonial-role {
  font-size: 12px;
  color: var(--text-2, rgba(255,255,255,0.6));
}

/* ---------- TESTIMONIAL GRID ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

/* ---------- PRICING CARD (operator bonuses) ---------- */
.pricing-card {
  position: relative;
  padding: 32px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border, rgba(255,255,255,0.12));
  border-radius: 16px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.pricing-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, #FFD700);
}
.pricing-card-featured {
  border-color: var(--accent, #FFD700);
  background: linear-gradient(180deg, rgba(255,215,0,0.06) 0%, rgba(255,255,255,0.01) 100%);
  transform: scale(1.03);
}
.pricing-tier {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent, #FFD700);
  margin-bottom: 8px;
}
.pricing-amount {
  font-size: 56px;
  font-weight: 800;
  color: var(--text, #fff);
  line-height: 1;
  margin: 16px 0 8px;
  font-family: var(--font-display, system-ui, sans-serif);
}
.pricing-cap {
  font-size: 14px;
  color: var(--text-2, rgba(255,255,255,0.6));
  margin-bottom: 24px;
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}
.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  color: var(--text, #fff);
  border-bottom: 1px solid var(--border, rgba(255,255,255,0.08));
  display: flex;
  align-items: center;
}
.pricing-features li::before {
  content: '¹3';
  color: var(--accent, #FFD700);
  font-weight: 800;
  margin-right: 10px;
  font-size: 16px;
}
.pricing-features li:last-child {
  border-bottom: none;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent, #FFD700), var(--accent-2, #FF8A3D));
  color: var(--bg, #060F1E);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- PRICING GRID ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 32px 0;
  align-items: center;
}

/* ---------- CTA CARD ---------- */
.cta-card {
  padding: 56px 32px;
  background: linear-gradient(135deg, var(--accent, #FFD700) 0%, var(--accent-2, #FF8A3D) 100%);
  color: var(--bg, #060F1E);
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px;
  position: relative;
}
.cta-card p {
  font-size: 16px;
  margin: 0 0 24px;
  opacity: 0.85;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.cta-buttons .btn {
  background: var(--bg, #060F1E);
  color: var(--accent, #FFD700);
  border: 2px solid var(--bg, #060F1E);
}
.cta-buttons .btn:hover {
  background: transparent;
  color: var(--bg, #060F1E);
}
.band-elev-cta {
  background: linear-gradient(180deg, var(--bg-2, #0E1421) 0%, var(--bg, #060F1E) 100%);
}

/* ---------- BAND HEADER (section title) ---------- */
.band-header {
  text-align: center;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.band-header .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent, #FFD700);
  background: rgba(255, 215, 0, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.band-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--text, #fff);
  line-height: 1.1;
  font-family: var(--font-display, system-ui, sans-serif);
  letter-spacing: -0.02em;
}
.band-header .band-lede {
  font-size: 16px;
  color: var(--text-2, rgba(255,255,255,0.7));
  margin: 0;
  line-height: 1.5;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .stat-num { font-size: 36px; }
  .pricing-amount { font-size: 44px; }
  .band-header h2 { font-size: 28px; }
  .cta-card { padding: 40px 24px; }
  .cta-card h2 { font-size: 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .hub-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-featured { transform: none; }
}

@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
}


/* ---------- MOBILE HERO PATCH v2 (tighter) ---------- */




/* ---------- FINAL MOBILE HERO PATCH (v3) ---------- */
@media (max-width: 960px) {
  .hero {
    padding: 12px 0 16px !important;
    min-height: 0 !important;
    max-height: 560px !important;
    overflow: hidden !important;
  }
  .hero .stat-grid,
  .hero .hero-trust,
  .hero .hero-stats {
    display: none !important;
  }
  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .hero-banner {
    order: -1 !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    max-height: 150px !important;
    aspect-ratio: auto !important;
    width: 100% !important;
    object-fit: cover !important;
    display: block !important;
  }
  .hero-copy h1 {
    font-size: 20px !important;
    margin-bottom: 4px !important;
    line-height: 1.1 !important;
  }
  .hero-lede {
    font-size: 12px !important;
    margin-bottom: 6px !important;
    line-height: 1.4 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-cta {
    flex-wrap: wrap !important;
    gap: 6px !important;
  }
  .hero-cta .btn {
    padding: 7px 10px !important;
    font-size: 11px !important;
    flex: 1 1 auto !important;
  }
}

/* ========== /* ========== MOBILE NAV FIX (v2) ========== */
/* Hide nav-links and header-cta on mobile, show hamburger */
@media (max-width: 960px) {
  .nav-links,
  .header-cta {
    display: none !important;
  }
  .hamburger {
    display: inline-flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .site-header .container,
  .nav-grid {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ===========================================
   IMAGE CARD VARIANTS (visual-only)
   =========================================== */

/* ---------- FEATURE CARD WITH IMAGE ---------- */
.feature-card-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: var(--bg-2, #0E1421);
  border: 1px solid var(--border, rgba(255,255,255,0.10));
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.feature-card-img:hover {
  transform: translateY(-6px);
  border-color: var(--accent, #FFD700);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}
.feature-card-img img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.feature-card-img:hover img {
  transform: scale(1.05);
}
.feature-card-body {
  padding: 20px;
}
.feature-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: var(--text, #fff);
}

/* ---------- DATA CARD WITH IMAGE ---------- */
.data-card-img {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-2, #0E1421);
  border: 1px solid var(--border, rgba(255,255,255,0.10));
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.data-card-img:hover {
  transform: translateY(-4px);
  border-color: var(--accent, #FFD700);
}
.data-card-img img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.data-card-img .data-num {
  padding: 20px 20px 4px;
  font-size: 36px;
  font-weight: 800;
  color: var(--accent, #FFD700);
  margin: 0;
  font-family: var(--font-display, system-ui, sans-serif);
}
.data-card-img .data-label {
  padding: 0 20px 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-2, rgba(255,255,255,0.6));
}

/* ---------- STEP CARD WITH IMAGE ---------- */
.step-card-img {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-2, #0E1421);
  border: 1px solid var(--border, rgba(255,255,255,0.10));
  transition: transform 0.2s ease;
}
.step-card-img:hover {
  transform: translateY(-4px);
}
.step-card-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.step-card-img .step-num {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: var(--accent, #FFD700);
  color: var(--bg, #060F1E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.step-card-img h3 {
  padding: 16px 20px;
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: var(--text, #fff);
}

/* ---------- HUB CARD WITH IMAGE ---------- */
.hub-card-img {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  background: var(--bg-2, #0E1421);
  border: 1px solid var(--border, rgba(255,255,255,0.10));
  transition: transform 0.2s ease, border-color 0.2s ease;
  min-height: 240px;
}
.hub-card-img:hover {
  transform: translateY(-4px);
  border-color: var(--accent, #FFD700);
}
.hub-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0; left: 0;
  z-index: 0;
}
.hub-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 100%);
  z-index: 1;
}
.hub-card-body .hub-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent, #FFD700);
  background: rgba(255, 215, 0, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 8px;
}
.hub-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* ---------- COMPARISON CARD WITH IMAGE ---------- */
.comparison-card-img {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-2, #0E1421);
  border: 1px solid var(--border, rgba(255,255,255,0.10));
  transition: transform 0.2s ease;
}
.comparison-card-img:hover {
  transform: translateY(-4px);
  border-color: var(--accent, #FFD700);
}
.comparison-card-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.comparison-card-img h3 {
  padding: 16px 20px 8px;
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: var(--accent, #FFD700);
  font-family: var(--font-display, system-ui, sans-serif);
}
.comparison-card-img .comparison-stat {
  padding: 8px 20px;
  margin: 0;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.comparison-card-img .comparison-stat span {
  font-size: 12px;
  color: var(--text-2, rgba(255,255,255,0.6));
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.comparison-card-img .comparison-stat strong {
  font-size: 16px;
  font-weight: 800;
  color: var(--text, #fff);
}

/* ---------- TESTIMONIAL CARD WITH IMAGE ---------- */
.testimonial-card-img {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-2, #0E1421);
  border: 1px solid var(--border, rgba(255,255,255,0.10));
  transition: transform 0.2s ease;
}
.testimonial-card-img:hover {
  transform: translateY(-4px);
}
.testimonial-card-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.testimonial-body {
  padding: 20px;
}
.testimonial-body .testimonial-quote {
  font-size: 15px;
  line-height: 1.6;
  color: var(--text, #fff);
  font-style: italic;
  margin-bottom: 12px;
}
.testimonial-body .testimonial-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent, #FFD700);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- PRICING CARD WITH IMAGE ---------- */
.pricing-card-img {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-2, #0E1421);
  border: 1px solid var(--border, rgba(255,255,255,0.10));
  transition: transform 0.2s ease;
}
.pricing-card-img:hover {
  transform: translateY(-6px);
  border-color: var(--accent, #FFD700);
}
.pricing-card-img img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.pricing-card-img .pricing-tier {
  padding: 16px 20px 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent, #FFD700);
}
.pricing-card-img .pricing-amount {
  padding: 0 20px;
  font-size: 48px;
  font-weight: 800;
  color: var(--text, #fff);
  line-height: 1;
  font-family: var(--font-display, system-ui, sans-serif);
}
.pricing-card-img .pricing-cap {
  padding: 8px 20px 20px;
  font-size: 13px;
  color: var(--text-2, rgba(255,255,255,0.6));
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .feature-card-img img,
  .data-card-img img,
  .step-card-img img,
  .hub-card-img img,
  .comparison-card-img img,
  .testimonial-card-img img,
  .pricing-card-img img {
    aspect-ratio: 16 / 10;
  }
}

/* ===========================================
   FOOTER COMPONENTS
   =========================================== */
.site-footer {
  background: var(--bg-2, #0E1421);
  color: var(--text, #fff);
  padding: 48px 0 32px;
  border-top: 1px solid var(--border, rgba(255,255,255,0.10));
}
.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent, #FFD700);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-2, rgba(255,255,255,0.6));
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  padding: 6px 0;
  font-size: 13px;
}
.footer-col ul li a {
  color: var(--text-2, rgba(255,255,255,0.6));
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-col ul li a:hover {
  color: var(--accent, #FFD700);
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.1);
  color: var(--accent, #FFD700);
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  transition: all 0.2s ease;
}
.social-icons a:hover {
  background: var(--accent, #FFD700);
  color: var(--bg, #060F1E);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border, rgba(255,255,255,0.10));
  text-align: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-2, rgba(255,255,255,0.6));
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px !important;
  }
}
@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .site-footer {
    padding: 32px 0 24px;
  }
}

/* ===========================================
   MOBILE HERO HEADING FIX (v2)
   =========================================== */
@media (max-width: 960px) {
  .hero-copy h1 {
    font-size: 22px !important;
    line-height: 1.2 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 100% !important;
  }
  .hero-lede {
    font-size: 14px !important;
    line-height: 1.5 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
  }
}

/* Hide sticky mobile CTA on iOS Safari because iOS has bottom bar */
@supports (-webkit-touch-callout: none) {
  .sticky-mobile-cta {
    display: none !important;
  }
}

/* Add bottom padding so content isn't covered by sticky CTA on Android */
@supports not (-webkit-touch-callout: none) {
  body {
    padding-bottom: 80px !important;
  }
}

.sticky-mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(6, 15, 30, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--border, rgba(255,255,255,0.10));
  z-index: 100;
}

/* ===========================================
   STEP CARD IMAGE FIX (mobile)
   =========================================== */
.step-card img,
.step-card-img img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 768px) {
  .step-card img,
  .step-card-img img {
    max-height: 180px !important;
    aspect-ratio: 16 / 9 !important;
  }
  .step-card {
    padding: 12px !important;
  }
  .step-card h3 {
    font-size: 14px !important;
  }
  .step-card p {
    font-size: 13px !important;
    line-height: 1.45 !important;
  }
}

/* ===========================================
   UNIVERSAL CARD IMAGE FIX (mobile)
   =========================================== */
.step-card img,
.step-card-img img,
.testimonial-card img,
.testimonial-card-img img,
.pricing-card img,
.pricing-card-img img,
.cta-card img,
.cta-card-img img,
.news-card img,
.news-card-img img,
.related-card img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  object-fit: cover !important;
  display: block !important;
}

@media (max-width: 768px) {
  .step-card img,
  .step-card-img img,
  .testimonial-card img,
  .testimonial-card-img img,
  .pricing-card img,
  .pricing-card-img img,
  .cta-card img,
  .cta-card-img img,
  .news-card img,
  .news-card-img img {
    max-height: 180px !important;
    aspect-ratio: 16 / 9 !important;
  }

  .step-card,
  .testimonial-card,
  .pricing-card,
  .cta-card,
  .news-card {
    padding: 12px !important;
  }
  .step-card h3,
  .testimonial-card h3,
  .pricing-card h3,
  .cta-card h3,
  .news-card h3 {
    font-size: 15px !important;
    margin: 8px 12px !important;
  }
  .step-card p,
  .testimonial-card p,
  .pricing-card p,
  .cta-card p,
  .news-card p {
    font-size: 13px !important;
    line-height: 1.45 !important;
    margin: 0 12px 12px !important;
  }
}
