/* FSL11 India — Brand stylesheet
   Brand palette: Navy Blue + Neon Green + Yellow accents
   Built 2026-06-28 (initial fleet build)
*/

:root {
  --primary: #4B2E83;
  --accent: #8E5CF7;
  --highlight: #F0ABFC;
  --bg: #F5F8FC;
  --text: #4B2E83;
  --muted: #475467;
  --surface: #FFFFFF;
  --border: #EAECF0;
  --radius: 14px;
  --shadow: 0 2px 12px rgba(11, 30, 63, 0.08);
  --shadow-lg: 0 8px 32px rgba(11, 30, 63, 0.12);
  --container: 1180px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', 'Noto Sans Devanagari', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--highlight); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.2; }
h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; margin-bottom: 16px; color: var(--primary); }
h2 { font-size: clamp(24px, 3.5vw, 32px); font-weight: 700; margin-bottom: 16px; margin-top: 32px; color: var(--primary); }
h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
p { margin-bottom: 16px; }
ul, ol { margin: 0 0 16px 24px; }
li { margin-bottom: 8px; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  text-align: center;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: #6B3FA0; color: #fff; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: var(--primary); }
.btn-accent:hover { background: #00C764; color: var(--primary); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

/* Topbar */
.topbar {
  background: var(--primary);
  color: #fff;
  padding: 8px 0;
  font-size: 14px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.topbar .promo { display: flex; align-items: center; gap: 8px; }
.topbar .badge {
  background: var(--highlight);
  color: var(--primary);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.topbar .promo strong { color: var(--highlight); }
.topbar .social { display: flex; gap: 12px; }
.topbar .social a {
  color: #fff;
  font-size: 12px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background 0.2s;
}
.topbar .social a:hover { background: var(--accent); color: var(--primary); }

/* Header */
header.site {
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header.site .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 20px;
}
header.site .logo {
  font-weight: 800;
  font-size: 22px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 8px;
}
header.site .logo .mark {
  background: var(--primary);
  color: var(--highlight);
  padding: 6px 10px;
  border-radius: 8px;
  letter-spacing: 0.5px;
}
header.site .logo .cs { color: var(--highlight); }
header.site nav.main { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
header.site nav.main a { color: var(--text); font-weight: 500; font-size: 15px; }
header.site nav.main a:hover { color: var(--highlight); }

/* Breadcrumb */
.breadcrumb { background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 0; font-size: 14px; }
.breadcrumb a { color: var(--muted); }
.breadcrumb .sep { color: var(--muted); margin: 0 6px; }
.breadcrumb span:last-child { color: var(--text); font-weight: 500; }

/* Hero */
.hero {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.hero h1 { color: var(--primary); }
.hero p.lede { font-size: 20px; color: var(--muted); margin-bottom: 24px; max-width: 800px; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }

/* Disclaimer */
.disclaimer {
  background: rgba(11, 30, 63, 0.05);
  border-left: 4px solid var(--primary);
  padding: 16px 20px;
  margin: 24px auto;
  max-width: var(--container);
  font-size: 14px;
  color: var(--muted);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.disclaimer strong { color: var(--primary); }

/* Longform content */
.longform { max-width: 800px; }
.longform h2 { margin-top: 40px; }
.longform h2:first-of-type { margin-top: 24px; }
.longform p { margin-bottom: 18px; }
.longform figure { margin: 32px 0; }
.longform figure img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; }
.longform figure figcaption { font-size: 14px; color: var(--muted); margin-top: 8px; text-align: center; }
.longform ul, .longform ol { margin-bottom: 18px; padding-left: 24px; }
.longform li { margin-bottom: 10px; }
.longform a { color: var(--primary); text-decoration: underline; text-decoration-color: var(--highlight); text-underline-offset: 3px; }
.longform a:hover { color: var(--highlight); }
.longform blockquote {
  background: var(--bg);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
}

/* Section + alt */
section { padding: 48px 0; }
section.alt { background: var(--surface); }
section.dark { background: var(--primary); color: #fff; }
section.dark h2 { color: #fff; }
section.dark p { color: rgba(255,255,255,0.9); }

/* Hub grid */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.hub-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}
.hub-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--highlight); }
.hub-card h3 { font-size: 18px; margin-bottom: 8px; }
.hub-card p { font-size: 14px; color: var(--muted); margin-bottom: 8px; }
.hub-card a { color: var(--primary); font-weight: 600; font-size: 14px; }
.hub-card a:hover { color: var(--highlight); }

/* News list */
.news-list { display: grid; gap: 20px; }
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  align-items: start;
  transition: box-shadow 0.2s;
}
.news-card:hover { box-shadow: var(--shadow); }
.news-date {
  background: var(--primary);
  color: #fff;
  padding: 16px;
  border-radius: var(--radius);
  text-align: center;
}
.news-date .day { font-size: 32px; font-weight: 800; line-height: 1; }
.news-date .month { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }
.news-meta { font-size: 12px; color: #888; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.5px; }
.news-card h3 { font-size: 22px; line-height: 1.3; margin: 0 0 12px 0; }
.news-card h3 a { color: inherit; text-decoration: none; }
.news-card h3 a:hover { color: var(--highlight); }
.news-card p.excerpt { font-size: 15px; line-height: 1.6; color: #555; margin: 0 0 12px 0; }
.news-card .tag {
  display: inline-block;
  font-size: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 10px;
  border-radius: 12px;
  margin-right: 8px;
}
.news-card .read-more { font-size: 14px; color: var(--primary); font-weight: 600; }
.news-card .read-more:hover { color: var(--highlight); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
  margin-top: 24px;
}
.stats .stat { padding: 24px 16px; }
.stats .stat .num { font-size: 48px; font-weight: 800; line-height: 1; margin-bottom: 8px; color: var(--highlight); }
.stats .stat .label { font-size: 14px; text-transform: uppercase; letter-spacing: 1px; opacity: 0.9; }

/* FAQ */
.faq-list { max-width: 800px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--highlight);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .answer { padding: 0 20px 20px 20px; color: var(--muted); }

/* Inline CTA */
.inline-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #6B3FA0 100%);
  color: #fff;
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  margin: 48px 0;
  box-shadow: var(--shadow-lg);
}
.inline-cta h3 { color: #fff; font-size: 26px; margin-bottom: 12px; }
.inline-cta p { color: rgba(255,255,255,0.9); font-size: 16px; margin-bottom: 20px; }
.inline-cta .cta-pair { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.inline-cta .btn-primary { background: var(--accent); color: var(--primary); }
.inline-cta .btn-primary:hover { background: var(--highlight); }
.inline-cta .btn-outline { background: transparent; color: #fff; border-color: #fff; }
.inline-cta .btn-outline:hover { background: #fff; color: var(--primary); }

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
  padding: 12px 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  border-top: 1px solid var(--border);
}
.sticky-cta a { flex: 1; max-width: 240px; text-align: center; padding: 14px 20px; }

/* Accessibility: ensure links are not differentiated by color alone */
a:not(.btn):not(.logo):not(.skip-link) {
  text-decoration-skip-ink: auto;
}
.lh-audit-fix .topbar .social a,
.topbar .social a {
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
}
footer ul li a {
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.4);
  text-underline-offset: 2px;
}
footer ul li a:hover {
  text-decoration-color: #F0ABFC;
}
/* Improve color contrast: footer text and muted text */
.disclaimer {
  color: #334155 !important;  /* slate-700 on light bg, contrast 7.5:1 */
}
.topbar .promo {
  color: #FFFFFF;
}
/* Hub card links - more visible */
.hub-card a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
/* Inline-cta text - already white on dark, keep */

@media (min-width: 1024px) {
  .sticky-cta { display: none !important; }
  body.has-sticky { padding-bottom: 0; }
}
body.has-sticky { padding-bottom: 80px; }
@media (min-width: 1024px) { body.has-sticky { padding-bottom: 0; } }

/* Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 48px 0 24px;
  margin-top: 64px;
}
footer .container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
}
footer .footer-brand .logo { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
footer .footer-brand .logo .mark { background: var(--highlight); color: var(--primary); padding: 6px 10px; border-radius: 8px; }
footer .footer-brand .logo .cs { color: var(--highlight); }
footer .footer-brand p { color: rgba(255,255,255,0.95); font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
footer .footer-brand .cta-row { display: flex; gap: 8px; flex-wrap: wrap; }
footer .footer-brand .cta-row .btn-primary { background: var(--accent); color: var(--primary); }
footer .footer-brand .cta-row .btn-outline { background: transparent; color: #fff; border-color: #fff; }
footer .footer-heading { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--highlight); margin-bottom: 12px; }
footer ul { list-style: none; margin: 0; padding: 0; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: rgba(255,255,255,0.8); font-size: 14px; }
footer ul li a:hover { color: var(--highlight); }
footer .legal-bar {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
}
footer .legal-bar strong { color: var(--highlight); }

@media (max-width: 768px) {
  header.site .container { flex-direction: column; align-items: stretch; gap: 12px; }
  header.site nav.main { justify-content: center; gap: 12px; font-size: 14px; }
  .hero { padding: 40px 0 24px; }
  .hero p.lede { font-size: 17px; }
  .news-card { grid-template-columns: 1fr; gap: 16px; }
  .news-date { display: inline-block; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  footer .container { grid-template-columns: 1fr 1fr; gap: 20px; }
  section { padding: 32px 0; }
  .inline-cta { padding: 28px 20px; }
  .inline-cta h3 { font-size: 22px; }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr; }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0;
  z-index: 9999;
}
.skip-link:focus { left: 0; }

/* Banner image */
.banner-img { width: 100%; height: auto; max-height: 500px; object-fit: cover; border-radius: var(--radius); margin: 24px 0; }

/* Section heads */
.section-head { margin-bottom: 24px; }
.section-head.left { text-align: left; }
.section-head.center { text-align: center; }
.section-head h2 { margin-bottom: 8px; }
.section-head p { color: var(--muted); font-size: 16px; max-width: 700px; }
.section-head.center p { margin: 0 auto; }

/* Cards (for blog anchor grid) */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 24px 0; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; display: block; transition: all 0.2s; }
.card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: var(--highlight); }
.card .label { display: inline-block; font-size: 11px; background: var(--accent); color: var(--primary); padding: 3px 8px; border-radius: 4px; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 700; }
.card h3 { font-size: 18px; margin: 12px 0 8px; }
.card p { font-size: 14px; color: var(--muted); margin: 0; }

/* Keyboard focus indicators */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid #FFD600;
  outline-offset: 2px;
  border-radius: 4px;
}
/* Skip link visible on focus */
.skip-link:focus {
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  background: #4B2E83 !important;
  color: #fff !important;
  padding: 12px 20px !important;
  z-index: 9999;
}

/* ========== EXTENDED MOBILE RESPONSIVE ========== */
@media (max-width: 768px) {
  body, html { overflow-x: hidden !important; max-width: 100vw !important; }
  body { font-size: 15px; }
  section { padding: 40px 0 !important; }
  .container { padding: 0 16px !important; }
  .hero, section.hero { padding: 36px 0 24px !important; }
  .hero h1 { font-size: 30px !important; line-height: 1.15 !important; }
  .hero p.lede, .hero .lede { font-size: 15px !important; }
  .hero img, .hero picture img { max-height: 220px !important; }
  h2 { font-size: 24px !important; line-height: 1.2 !important; }
  h3 { font-size: 17px !important; }
  p { font-size: 15px !important; line-height: 1.6 !important; }
  p[style*="font-size:18px"], p[style*="font-size: 18px"] { font-size: 15px !important; }
  p[style*="font-size:17px"], p[style*="font-size: 17px"] { font-size: 15px !important; }
  p[style*="font-size:19px"], p[style*="font-size: 19px"] { font-size: 16px !important; }
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  [style*="grid-template-columns:repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; gap: 10px !important; }
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr !important; gap: 14px !important; }
  [style*="grid-template-columns:repeat(2"] { grid-template-columns: 1fr !important; gap: 14px !important; }
  [style*="grid-template-columns:repeat(2"][style*="gap:14px"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(2"][style*="gap:24px"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:repeat(5"] { grid-template-columns: repeat(2, 1fr) !important; }
  [style*="grid-template-columns:1fr auto 1fr"] { grid-template-columns: 1fr !important; text-align: center !important; gap: 16px !important; }
  [style*="grid-template-columns:1fr auto 1fr"] > div:nth-child(2) { transform: rotate(90deg); margin: 0 auto !important; }
  [style*="grid-template-columns:1fr auto 1fr"] > div:nth-child(3) { text-align: center !important; }
  .btn { padding: 11px 16px !important; font-size: 14px !important; }
  [style*="display:flex"][style*="gap:14px"] { gap: 10px !important; flex-wrap: wrap; }
  [style*="display:flex"][style*="gap:12px"] { gap: 8px !important; }
  .cta-pair, [style*="cta-pair"] { flex-direction: column !important; }
  .cta-pair .btn, [style*="cta-pair"] .btn { width: 100% !important; }
  header.site { padding: 10px 0 !important; }
  header.site .container { gap: 10px !important; flex-wrap: wrap; }
  .logo { font-size: 17px !important; }
  .logo .mark { padding: 4px 8px !important; font-size: 13px !important; }
  nav.main { gap: 10px !important; font-size: 12px !important; overflow-x: auto; white-space: nowrap; padding: 4px 0; -webkit-overflow-scrolling: touch; }
  nav.main a { font-size: 12px !important; padding: 4px 0 !important; }
  header.site .btn { padding: 8px 12px !important; font-size: 12px !important; }
  .topbar { font-size: 11px !important; padding: 6px 0 !important; }
  .topbar .promo { font-size: 11px !important; }
  .topbar .badge { font-size: 9px !important; padding: 1px 5px !important; }
  .topbar .social { display: none !important; }
  .breadcrumb { padding: 8px 0 !important; font-size: 11px !important; }
  div[style*="overflow-x:auto"] { margin: 0 -16px !important; padding: 0 16px !important; width: calc(100% + 32px) !important; }
  table { font-size: 11px !important; }
  table th, table td { padding: 8px 5px !important; font-size: 11px !important; }
  .news-list { grid-template-columns: 1fr !important; }
  .news-card { grid-template-columns: 80px 1fr !important; gap: 12px !important; padding: 16px !important; }
  .inline-cta { padding: 26px 18px !important; margin: 30px 0 !important; }
  .inline-cta h3 { font-size: 22px !important; }
  .disclaimer { font-size: 11px !important; padding: 10px 12px !important; }
  footer { padding: 32px 0 16px !important; }
  footer .container { grid-template-columns: 1fr 1fr !important; gap: 20px !important; }
  .footer-brand { grid-column: 1 / -1 !important; }
  [style*="font-size:24px"][style*="font-weight:800"] { font-size: 18px !important; }
  [style*="font-size:48px"][style*="font-weight:800"] { font-size: 34px !important; }
  [style*="font-size:64px"] { font-size: 44px !important; }
  [style*="font-size:42px"][style*="margin-bottom:24px"] { font-size: 26px !important; }
  [style*="font-size:36px"][style*="margin-bottom"] { font-size: 24px !important; }
  [style*="padding:24px"][style*="border-radius"] { padding: 16px !important; }
  [style*="padding:28px"][style*="border-radius"] { padding: 18px !important; }
  [style*="padding:32px"][style*="border-radius"] { padding: 18px !important; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  [style*="grid-template-columns:repeat(4"] { grid-template-columns: 1fr 1fr !important; gap: 16px !important; }
  [style*="grid-template-columns:repeat(5"] { grid-template-columns: repeat(3, 1fr) !important; gap: 12px !important; }
  [style*="grid-template-columns:repeat(3"] { grid-template-columns: 1fr 1fr !important; gap: 14px !important; }
  [style*="grid-template-columns:repeat(2"][style*="gap:24px"] { grid-template-columns: 1fr 1fr !important; }
  .hero h1 { font-size: 42px !important; }
  footer .container { grid-template-columns: 1fr 1fr !important; }
}
img { max-width: 100% !important; height: auto !important; }

/* ========== SIMPLE HAMBURGER (display toggle) ========== */
.hamburger {
  display: none;
  background: var(--primary, #E86A00);
  border: 0;
  cursor: pointer;
  padding: 10px;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 110;
  border-radius: 8px;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  margin: 5px auto;
  border-radius: 3px;
  transition: all 0.3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

@media (max-width: 768px) {
  .hamburger { display: block !important; }
  header.site .container > .btn { display: none !important; }
  /* Mobile nav uses display:none/block - simpler than transform */
  nav.main {
    display: none !important;
    position: fixed !important;
    top: 64px !important;
    left: 0 !important;
    right: 0 !important;
    background: var(--primary, #E86A00) !important;
    flex-direction: column !important;
    padding: 16px !important;
    gap: 0 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 100 !important;
    overflow-y: auto;
    max-height: calc(100vh - 64px);
    white-space: normal !important;
    align-items: stretch !important;
  }
  nav.main.open { display: flex !important; }
  nav.main a {
    padding: 14px 12px !important;
    border-bottom: 1px solid rgba(255,255,255,0.15) !important;
    font-size: 15px !important;
    width: 100% !important;
    text-align: left !important;
    white-space: normal !important;
  }
  nav.main a:last-child { border-bottom: 0 !important; }
  body.menu-open { overflow: hidden; }
}



/* Managed fix: clean mobile menu + visible affiliate CTA */
@media (max-width: 768px) {
  header.site { z-index: 2147482000 !important; }
  header.site .container {
    min-height: 58px;
    position: relative;
    gap: 10px !important;
  }
  header.site .logo {
    min-width: 0;
    max-width: calc(100% - 58px);
    font-size: 18px !important;
    white-space: nowrap;
  }
  header.site .logo span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
  }
  header.site .container > .btn { display: none !important; }
  .hamburger {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-left: auto;
    flex: 0 0 44px;
    background: var(--primary, #4B2E83) !important;
    border: 1px solid rgba(255,255,255,.22) !important;
    z-index: 2147482100 !important;
  }
  nav.main {
    display: none !important;
    position: absolute !important;
    top: calc(100% + 8px) !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    max-height: calc(100vh - 150px) !important;
    overflow-y: auto !important;
    padding: 12px !important;
    background: #4B2E83 !important;
    border: 1px solid rgba(255,255,255,.18) !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 44px rgba(28, 12, 58, .35) !important;
    z-index: 2147482050 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 6px !important;
    white-space: normal !important;
  }
  nav.main.open { display: flex !important; }
  nav.main a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 44px !important;
    padding: 11px 12px !important;
    color: #fff !important;
    background: rgba(255,255,255,.08) !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    border-radius: 10px !important;
    font-size: 15px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
  }
  nav.main a::after {
    content: "›";
    font-size: 18px;
    opacity: .75;
  }
  nav.main a.mobile-menu-affiliate {
    justify-content: center !important;
    margin-top: 6px !important;
    min-height: 48px !important;
    color: #32124f !important;
    background: linear-gradient(135deg, #ff7a00, #ffd200) !important;
    border-color: transparent !important;
    box-shadow: 0 10px 24px rgba(255,122,0,.28) !important;
  }
  nav.main a.mobile-menu-affiliate::after { content: ""; }
  body.menu-open .managed-mobile-affiliate-cta {
    display: none !important;
  }
  .managed-mobile-affiliate-cta {
    z-index: 2147481000 !important;
  }
}


/* Managed fix: force visible hamburger icon */
@media (max-width: 768px) {
  .hamburger {
    position: relative !important;
    color: #fff !important;
    overflow: hidden !important;
  }
  .hamburger span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    min-height: 2px !important;
    margin: 3px auto !important;
    background: #ffffff !important;
    border-radius: 999px !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform-origin: center !important;
  }
  .hamburger::before {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    top: 14px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
    pointer-events: none;
  }
  .hamburger span { background: transparent !important; }
  .hamburger.active::before {
    top: 21px;
    transform: rotate(45deg);
    box-shadow: none;
  }
  .hamburger.active::after {
    content: "";
    position: absolute;
    left: 11px;
    right: 11px;
    top: 21px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transform: rotate(-45deg);
    pointer-events: none;
  }
}
