/* ============================================
   DR. RAHUL SARIDENA - POLITICAL LEADER WEBSITE
   White Mode - BJP Accent Colors
   #FF6B00 Saffron | #138808 Green | #FFFFFF White
   ============================================ */

@import url('https://db.onlinewebfonts.com/c/ad828d6f2c5b6187df7d74bd697b2f48?family=All+Round+Gothic+Demi');
@import url('https://db.onlinewebfonts.com/c/722cb8a1c168860d3dcfaa76cdfeda6b?family=All+Round+Gothic+Medium');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Bebas+Neue&family=Onest:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ───────────────────────────── */
:root {
  --saffron: #FF6B00;
  --saffron-dark: #D45500;
  --saffron-light: #FF9944;
  --saffron-pale: #FFF4EC;
  /* very light saffron - card/section bg */
  --saffron-dim: #FFE0C8;
  /* saffron border / subtle fill */

  --green: #138808;
  --green-dark: #0D6106;
  --green-pale: #EDF7EC;

  /* Aliases (used widely in existing CSS) */
  --primary: #FF6B00;
  --primary-dark: #D45500;
  --primary-light: #FF9944;
  --accent: #138808;
  --accent-2: #138808;
  --navy: #1A1A1A;
  /* hero/footer dark = near-black */
  --navy-2: #2A2A2A;
  --navy-3: #383838;
  --white: #FFFFFF;
  --off-white: #F9F7F5;
  /* warm gray-white for alt sections */
  --light-gray: #F0EEEC;

  /* Text */
  --text-dark: #1A1A1A;
  --text-muted: #666666;
  --text-light: rgba(255, 255, 255, 0.90);
  --border: rgba(255, 255, 255, 0.18);
  --border-dark: rgba(0, 0, 0, 0.08);

  /* Typography */
  --ff-heading: 'Onest', sans-serif;
  --ff-body: 'Onest', sans-serif;
  --ff-display: 'Onest', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.18);
  --glow: 0 0 40px rgba(255, 107, 0, 0.20);

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
  --section-pad: 100px 0;
  --section-pad-sm: 60px 0;
}

/* ── Reset & Base ────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: inherit;
}

/* ── Typography ──────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-muted);
  font-weight: 500;
}

.text-white {
  color: var(--white) !important;
}

.text-white p {
  color: rgba(255, 255, 255, 0.85) !important;
}

.text-primary {
  color: var(--saffron);
}

.text-accent {
  color: var(--green);
}

/* ── Container ───────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn i {
  color: inherit !important;
  /* Ensure icons match text color exactly for single-color aesthetic */
}

/* On dark/saffron hero background */
.btn-primary {
  background: var(--white);
  color: var(--saffron);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--white);
}

.btn-primary:hover {
  background: var(--saffron-pale);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.70);
  color: var(--white);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* On light/white sections - saffron filled */
.btn-dark {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: var(--white);
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.25);
}

.btn-green {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
  box-shadow: none;
}

.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: none;
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 0, 0.40);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

/* ── Section Labels ──────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: currentColor;
  display: block;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.90);
}

.section-label.light::before {
  background: rgba(255, 255, 255, 0.90);
}

.section-label.green {
  color: var(--green);
}

.section-label.green::before {
  background: var(--green);
}

/* ── Page Hero Banner (inner pages) ─────────── */
.page-hero {
  padding: 155px 0 72px;
  background: linear-gradient(145deg,
      #7A1E00 0%,
      #C03A00 28%,
      #FF6B00 60%,
      #FF9F45 100%);
  position: relative;
  overflow: hidden;
}

/* Radial glow overlay */
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 30%, rgba(255, 255, 255, 0.16) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

/* SVG arc pattern canvas */
.page-hero-deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.page-hero-deco svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

/* ── Breadcrumb pill row */
.page-hero .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  padding: 7px 18px;
  margin-bottom: 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.page-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.92) !important;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border-bottom: none !important;
}

.page-hero .breadcrumb a:hover {
  color: var(--white) !important;
}

.page-hero .breadcrumb .bc-sep {
  display: inline-flex;
  align-items: center;
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.40);
  font-size: 0.7rem;
}

.page-hero .breadcrumb .bc-current {
  color: rgba(255, 255, 255, 0.55);
  font-weight: 500;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
}

/* Thin white divider under title */
.page-hero-divider {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.55);
  margin: 0 0 16px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  font-weight: 500 !important;
  max-width: 580px;
}

/* ── Navbar ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  border-bottom: 3px solid var(--saffron);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.10);
  border-bottom: 3px solid var(--saffron);
}

/* Nav text colors when scrolled (on white bg) */
.navbar.scrolled .nav-logo .logo-name {
  color: var(--text-dark);
}

.navbar.scrolled .nav-logo .logo-title {
  color: var(--saffron);
}

.navbar.scrolled .nav-links a {
  color: var(--text-dark);
}

.navbar.scrolled .nav-links a:hover,
.navbar.scrolled .nav-links a.active {
  color: var(--saffron);
}

.navbar.scrolled .nav-links a::after {
  background: var(--saffron);
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  line-height: 1;
}

