/* ═══════════════════════════════════════════
   BHARAT SHAKTI SANGH — MAIN STYLESHEET
   Regal, Traditional, SEO-Optimised
   ═══════════════════════════════════════════ */

/* ─── CSS Variables ─── */
:root {
  --gold: #D4A017;
  --gold-light: #F2C94C;
  --gold-dark: #A8780A;
  --dark: #0D1117;
  --dark-2: #1A2233;
  --white: #FFFFFF;
  --off-white: #F8F5EE;
  --text: #1a1a2e;
  --text-muted: #5a5a7a;
  --border: rgba(212,160,23,0.2);
  --font-head: 'Cinzel', serif;
  --font-body: 'Nunito Sans', sans-serif;
  --font-serif: 'Libre Baskerville', serif;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.15);
  --transition: 0.3s ease;
}

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── Container ─── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }

/* ─── Color Utilities ─── */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.bg-light { background: var(--off-white); }
.bg-white { background: var(--white); }
.bg-dark { background: var(--dark); color: var(--white); }
.bg-gold-gradient { background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%); color: var(--dark); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold-dark);
  box-shadow: 0 4px 20px rgba(212,160,23,0.35);
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(212,160,23,0.45); }
.btn-dark { background: var(--dark); color: var(--white); border-color: var(--dark); }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.12); }
.btn-outline-dark { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn-outline-dark:hover { background: var(--dark); color: var(--white); }

/* ─── HEADER ─── */
#main-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
#main-header.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  padding: 12px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-img { width: 52px; height: 52px; object-fit: contain; filter: drop-shadow(0 2px 8px rgba(212,160,23,0.3)); }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color var(--transition);
}
.logo-sub {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  transition: color var(--transition);
}
#main-header.scrolled .logo-main { color: var(--dark); }
#main-header.scrolled .logo-sub { color: var(--text-muted); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  padding: 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  border-radius: 6px;
  transition: all var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-highlight { color: var(--gold-light) !important; }
#main-header.scrolled .nav-link { color: var(--text-muted); }
#main-header.scrolled .nav-link:hover { color: var(--gold-dark); }
#main-header.scrolled .nav-highlight { color: var(--gold-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
#main-header.scrolled .hamburger span { background: var(--dark); }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--dark);
  padding: 90px 32px 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  z-index: 999;
  box-shadow: -8px 0 40px rgba(0,0,0,0.3);
}
.mobile-menu.open { right: 0; }
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .btn { margin-top: 16px; text-align: center; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,17,23,0.92) 0%, rgba(13,17,23,0.7) 50%, rgba(13,17,23,0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: rgba(212,160,23,0.2);
  border: 1px solid rgba(212,160,23,0.4);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.hero-title {
  color: var(--white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.85);
  max-width: 650px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-social span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.hero-social a:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
  color: rgba(255,255,255,0.4);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.3;} 50%{opacity:1;} }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--dark);
  padding: 40px 0;
  border-bottom: 1px solid rgba(212,160,23,0.2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 16px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.stat-item:last-child { border-right: none; }
.stat-item strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 4px;
}
.stat-item span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

/* ─── SECTIONS ─── */
.section { padding: 96px 0; }
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  max-width: none;
  margin: 0 0 48px;
}
.section-header-row p { color: var(--text-muted); }
.divider-gold { width: 60px; height: 3px; background: var(--gold); margin: 16px auto; border-radius: 2px; }
.section-title-large {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--white);
  margin: 16px 0 24px;
}
.section-lead { font-size: 1.15rem; color: rgba(255,255,255,0.75); max-width: 760px; margin: 0 auto 48px; font-style: italic; font-family: var(--font-serif); }
.tag-gold { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }

/* ─── PILLARS ─── */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.pillar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  transition: all var(--transition);
  cursor: default;
}
.pillar-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.pillar-icon { font-size: 2rem; margin-bottom: 16px; }
.pillar-card h3 { font-size: 1rem; margin-bottom: 6px; color: var(--dark); }
.pillar-sub { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dark); margin-bottom: 10px; }
.pillar-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ─── ABOUT ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-text h2 { color: var(--white); margin-bottom: 24px; }
.about-text p { color: rgba(255,255,255,0.75); margin-bottom: 16px; font-size: 1rem; }
.about-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.about-badge {
  border-left: 3px solid var(--gold);
  padding-left: 16px;
}
.about-badge strong { display: block; font-family: var(--font-head); font-size: 1.2rem; color: var(--white); }
.about-badge span { font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.about-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-logo-wrap img {
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,160,23,0.2);
  padding: 32px;
  box-shadow: 0 0 80px rgba(212,160,23,0.1);
}

