/* ============================================================
   GrandShow — Main Stylesheet
   ============================================================ */

/* ── IMPORT FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Sora:wght@400;600;700;800&display=swap');

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --ink:          #0b0f1a;
  --ink2:         #1e2535;
  --muted:        #5f6b82;
  --light:        #f4f6fb;
  --white:        #ffffff;
  --border:       #e3e8f0;
  --orange:       #ff5f1f;
  --orange2:      #ff8c42;
  --orange-pale:  #fff3ee;
  --blue:         #1552f0;
  --blue-pale:    #eef2ff;
  --green:        #0fb87a;
  --green-pale:   #e8faf3;
  --purple:       #7c3aed;
  --purple-pale:  #f3e8ff;
  --r8:  8px;
  --r12: 12px;
  --r16: 16px;
  --r24: 24px;
  --shadow:    0 4px 24px rgba(11,15,26,.08);
  --shadow-lg: 0 12px 48px rgba(11,15,26,.13);
  --shadow-xl: 0 24px 80px rgba(11,15,26,.18);
}

/* ── BASE ─────────────────────────────────────────────────── */
body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── TYPOGRAPHY ───────────────────────────────────────────── */
.section-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.section-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── TAG / PILL ───────────────────────────────────────────── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange-pale);
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 18px;
}
.tag.blue   { background: var(--blue-pale);   color: var(--blue);   }
.tag.green  { background: var(--green-pale);  color: var(--green);  }
.tag.purple { background: var(--purple-pale); color: var(--purple); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(255,95,31,.3);
}
.btn-orange:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(255,95,31,.4); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-pale); }

.btn-white {
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-ghost-dark {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.15);
}
.btn-ghost-dark:hover { background: rgba(255,255,255,.14); color: var(--white); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ────────────────────────────────────────────────────────────
   HEADER
──────────────────────────────────────────────────────────── */
#header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 42px; width: auto; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 8px;
  transition: .15s;
}
.nav-links a:hover { color: var(--ink); background: var(--light); }
.nav-links a.active { color: var(--orange); background: var(--orange-pale); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* Mobile nav */
#mobileNav {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 20px 28px;
  flex-direction: column;
  gap: 6px;
  z-index: 998;
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
#mobileNav.open { display: flex; }
#mobileNav a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  border-radius: 10px;
  transition: .15s;
}
#mobileNav a:hover { background: var(--light); }
#mobileNav .mob-cta {
  background: linear-gradient(135deg, var(--orange), var(--orange2));
  color: var(--white) !important;
  text-align: center;
  border-radius: 12px;
  margin-top: 4px;
  font-weight: 700;
}

/* ────────────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────────── */
#hero {
  padding: 100px 0 90px;
  background: linear-gradient(175deg, #f8faff 0%, #ffffff 60%);
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  right: 0; top: 0;
  width: 55%;
  height: 100%;
  object-fit: cover;
  opacity: .6;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  border: 1px solid rgba(255,95,31,.2);
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 22px;
}
.hero-h1 {
  font-family: 'Sora', sans-serif;
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 800;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 20px;
  letter-spacing: -.02em;
}
.hero-h1 em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.trust-item { text-align: center; }
.trust-num { font-family: 'Sora', sans-serif; font-size: 22px; font-weight: 800; color: var(--ink); }
.trust-lbl { font-size: 11px; color: var(--muted); margin-top: 2px; white-space: nowrap; }
.trust-sep { width: 1px; height: 36px; background: var(--border); }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-visual img { width: 100%; max-width: 440px; height: auto; }

