/* bharatfantasycricket.com — Deep Forest Green (COLOR_010) + LAYOUT_005
   Clean V9 FSL11 stylesheet. Built fresh — no inherited conflicting rules.
   TYPO_007: Display (Bebas Neue / Oswald) + Mono (JetBrains Mono).
   Includes scroll-margin fix (lesson #9) and mobile hero cap (lesson #8).
============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: var(--lh-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: var(--header-h);
  overflow-x: hidden;
}

/* ===== Section ID scroll-margin (lesson #9) ===== */
section[id] { scroll-margin-top: 80px; }

/* ===== Container ===== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* ===== Skip link (a11y) ===== */
.skip-link {
  position: fixed !important;
  left: -9999px !important;
  top: 0;
  background: var(--accent);
  color: var(--inverse);
  padding: 12px 18px;
  z-index: 9999;
  font-weight: 700;
  border-radius: 0 0 8px 0;
  text-decoration: none;
  border: 2px solid var(--accent);
}
.skip-link:focus { left: 8px !important; top: 8px; outline: 3px solid var(--accent); outline-offset: 2px; }

/* ===== Header (fixed, lesson #4) ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: var(--overlay);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--soft-border);
  height: var(--header-h);
  display: flex;
  align-items: center;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 12px;
  min-width: 0;
}

/* ===== Brand ===== */
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  flex-shrink: 1;
  min-width: 0;
  max-width: 60vw;
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 9px;
  background: var(--gradient-cta);
  display: grid; place-items: center;
  color: var(--inverse);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}
.brand-name {
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.brand-name em {
  color: var(--accent);
  font-style: normal;
  font-weight: 900;
}

/* ===== Primary nav ===== */
.primary-nav { display: flex; gap: 4px; align-items: center; }
.primary-nav a {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background var(--t-fast);
}
.primary-nav a:hover { background: var(--surface); color: var(--accent); }
.primary-nav a.is-active { color: var(--accent); background: var(--surface); }

/* ===== Header CTA ===== */
.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

/* ===== Hamburger (ONE clean rule set, lesson #5) ===== */
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--soft-border);
  color: var(--text);
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  z-index: 70;
  padding: 0;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile drawer ===== */
.mobile-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--background);
  z-index: 55;
  padding: 80px 24px 32px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: none;
  height: 100vh;
  height: 100dvh;
  width: 100vw;
  overscroll-behavior: contain;
}
.mobile-drawer.is-open { display: block !important; }
.mobile-drawer a.drawer-section {
  display: block;
  padding: 14px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--soft-border);
  font-size: 16px;
  font-weight: 600;
}
.mobile-drawer a.drawer-section:hover { color: var(--accent); }
.drawer-cta {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--soft-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.drawer-cta a {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
}
.drawer-cta .btn-primary { background: var(--gradient-cta); color: var(--inverse); }
.drawer-cta .btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--soft-border); }

body.menu-open { overflow: hidden; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-sm { padding: 8px 14px; font-size: 14px; }
.btn-block { display: flex; width: 100%; }
.btn-primary {
  background: var(--gradient-cta);
  color: var(--inverse);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--soft-border);
}
.btn-ghost:hover { background: var(--surface-2); border-color: var(--accent-border); }

/* ===== Hero (with mobile cap, lesson #8) ===== */
.hero {
  position: relative;
  padding: 64px 0 80px;
  background: var(--gradient-hero);
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero-copy { max-width: 720px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 6px 10px;
  border: 1px solid var(--accent-border);
  border-radius: var(--r-pill);
  background: var(--surface);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin: 0 0 18px;
  text-transform: uppercase;
}
.hero h1 em {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}
.hero-lede {
  font-size: 18px;
  color: var(--text-muted);
  margin: 0 0 24px;
  max-width: 640px;
  line-height: 1.55;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.hero-trust {
  background: rgba(46, 125, 50, 0.10);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.hero-trust h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-strong);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hero-trust ul { list-style: none; padding: 0; margin: 0; }
.hero-trust li {
  display: flex; gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--soft-border);
  font-size: 14px;
  color: var(--text-muted);
}
.hero-trust li:first-child { border-top: none; }
.hero-trust .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--inverse);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
}

/* ===== Sections (HOMEPAGE_008) ===== */
section { padding: 64px 0; position: relative; }
section.compliance {
  background: var(--background-2);
  padding: 16px 0;
  border-top: 1px solid var(--soft-border);
  border-bottom: 1px solid var(--soft-border);
}
section.compliance .container {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
  font-size: 13px; color: var(--text-muted);
}
section.compliance .pill {
  background: var(--accent);
  color: var(--inverse);
  padding: 3px 10px;
  border-radius: var(--r-pill);
  font-weight: 800; font-size: 12px;
}
section.compliance a { color: var(--accent); text-decoration: none; font-weight: 700; }