/* ─── LEADER / YOUTH ─── */
.leader-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}
.leader-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.leader-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.leader-img-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,17,23,0.85));
  padding: 40px 28px 24px;
  color: var(--white);
}
.leader-img-caption span { display: block; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.leader-img-caption strong { font-family: var(--font-head); font-size: 1.4rem; }

.leader-content h2 { margin-bottom: 20px; }
.leader-content p { color: var(--text-muted); margin-bottom: 14px; }
.leader-links { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.leader-social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.leader-social span { font-size: 0.82rem; color: var(--text-muted); font-weight: 600; }

/* ─── SOCIAL ICON BUTTONS ─── */
.social-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: all var(--transition);
  color: var(--white);
}
.social-fb { background: #1877F2; }
.social-ig { background: linear-gradient(45deg, #f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.social-x { background: #000000; }
.social-yt { background: #FF0000; }
.social-web { background: var(--dark-2); }
.social-icon-btn:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 6px 16px rgba(0,0,0,0.2); }

/* ─── VISION/MISSION ─── */
.vm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.vm-card { padding: 48px; border-radius: 24px; }
.vm-vision { background: var(--dark); color: var(--white); }
.vm-mission { background: var(--white); border: 1px solid rgba(0,0,0,0.1); box-shadow: var(--shadow); }
.vm-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.vm-label-dark { color: var(--dark); }
.vm-vision h2 { color: var(--white); margin-bottom: 20px; }
.vm-vision p { color: rgba(255,255,255,0.7); }
.mission-list { display: flex; flex-direction: column; gap: 16px; }
.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 600;
  font-size: 1rem;
}
.mission-list li::before {
  content: counter(list-counter);
  counter-increment: list-counter;
  min-width: 28px;
  height: 28px;
  background: var(--gold);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}
.mission-list { counter-reset: list-counter; }

/* ─── SAMVAD ─── */
.samvad-box {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 48px;
  margin: 0 auto 48px;
  max-width: 820px;
}
.samvad-box h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 16px; }
.samvad-box p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }
.samvad-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.samvad-stats { display: flex; justify-content: center; gap: 64px; flex-wrap: wrap; }
.samvad-stat { text-align: center; }
.samvad-stat strong { display: block; font-family: var(--font-head); font-size: 2.2rem; color: var(--gold); }
.samvad-stat span { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ─── YOUTH FEATURES ─── */
.youth-features { display: flex; flex-direction: column; gap: 20px; margin: 24px 0 32px; }
.youth-feature { display: flex; gap: 16px; align-items: flex-start; }
.youth-feature > span { font-size: 1.5rem; flex-shrink: 0; }
.youth-feature strong { display: block; font-weight: 700; margin-bottom: 4px; }
.youth-feature p { font-size: 0.9rem; color: var(--text-muted); margin: 0; }

/* ─── NEWS CARDS ─── */
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.news-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}
.news-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.news-card-img { height: 200px; overflow: hidden; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.05); }
.news-card-body { padding: 24px; }
.news-tag {
  display: inline-block;
  background: rgba(212,160,23,0.12);
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.news-card-body h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; }
.news-card-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 16px; }
.read-more { font-size: 0.85rem; font-weight: 700; color: var(--gold-dark); }
.read-more:hover { color: var(--gold); }

/* ─── CTA SECTION ─── */
#join-cta .container { max-width: 700px; }
#join-cta h2 { font-size: 2.2rem; margin-bottom: 16px; }
#join-cta p { font-size: 1.05rem; margin-bottom: 36px; opacity: 0.85; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ─── */
#main-footer { background: var(--dark); color: var(--white); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { width: 52px; height: 52px; object-fit: contain; margin-bottom: 12px; }
.footer-brand > div { display: flex; flex-direction: column; margin-bottom: 12px; }
.footer-brand h3 { font-family: var(--font-head); font-size: 0.95rem; letter-spacing: 0.06em; }
.footer-tagline { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-top: 2px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social-group { margin-bottom: 14px; }
.social-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 8px; }
.social-row { display: flex; gap: 8px; flex-wrap: wrap; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.9rem; color: var(--gold); margin-bottom: 20px; letter-spacing: 0.06em; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.83rem; color: rgba(255,255,255,0.6); }
.footer-contact li svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact li a { color: var(--gold); }
.footer-contact li a:hover { text-decoration: underline; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ─── PAGE HERO (for inner pages) ─── */
.page-hero {
  background: var(--dark);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,160,23,0.08), transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 600px; margin: 16px auto 0; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ─── ANIMATIONS ─── */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-logo-wrap { order: -1; }
  .leader-grid { grid-template-columns: 1fr; gap: 40px; }
  .vm-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .section-header-row { flex-direction: column; align-items: flex-start; gap: 16px; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .samvad-stats { gap: 32px; }
  .hero-actions { flex-direction: column; }
  .vm-card { padding: 32px 24px; }
  .samvad-box { padding: 32px 24px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