.nav-logo .logo-name {
  /* font-family: 'All Round Gothic Demi', sans-serif; */
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.5px;
}

.nav-logo .logo-title {
  /* font-family: 'All Round Gothic Demi', sans-serif; */
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--saffron);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--saffron);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 8px;
  background: var(--green) !important;
  color: var(--white) !important;
  border: 2px solid var(--green) !important;
  box-shadow: none !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: none !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── Mobile Nav ──────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-top: 4px solid var(--saffron);
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.45s;
}

.mobile-nav.open {
  transform: translateY(0);
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--ff-body);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: var(--transition);
  position: relative;
}

.mobile-nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--saffron);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: var(--transition);
}

.mobile-nav a.active,
.mobile-nav a:hover {
  color: var(--saffron);
}

.mobile-nav a.active::after,
.mobile-nav a:hover::after {
  width: 30px;
}

.mobile-nav .close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2rem;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition);
}

.mobile-nav .close-btn:hover {
  color: var(--saffron);
  transform: rotate(90deg);
}

/* ── Footer ──────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.70);
  padding: 70px 0 0;
  border-top: 4px solid var(--saffron);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo-name {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.45);
}

.footer h5 {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 20px;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a i {
  margin-top: 4px;
}

.footer ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.footer ul li a:hover {
  color: var(--saffron);
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact li .icon {
  color: var(--saffron);
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 1rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.30);
}

.footer-bottom a {
  color: var(--saffron);
}

/* ── Scroll Animation ────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ── Card Base ───────────────────────────────── */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-dark);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

/* ── Glass Card ──────────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 107, 0, 0.30);
}

/* ── Marquee ─────────────────────────────────── */
.marquee-wrap {
  overflow: hidden;
  white-space: nowrap;
  padding: 16px 0;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 20s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding-right: 60px;
  font-family: var(--ff-display);
  font-size: 1.4rem;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.25);
  text-transform: uppercase;
}

.marquee-item .dot {
  color: var(--white);
  font-size: 1.6rem;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── Stats Counter ───────────────────────────── */
.stats-strip {
  background: var(--green);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 24px 32px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--ff-display);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
  display: block;
}

.stat-number span {
  color: rgba(255, 255, 255, 0.8);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  display: block;
}

/* ── Tag / Badge ─────────────────────────────── */
.badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.badge-primary {
  background: rgba(255, 107, 0, 0.10);
  color: var(--saffron);
}

.badge-accent {
  background: rgba(19, 136, 8, 0.10);
  color: var(--green);
}

.badge-white {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* ── Divider ─────────────────────────────────── */
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--saffron-light));
  border-radius: 2px;
  margin: 16px 0;
}

.divider.center {
  margin: 16px auto;
}

/* ── Icon Box ────────────────────────────────── */
.icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--saffron);
  flex-shrink: 0;
  transition: var(--transition);
}

.icon-box.dark {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

/* ── CTA Section ─────────────────────────────── */
.cta-section {
  background: var(--saffron);
  /* Single solid BJP Saffron color #FF6B00 */
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: 'VOLUNTEER';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--ff-display);
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: 10px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  color: var(--white);
}

.cta-text p {
  color: rgba(255, 255, 255, 0.80);
  margin-top: 12px;
  max-width: 560px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* ── Quote Block ─────────────────────────────── */
.quote-block {
  border-left: 4px solid var(--saffron);
  padding: 24px 32px;
  background: var(--saffron-pale);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-family: var(--ff-display);
  font-size: 8rem;
  color: var(--saffron);
  opacity: 0.10;
  line-height: 1;
}

.quote-block p {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--text-dark);
  line-height: 1.6;
}

.quote-block cite {
  display: block;
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--saffron);
  letter-spacing: 1px;
  font-style: normal;
}

/* ── Tag Chip ────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--light-gray);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}

.tag:hover,
.tag.active {
  background: var(--saffron);
  color: var(--white);
}

/* ── Grid Helpers ────────────────────────────── */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.align-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

/* ── Responsive ──────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-right: none;
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-text p {
    margin: 12px auto 0;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 70px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .page-hero {
    padding: 140px 0 60px;
  }

  .page-hero-deco {
    display: none;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ── Utility ─────────────────────────────────── */
.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.mt-24 {
  margin-top: 24px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-48 {
  margin-top: 48px;
}

.mb-8 {
  margin-bottom: 8px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-32 {
  margin-bottom: 32px;
}

.gap-16 {
  gap: 16px;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.section {
  padding: var(--section-pad);
}

.section-sm {
  padding: var(--section-pad-sm);
}

.bg-dark {
  background: var(--text-dark);
}

.bg-dark-2 {
  background: #2A2A2A;
}

.bg-off {
  background: var(--off-white);
}

.w-full {
  width: 100%;
}

/* Thought Leadership section pattern */
.thought-leadership-section {
  position: relative;
  overflow: hidden;
}

.thought-leadership-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.038) 1.2px, transparent 1.2px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}

.thought-leadership-section .container {
  position: relative;
  z-index: 1;
}