.section-head { margin-bottom: 32px; }
.section-head .eyebrow { margin-bottom: 12px; }
.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text-strong);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.section-head p { color: var(--text-muted); font-size: 16px; max-width: 720px; margin: 0; }

/* ===== Card grids (lesson #7) ===== */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  padding: 20px;
  color: var(--text);
  text-decoration: none;
  display: block;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.card:hover { transform: translateY(-2px); border-color: var(--accent-border); background: var(--surface-2); }
.card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-strong);
}
.card p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.55; }

.stat-tile {
  background: var(--gradient-tile);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-md);
  padding: 18px;
  text-align: center;
}
.stat-tile .stat-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.stat-tile .stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-weight: 700;
  margin-top: 4px;
}

.hub-card {
  background: var(--surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.hub-card:hover { transform: translateY(-3px); border-color: var(--accent-border); }
.hub-card__art { width: 100%; height: 200px; object-fit: cover; display: block; background: var(--background-2); }
.hub-card__body { padding: 18px 20px; }
.hub-card__body .sub {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.hub-card__body .ttl {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-strong);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.hub-card__desc { font-size: 14px; color: var(--text-muted); line-height: 1.5; }

.spotlight-card {
  background: var(--gradient-tile);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  padding: 24px;
}
.spotlight-num {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.spotlight-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.10em;
  margin-bottom: 12px;
  display: block;
}
.spotlight-card p { font-size: 14px; color: var(--text-muted); margin: 0; line-height: 1.5; }

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

/* ===== Loose card (lesson #7) ===== */
.loose-card {
  background: linear-gradient(135deg, rgba(46,125,50,0.10) 0%, rgba(46,125,50,0.03) 100%);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  padding: 22px 24px;
  margin: 16px 0;
}
.loose-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 10px;
  text-transform: uppercase;
  color: var(--text-strong);
}
.loose-card p { margin: 0; color: var(--text-muted); line-height: 1.6; }

/* ===== Steps (for money pages) ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  counter-reset: step;
}
.step {
  background: var(--surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  padding: 22px;
  position: relative;
}
.step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.step h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 8px;
  text-transform: uppercase;
  color: var(--text-strong);
}
.step p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* ===== Tables (points, state eligibility) ===== */
.money-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
  border: 1px solid var(--soft-border);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--surface);
}
.money-table th, .money-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--soft-border);
}
.money-table th {
  background: var(--background-2);
  color: var(--accent);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.money-table td.pos { color: var(--accent); font-weight: 700; }
.money-table td.neg { color: #E57373; font-weight: 700; }
.money-table tbody tr:last-child td { border-bottom: none; }

/* ===== Leaderboard ===== */
.lb-wrap { border: 1px solid var(--soft-border); border-radius: var(--r-md); overflow: hidden; }
.lb-head, .lb-row {
  display: grid;
  grid-template-columns: 60px 1fr 2fr 100px 130px;
  gap: 12px;
  padding: 12px 16px;
  align-items: center;
  font-size: 14px;
}
.lb-head {
  background: var(--background-2);
  color: var(--accent);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.lb-row { border-top: 1px solid var(--soft-border); }
.lb-row .rank {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--surface-2);
  font-weight: 800;
  color: var(--text);
}
.lb-row .rank--1 { background: linear-gradient(135deg, #FFD700, #FFA500); color: var(--inverse); }
.lb-row .rank--2 { background: linear-gradient(135deg, #C0C0C0, #E0E0E0); color: var(--inverse); }
.lb-row .rank--3 { background: linear-gradient(135deg, #CD7F32, #B87333); color: var(--inverse); }
.lb-row .pts { font-family: var(--font-mono); font-weight: 700; color: var(--accent); }

/* ===== News / blog cards ===== */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}
.blog-card {
  background: var(--surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  display: block;
  transition: transform 0.18s ease, border-color 0.18s ease;
}
.blog-card:hover { transform: translateY(-3px); border-color: var(--accent-border); }
.blog-card-img {
  display: block;
  aspect-ratio: 16/9;
  background: var(--background-2);
  overflow: hidden;
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.blog-card-body { padding: 18px 20px; }
.blog-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.blog-date { display: block; font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.blog-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  margin: 0 0 8px;
  text-transform: uppercase;
  color: var(--text-strong);
  line-height: 1.15;
}
.blog-card-body h3 a { color: inherit; text-decoration: none; }
.blog-card-body p { margin: 0; font-size: 14px; color: var(--text-muted); line-height: 1.5; }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-md);
  padding: 18px 22px;
}
.faq-item h3 {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 0 0 8px;
  text-transform: uppercase;
  color: var(--text-strong);
}
.faq-item p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* ===== CTA banner ===== */
.cta-banner {
  background: var(--gradient-tile);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-xl);
  padding: 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: center;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  text-transform: uppercase;
  margin: 0 0 10px;
  color: var(--text-strong);
  line-height: 1.1;
}
.cta-banner p { color: var(--text-muted); margin: 0 0 16px; }
.cta-banner-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-banner img { width: 100%; height: auto; border-radius: 14px; border: 1px solid var(--primary-border); }

/* ===== Data / comparison / analysis grids ===== */
.data-grid, .risk-grid, .comparison-grid, .analysis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.data-card, .risk-card, .comparison-card, .analysis-card {
  background: var(--surface);
  border: 1px solid var(--primary-border);
  border-radius: var(--r-md);
  padding: 18px;
}
.data-card h4, .risk-card h4, .comparison-card h4, .analysis-card h4 {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  margin: 0 0 8px;
  color: var(--accent);
  letter-spacing: 0.04em;
}
.data-card p, .risk-card p, .comparison-card p, .analysis-card p { margin: 0; color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* ===== Footer (NAVIGATION only, lesson #10) ===== */
.footer-brand {
  background: var(--background-2);
  border-top: 1px solid var(--soft-border);
  padding: 56px 0 24px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  color: var(--accent);
  margin: 0 0 12px;
}
.footer-col p { color: var(--text-muted); font-size: 13px; line-height: 1.55; margin: 0 0 12px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--soft-border);
  padding-top: 20px;
  font-size: 12px;
  color: var(--muted-2);
  line-height: 1.55;
}

/* ===== Social row (lesson: use /#) ===== */
.social-row { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent);
  border: 1px solid var(--primary-border);
  transition: all 0.2s;
  text-decoration: none;
}
.social-icon:hover { background: var(--accent); color: var(--inverse); transform: translateY(-2px); }
.social-icon svg { width: 18px; height: 18px; }
.drawer-social { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--soft-border); }
.drawer-social-label { display: block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 8px; }
.drawer-social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.drawer-social-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surface-2);
  color: var(--accent);
  border: 1px solid var(--primary-border);
  text-decoration: none;
}
.drawer-social-icon:hover { background: var(--accent); color: var(--inverse); }
.drawer-social-icon svg { width: 18px; height: 18px; }

/* ===== Muted text helpers ===== */
.muted { color: var(--text-muted); }
.muted-2 { color: var(--muted-2); }
.text-center { text-align: center; }

/* ===== RESPONSIVE: mobile drawer + hide cta (lesson #4) ===== */
@media (max-width: 899px) {
  .primary-nav { display: none !important; }
  .header-cta .btn-ghost,
  .header-cta .btn-primary { display: none !important; }
  .hamburger { display: inline-flex !important; }
  .hero { padding: 32px 0 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero-trust { padding: 18px; }
  .hero-trust h3 { font-size: 18px; }
  section { padding: 40px 0; }
  .cta-banner { grid-template-columns: 1fr; padding: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .lb-head, .lb-row { grid-template-columns: 40px 1fr 90px 90px; }
  .lb-head span:nth-child(3), .lb-row .team { display: none; }
}
@media (min-width: 900px) {
  .hamburger { display: none !important; }
  .mobile-drawer,
  .mobile-drawer.is-open { display: none !important; }
  .header-cta .btn-ghost,
  .header-cta .btn-primary { display: inline-flex; }
  .primary-nav { display: flex; }
  .site-header .container { padding: 0 16px; }
}
@media (max-width: 599px) {
  .footer-grid { grid-template-columns: 1fr; }
  .spotlight-num { font-size: 36px; }
}


/* Inline image row: side-by-side on desktop, stacked on mobile */
.inline-image-row { margin: 32px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; background: linear-gradient(135deg, rgba(46, 125, 50, 0.06) 0%, rgba(46, 125, 50, 0.02) 100%); border: 1px solid rgba(46,125,50,0.25); border-radius: 14px; padding: 20px; }
.inline-image-row .image-side img { width: 100%; height: auto; border-radius: 10px; box-shadow: 0 2px 12px rgba(0,0,0,0.4); }
.inline-image-row .text-side h4 { color: #F8FAFC; font-size: 18px; font-weight: 800; margin: 0 0 10px; }
.inline-image-row .text-side p { color: #9CA3AF; font-size: 13px; line-height: 1.6; margin: 0; }
@media (max-width: 899px) {
  .inline-image-row { grid-template-columns: 1fr; }
  .inline-image-row .image-side { order: 0 !important; }
  .inline-image-row .text-side { order: 1 !important; }
}