/* ────────────────────────────────────────────────────────────
   HOW IT WORKS
──────────────────────────────────────────────────────────── */
#how {
  padding: 96px 0;
  background: var(--light);
}
.how-header { text-align: center; margin-bottom: 56px; }
.how-header .section-desc { max-width: 580px; margin: 0 auto; }
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 28px 22px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.how-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.how-step {
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
  display: inline-block;
}
.how-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.how-icon.o { background: var(--orange-pale); }
.how-icon.b { background: var(--blue-pale); }
.how-icon.g { background: var(--green-pale); }
.how-icon.p { background: var(--purple-pale); }
.how-title { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.how-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.how-arrow {
  position: absolute;
  top: 50%; right: -13px;
  transform: translateY(-50%);
  width: 26px; height: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  font-size: 12px;
  color: var(--muted);
}

/* ────────────────────────────────────────────────────────────
   ADVERTISERS
──────────────────────────────────────────────────────────── */
#advertisers { padding: 96px 0; }
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feat-list { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.feat-item { display: flex; gap: 16px; align-items: flex-start; }
.feat-dot {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feat-dot.o { background: var(--orange-pale); }
.feat-dot.b { background: var(--blue-pale); }
.feat-dot.g { background: var(--green-pale); }
.feat-dot.p { background: var(--purple-pale); }
.feat-title { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.feat-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* Ad preview mockup */
.adv-mockup {
  background: var(--light);
  border-radius: var(--r24);
  padding: 20px;
  position: relative;
}
.adv-mockup img { width: 100%; border-radius: var(--r16); box-shadow: var(--shadow); }
.adv-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.adv-stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r8);
  padding: 12px 14px;
  text-align: center;
}
.adv-stat .n { font-family: 'Sora', sans-serif; font-size: 17px; font-weight: 800; color: var(--ink); }
.adv-stat .l { font-size: 11px; color: var(--muted); margin-top: 2px; }

/* ────────────────────────────────────────────────────────────
   PUBLISHERS
──────────────────────────────────────────────────────────── */
#publishers {
  padding: 96px 0;
  background: var(--ink);
}
#publishers .section-title { color: var(--white); }
#publishers .section-desc  { color: rgba(255,255,255,.5); }
.pub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pub-features { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.pub-feat {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r12);
  padding: 18px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: background .2s;
}
.pub-feat:hover { background: rgba(255,255,255,.08); }
.pf-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(15,184,122,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.pf-title { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.pf-desc  { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.55; }

/* Earnings visual */
.pub-visual { display: flex; flex-direction: column; gap: 12px; }
.earn-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r16);
  padding: 24px;
}
.earn-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.earn-title  { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.45); }
.earn-badge  { background: rgba(15,184,122,.15); color: #3dfab0; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.earn-num    { font-family: 'Sora', sans-serif; font-size: 36px; font-weight: 800; color: var(--white); line-height: 1; margin-bottom: 4px; }
.earn-sub    { font-size: 12px; color: rgba(255,255,255,.35); }
.earn-bars   { display: flex; gap: 6px; align-items: flex-end; height: 56px; margin-top: 18px; }
.eb          { border-radius: 4px 4px 0 0; background: rgba(255,255,255,.1); flex: 1; transition: height .8s ease; }
.eb.hi       { background: linear-gradient(180deg, var(--orange), var(--orange2)); }
.earn-grid   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.eg-item     { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r8); padding: 14px; text-align: center; }
.eg-num      { font-family: 'Sora', sans-serif; font-size: 16px; font-weight: 800; color: var(--white); }
.eg-lbl      { font-size: 11px; color: rgba(255,255,255,.35); margin-top: 3px; }

/* ────────────────────────────────────────────────────────────
   AD FORMATS
──────────────────────────────────────────────────────────── */
#formats { padding: 96px 0; background: var(--light); }
.formats-header { text-align: center; margin-bottom: 52px; }
.formats-header .section-desc { max-width: 560px; margin: 0 auto; }
.formats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.format-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r16);
  padding: 28px 26px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.format-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange2));
  transform: scaleX(0);
  transition: transform .3s;
}
.format-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.format-card:hover::before { transform: scaleX(1); }
.fc-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 18px; }
.fc-title { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.fc-desc  { font-size: 14px; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.fc-tag   { display: inline-block; font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px; }
.fc-tag.o { background: var(--orange-pale); color: var(--orange); }
.fc-tag.b { background: var(--blue-pale);   color: var(--blue);   }
.fc-tag.g { background: var(--green-pale);  color: var(--green);  }

/* ────────────────────────────────────────────────────────────
   STATS STRIP
──────────────────────────────────────────────────────────── */
#stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--orange) 0%, #ff8c42 100%);
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 28px 28px;
}
.stats-inner { position: relative; z-index: 2; text-align: center; }
.stats-title { font-family: 'Sora', sans-serif; font-size: clamp(26px,3vw,38px); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.stats-sub   { font-size: 16px; color: rgba(255,255,255,.72); margin-bottom: 52px; }
.stats-grid  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 900px; margin: 0 auto; }
.stat-box    { background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r16); padding: 32px 20px; text-align: center; transition: background .2s; }
.stat-box:hover { background: rgba(255,255,255,.18); }
.stat-box .n { font-family: 'Sora', sans-serif; font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: var(--white); line-height: 1; }
.stat-box .l { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 8px; }

/* ────────────────────────────────────────────────────────────
   INDIA FOCUS
──────────────────────────────────────────────────────────── */
#india { padding: 96px 0; }
.india-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.india-map-wrap { display: flex; justify-content: center; align-items: center; }
.india-map-wrap img { max-width: 380px; width: 100%; height: auto; }
.india-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.india-card { background: var(--light); border-radius: var(--r12); padding: 20px; transition: background .2s; }
.india-card:hover { background: var(--orange-pale); }
.ic-icon  { font-size: 26px; margin-bottom: 10px; }
.ic-title { font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 4px; }
.ic-desc  { font-size: 13px; color: var(--muted); line-height: 1.55; }
.india-note {
  margin-top: 24px;
  background: var(--blue-pale);
  border: 1px solid rgba(21,82,240,.15);
  border-radius: var(--r12);
  padding: 16px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.in-text { font-size: 14px; color: var(--blue); line-height: 1.6; font-weight: 500; }

/* ────────────────────────────────────────────────────────────
   FAQ
──────────────────────────────────────────────────────────── */
#faq { padding: 96px 0; background: var(--light); }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r12);
  padding: 24px;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s;
}
.faq-item:hover { border-color: var(--orange); box-shadow: 0 2px 16px rgba(255,95,31,.1); }
.fq-q { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.fq-a { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ────────────────────────────────────────────────────────────
   CTA BANNER
──────────────────────────────────────────────────────────── */
#cta { padding: 80px 0; }
.cta-box {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink2) 100%);
  border-radius: var(--r24);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,95,31,.15), transparent 70%);
  top: -200px; left: -100px;
  pointer-events: none;
}
.cta-box::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21,82,240,.12), transparent 70%);
  bottom: -200px; right: -100px;
  pointer-events: none;
}
.cta-title { font-family: 'Sora', sans-serif; font-size: clamp(28px,3.5vw,44px); font-weight: 800; color: var(--white); margin-bottom: 14px; position: relative; z-index: 1; }
.cta-title em { font-style: normal; color: var(--orange2); }
.cta-sub  { font-size: 17px; color: rgba(255,255,255,.55); margin-bottom: 36px; position: relative; z-index: 1; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-note { font-size: 13px; color: rgba(255,255,255,.3); margin-top: 20px; position: relative; z-index: 1; }

/* ────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: 64px 0 28px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.ft-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 48px;
}
.ft-brand img { height: 38px; width: auto; }
.ft-desc { font-size: 14px; color: rgba(255,255,255,.38); margin-top: 16px; line-height: 1.8; max-width: 270px; }
.ft-reg  { margin-top: 18px; font-size: 12px; color: rgba(255,255,255,.22); line-height: 1.7; }
.ft-col h4 { font-family: 'Sora', sans-serif; font-size: 14px; font-weight: 700; color: rgba(255,255,255,.6); margin-bottom: 18px; letter-spacing: .03em; }
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ft-col ul li a { font-size: 14px; color: rgba(255,255,255,.36); transition: color .15s; }
.ft-col ul li a:hover { color: var(--orange2); }
.ft-email { color: var(--orange2) !important; }
.ft-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.ft-bottom p { font-size: 12px; color: rgba(255,255,255,.2); }
.ft-legal-links { display: flex; gap: 20px; }
.ft-legal-links a { font-size: 12px; color: rgba(255,255,255,.28); transition: color .15s; }
.ft-legal-links a:hover { color: rgba(255,255,255,.6); }

/* ────────────────────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid, .split-grid, .pub-grid, .india-grid { grid-template-columns: 1fr; gap: 50px; }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .formats-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-visual { display: none; }
  .faq-grid { grid-template-columns: 1fr; }
  .india-map-wrap { display: none; }
}
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .how-grid { grid-template-columns: 1fr; }
  .formats-grid { grid-template-columns: 1fr; }
  .india-cards { grid-template-columns: 1fr; }
  .cta-box { padding: 44px 26px; }
  .ft-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-trust { gap: 14px; }
  .adv-stats { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .how-arrow { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}
