/* ═══════════════════════════════════════════════════════
   MÏAM CHARITABLE TRUST — STYLESHEET v3
   Design: Vibrant, Organic, Artistic
   Palette: Teal + Coral + Forest (NO YELLOW)
   Icons: Google Material Icons Outlined
   ═══════════════════════════════════════════════════════ */

:root {
  /* ─── Primary: Blue / Navy ─── */
  --clr-teal: #2563eb;
  --clr-teal-deep: #1d4ed8;
  --clr-teal-light: #60a5fa;
  --clr-teal-muted: #bfdbfe;
  --clr-teal-bg: rgba(37, 99, 235, 0.1);

  --clr-forest: #1e3a8a;
  --clr-forest-deep: #0b1f4d;
  --clr-forest-light: #3b82f6;

  /* ─── Secondary: Coral / Warm ─── */
  --clr-coral: #d94a47;
  --clr-coral-deep: #b83230;
  --clr-coral-soft: #f5b3b1;
  --clr-coral-bg: rgba(217, 74, 71, 0.1);

  /* ─── Accent: Amber ─── */
  --clr-amber: #f59e0b;
  --clr-amber-bg: rgba(245, 158, 11, 0.1);

  /* ─── Backgrounds ─── */
  --bg-ivory: #fdf8f0;
  --bg-white: #ffffff;
  --bg-surface: #f7f2ea;

  /* ─── Ink ─── */
  --ink-primary: #1a1a1a;
  --ink-secondary: #4a4a4a;
  --ink-tertiary: #7a7a7a;
  --ink-light: #ffffff;
  --ink-light-muted: rgba(255, 255, 255, 0.75);

  /* ─── Borders ─── */
  --border-soft: rgba(30, 58, 138, 0.12);
  --border-warm: rgba(212, 118, 60, 0.15);

  /* ─── Typography ─── */
  --font-display: "Lora", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  /* ─── Spacing ─── */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2rem;
  --sp-5: 3rem;
  --sp-6: 4rem;
  --sp-8: 6rem;
  --sp-10: 8rem;
  --sp-12: 10rem;

  /* ─── Radii ─── */
  --r-soft: 20px;
  --r-pill: 100px;
  --r-organic-1: var(--r-soft);
  --r-organic-2: var(--r-soft);

  /* ─── Shadows ─── */
  --shadow-soft: 0 10px 30px rgba(9, 30, 80, 0.1);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 12px 40px rgba(37, 99, 235, 0.16);

  /* ─── Transitions ─── */
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 0.25s;
  --t-normal: 0.5s;
  --t-slow: 0.8s;

  /* ─── Warm Glass ─── */
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-blur: 16px;
  --glass-shadow: 0 10px 30px rgba(9, 30, 80, 0.06);
}

/* ─── RESET ─── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-secondary);
  background: var(--bg-ivory);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
em {
  font-style: italic;
}
strong {
  font-weight: 600;
}
::selection {
  background: var(--clr-teal-muted);
  color: var(--clr-forest-deep);
}

/* ─── WARM GLASS ─── */
.glass-warm {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity var(--t-slow) var(--ease-smooth),
    transform var(--t-slow) var(--ease-smooth);
}
.reveal.is-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;
}

/* ─── TYPOGRAPHY ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clr-teal-deep);
  margin-bottom: var(--sp-2);
}
.eyebrow--teal {
  color: var(--clr-teal);
}
.eyebrow--coral {
  color: var(--clr-coral);
}
.eyebrow--light {
  color: var(--clr-teal-muted);
}
.eyebrow--green {
  color: var(--clr-forest-light);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--ink-primary);
  margin-bottom: var(--sp-3);
}
.section-heading em {
  color: var(--clr-teal);
}
.section-heading--light {
  color: var(--ink-light);
}
.section-heading--light em {
  color: var(--clr-teal-muted);
}
.section-sub {
  font-size: 1.1rem;
  color: var(--ink-secondary);
  max-width: 600px;
  line-height: 1.6;
  margin-inline: auto;
}

/* ─── UTILITIES ─── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.85rem 2rem;
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--t-fast) var(--ease-smooth);
  text-decoration: none;
}
.btn .material-icons-outlined {
  font-size: 18px;
}

.btn--primary {
  background: var(--clr-coral);
  color: var(--ink-light);
  border-color: var(--clr-coral);
  box-shadow: 0 4px 16px rgba(217, 74, 71, 0.3);
}
.btn--primary:hover {
  background: var(--clr-coral-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 74, 71, 0.35);
}

.btn--ghost-light {
  background: transparent;
  color: var(--ink-light);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--nav {
  background: var(--clr-teal);
  color: var(--ink-light);
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  border-color: var(--clr-teal);
  gap: 4px;
}
.btn--nav:hover {
  background: var(--clr-teal-deep);
  border-color: var(--clr-teal-deep);
}
.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 0.95rem;
}

/* ─── TRUST PILL (Hero) ─── */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r-pill);
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-light);
}

/* ─── MUI CHIP ─── */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.25rem 0.75rem;
  border-radius: var(--r-pill);
  font-size: 0.72rem;
  font-weight: 500;
  background: var(--clr-teal-bg);
  color: var(--clr-teal-deep);
  border: 1px solid rgba(37, 99, 235, 0.15);
}
.chip .material-icons-outlined {
  font-size: 14px;
}

/* ─── WAVE DIVIDERS ─── */
.wave-divider {
  line-height: 0;
  overflow: hidden;
  margin-top: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
}
.wave-divider--ivory {
  color: var(--bg-ivory);
  background: transparent;
}
.wave-divider--white {
  color: var(--bg-white);
  background: var(--bg-ivory);
}
.wave-divider--surface {
  color: var(--bg-surface);
  background: var(--bg-white);
}
.wave-divider--dark {
  color: var(--clr-forest-deep);
  background: var(--bg-surface);
}
.wave-divider--ivory-from-dark {
  color: var(--bg-ivory);
  background: var(--clr-forest-deep);
}

/* ═══════════════ NAVIGATION ═══════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: var(--sp-3) 0;
  transition: all var(--t-normal) var(--ease-smooth);
  pointer-events: auto;
}
.nav * {
  pointer-events: auto;
}
.nav.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--sp-2) 0;
  box-shadow: var(--shadow-soft);
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
}
.nav__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: flex;
  align-items: center;
}
.nav__logo {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.75rem;
  row-gap: 2px;
  align-items: center;
  text-decoration: none;
  line-height: 1;
}
.nav__logo-img {
  grid-row: 1/3;
  width: auto;
  height: 130px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
}

/* Contact page: slightly taller logo, simple box (no shadow) */
.contact .nav__logo-img {
  height: 130px;
  width: auto;
  display: block;
  border-radius: 0 !important;
  object-fit: contain;
  box-shadow: none !important;
}



.nav__logo--stacked {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
}
.nav__logo-img--full {
  height: 130px;
  width: auto;
  display: block;
  border-radius: 0 !important;
  background: transparent;
  object-fit: contain;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-primary);
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
  align-self: end;
}
.nav__logo-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  transition: color var(--t-fast);
  align-self: start;
}
.nav.scrolled .nav__logo-name {
  color: var(--ink-primary);
}
.nav.scrolled .nav__logo-sub {
  color: var(--ink-tertiary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-left: auto;
}
.nav__link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-primary);
  transition: color var(--t-fast);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.nav__link:hover {
  color: var(--clr-teal);
}
.nav.scrolled .nav__link {
  color: var(--ink-secondary);
}
.nav.scrolled .nav__link:hover {
  color: var(--clr-teal);
}
.nav__chevron {
  font-size: 18px !important;
  transition: transform var(--t-fast);
}

/* Dropdown */
.nav__dropdown {
  position: relative;
}
.nav__dropdown.is-open .nav__chevron {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 280px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-soft);
  padding: var(--sp-2);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--t-fast) var(--ease-smooth);
  z-index: 200;
}
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  transition: background var(--t-fast);
  color: var(--ink-primary);
}
.nav__dropdown-link:hover {
  background: var(--clr-teal-bg);
}
.nav__dropdown-link strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ink-primary);
}
.nav__dropdown-link small {
  display: block;
  font-size: 0.72rem;
  color: var(--ink-tertiary);
  margin-top: 2px;
}
.nav__dd-icon {
  font-size: 22px;
  color: var(--clr-teal);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-1);
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--ink-primary);
  border-radius: 2px;
  transition: all var(--t-fast);
}
.nav.scrolled .nav__hamburger span {
  background: var(--ink-primary);
}

/* Index page: keep white header text over hero */
.page-index .nav__logo-name {
  color: var(--ink-light);
}
.page-index .nav__logo-sub {
  color: var(--ink-light-muted);
}
.page-index .nav__link {
  color: var(--ink-light-muted);
}
.page-index .nav__link:hover {
  color: var(--ink-light);
}
.page-index .nav__hamburger span {
  background: var(--ink-light);
}
.nav__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(5px);
}
.nav__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-5px);
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--clr-forest-deep);
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #050a15;
  pointer-events: none;
  isolation: isolate;
}
/* Pre-darken the video itself so there's no bright flash before the gradient overlay paints */
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  pointer-events: none;
  filter: brightness(0.55) contrast(1.05);
}
/* Render the gradient as a pseudo-element of .hero__media so it composites in the same paint pass as the video — eliminates the late-tint flash */
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(5, 15, 35, 0.98) 0%,
      rgba(11, 31, 77, 0.85) 35%,
      rgba(37, 99, 235, 0.4) 75%,
      transparent 100%
    ),
    linear-gradient(to top, rgba(5, 15, 35, 0.85) 0%, transparent 50%);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none !important;
  background:
    linear-gradient(
      135deg,
      rgba(5, 15, 35, 0.98) 0%,
      rgba(11, 31, 77, 0.85) 35%,
      rgba(37, 99, 235, 0.4) 75%,
      transparent 100%
    ),
    linear-gradient(to top, rgba(5, 15, 35, 0.85) 0%, transparent 50%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--sp-12) var(--sp-5) var(--sp-8);
}
.hero__govt-bar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(217, 74, 71, 0.9);
  color: var(--ink-light);
  padding: 0.5rem 1.5rem;
  border-radius: var(--r-pill);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: var(--sp-4);
}
.hero__badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}
.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--ink-light);
  margin-bottom: var(--sp-4);
  max-width: 800px;
}
.hero__headline em {
  font-style: italic;
  color: #8fd8ff;
}
.hero__dot {
  color: var(--clr-coral);
}
.hero__sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-light-muted);
  line-height: 1.6;
  max-width: 550px;
  margin-bottom: var(--sp-6);
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

.hero__scroll-cue {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-mouse__dot {
  width: 4px;
  height: 8px;
  background: var(--ink-light);
  border-radius: 4px;
  animation: scroll-bounce 2s infinite;
}
@keyframes scroll-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.3;
  }
}
.scroll-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ─── Hero Impact Grid ─── */
.hero__impact-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: var(--sp-3);
  margin-top: var(--sp-3);
  padding: 0 var(--sp-2);
  max-width: 100%;
  width: 100%;
  position: relative;
  z-index: 10;
}

/* ═══════════════ IMPACT FOCUS AREAS ═══════════════ */
.impact-focus__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  text-align: center;
  transition: all var(--t-normal) var(--ease-smooth);
}

.impact-focus__icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: all var(--t-normal) var(--ease-smooth);
}
.impact-focus__icon .material-icons-outlined {
  font-size: 40px;
  display: block;
}

.impact-focus__icon--red {
  background: linear-gradient(135deg, #d94a47 0%, #b83230 100%);
  color: white;
}
.impact-focus__icon--green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}
.impact-focus__icon--blue {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
}
.impact-focus__icon--amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}
.impact-focus__icon--orange {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  color: white;
}

.impact-focus__item:hover .impact-focus__icon {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.impact-focus__item:hover {
  transform: translateY(-2px);
}

.impact-focus__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ═══════════════ PILLARS ═══════════════ */
.pillars {
  padding: var(--sp-10) 0 var(--sp-12);
  background: var(--bg-ivory);
}
.pillars__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.pillars__header,
.programs__header,
.impact__header,
.reach__header,
.gallery__header,
.founder__header,
.csr__header {
  text-align: center;
  margin-bottom: var(--sp-8);
}
.pillars__header .section-sub,
.programs__header .section-sub,
.impact__header .section-sub,
.reach__header .section-sub,
.gallery__header .section-sub,
.founder__header .section-sub,
.csr__header .section-sub {
  margin-inline: auto;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  position: relative;
}
.pillars__grid > :nth-child(2) {
  transform: translateY(-20px);
}

.pillar-card {
  background: var(--bg-white);
  border-radius: var(--r-soft);
  padding: var(--sp-6) var(--sp-5);
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
  transition: all var(--t-normal) var(--ease-smooth);
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: var(--r-soft) var(--r-soft) 0 0;
  transition: height var(--t-normal);
}
.pillar-card--humanity::before {
  background: var(--clr-teal);
}
.pillar-card--culture::before {
  background: var(--clr-coral);
}
.pillar-card--values::before {
  background: var(--clr-amber);
}
.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.pillar-card:hover::before {
  height: 6px;
}
.pillars__grid > :nth-child(2):hover {
  transform: translateY(-28px);
}

.pillar-card__icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
}
.pillar-card__icon-wrap .material-icons-outlined {
  font-size: 32px;
}
.pillar-card__icon-wrap--teal {
  background: var(--clr-teal-bg);
  color: var(--clr-teal);
}
.pillar-card__icon-wrap--coral {
  background: var(--clr-coral-bg);
  color: var(--clr-coral);
}
.pillar-card__icon-wrap--amber {
  background: var(--clr-amber-bg);
  color: var(--clr-amber);
}

.pillar-card__hindi {
  font-size: 1.8rem;
  color: var(--ink-tertiary);
  opacity: 0.6;
  margin-bottom: 4px;
}
.pillar-card__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--ink-primary);
  margin-bottom: 4px;
}
.pillar-card__subtitle {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--clr-teal);
  margin-bottom: var(--sp-3);
}
.pillar-card__desc {
  font-size: 0.95rem;
  color: var(--ink-secondary);
  line-height: 1.6;
}

/* ═══════════════ MISSION ═══════════════ */
.mission {
  padding: var(--sp-10) 0;
  background: var(--bg-white);
}
.mission__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.mission__card {
  padding: var(--sp-6);
  border-radius: var(--r-soft);
  position: relative;
}
.mission__card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}
.mission__card-icon .material-icons-outlined {
  font-size: 24px;
  color: var(--clr-teal);
}
.mission__card p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-secondary);
}
.mission__card em {
  color: var(--clr-teal);
  font-weight: 500;
}

/* ═══════════════ PROGRAMS ═══════════════ */
.programs {
  padding: var(--sp-10) 0 var(--sp-12);
  background: var(--bg-surface);
}
.programs__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.programs__header {
  margin-bottom: var(--sp-8);
}

/* Hub Visual */
.hub-visual {
  text-align: center;
  margin-bottom: var(--sp-12);
  padding: var(--sp-6) var(--sp-4);
}
.hub-visual__center {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: var(--sp-4) var(--sp-6);
  background: var(--clr-teal);
  border-radius: 50%;
  width: 160px;
  height: 160px;
  justify-content: center;
  color: var(--ink-light);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.3);
}
.hub-visual__center .material-icons-outlined {
  font-size: 36px;
}
.hub-visual__center strong {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}
.hub-visual__spokes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-2);
  margin-top: var(--sp-5);
}
.hub-spoke {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.5rem 1.2rem;
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-secondary);
  box-shadow: var(--shadow-card);
  transition: all var(--t-fast);
}
.hub-spoke:hover {
  border-color: var(--clr-teal);
  color: var(--clr-teal);
  transform: translateY(-2px);
}
.hub-spoke .material-icons-outlined {
  font-size: 18px;
  color: var(--clr-teal);
}

/* Program Row */
.program-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  margin-bottom: var(--sp-12);
}
.program-row--reverse {
  direction: rtl;
}
.program-row--reverse > * {
  direction: ltr;
}
.program-row__image-wrap {
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.program-row__image-wrap--organic-1 {
  border-radius: var(--r-organic-1);
}
.program-row__image-wrap--organic-2 {
  border-radius: var(--r-organic-2);
}
.program-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.program-row:hover .program-row__img {
  transform: scale(1.05);
}

.program-row__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}
.program-row__tag .material-icons-outlined {
  font-size: 16px;
}
.program-row__tag--teal {
  background: var(--clr-teal-bg);
  color: var(--clr-teal-deep);
}
.program-row__tag--forest {
  background: rgba(59, 130, 246, 0.14);
  color: var(--clr-forest-light);
}

.program-row__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink-primary);
  margin-bottom: var(--sp-3);
}
.program-row__lead {
  font-size: 1.05rem;
  color: var(--ink-secondary);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}

.program-row__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.program-row__list li {
  display: flex;
  gap: var(--sp-2);
  font-size: 0.95rem;
  color: var(--ink-secondary);
  line-height: 1.5;
}
.program-row__list-icon {
  font-size: 20px;
  color: var(--clr-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Programs Pair */
.programs__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.program-card {
  border-radius: var(--r-soft);
  padding: var(--sp-5);
  transition: all var(--t-normal) var(--ease-smooth);
}
.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.program-card__icon-wrap {
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: var(--sp-3);
}
.program-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.program-card__thumb--top {
  object-position: center top;
}
.program-card:hover .program-card__thumb {
  transform: scale(1.05);
}
.program-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-coral);
  margin-bottom: var(--sp-2);
}
.program-card__tag .material-icons-outlined {
  font-size: 16px;
}
.program-card__title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink-primary);
  margin-bottom: var(--sp-2);
}
.program-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--sp-3);
}

/* ═══════════════ IMPACT ═══════════════ */
.impact {
  padding: var(--sp-12) 0;
  background: var(--clr-forest-deep);
  position: relative;
}
.impact__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}

.impact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}
.impact-stat {
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-soft);
  transition: all var(--t-normal);
}
.impact-stat:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.impact-stat__icon {
  margin-bottom: var(--sp-2);
}
.impact-stat__icon .material-icons-outlined {
  font-size: 28px;
  color: var(--clr-teal-muted);
}
.impact-stat__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--clr-teal-muted);
  line-height: 1;
}
.impact-stat__suffix {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--clr-teal-muted);
}
.impact-stat__label {
  font-size: 0.85rem;
  color: var(--ink-light-muted);
  margin-top: var(--sp-2);
  letter-spacing: 0.05em;
}

/* Infographic */
.infographic {
  margin-bottom: var(--sp-10);
  padding: var(--sp-6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--r-soft);
}
.infographic__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-light);
  margin-bottom: var(--sp-5);
}
.infographic__title .material-icons-outlined {
  color: var(--clr-teal-muted);
}
.infographic__row {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
  justify-content: center;
  flex-wrap: wrap;
}

.pie-chart-wrap {
  flex-shrink: 0;
}
.pie-chart__visual {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: conic-gradient(
    var(--clr-teal) 0% 35%,
    var(--clr-forest-light) 35% 60%,
    var(--clr-coral) 60% 80%,
    var(--clr-amber) 80% 100%
  );
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
  position: relative;
}
.pie-chart__visual::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--clr-forest-deep);
}

.pie-legend {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.pie-legend__item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.9rem;
  color: var(--ink-light-muted);
}
.pie-legend__item strong {
  color: var(--ink-light);
  margin-right: 4px;
}
.pie-legend__dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  flex-shrink: 0;
}
.pie-legend__dot--edu {
  background: var(--clr-teal);
}
.pie-legend__dot--env {
  background: var(--clr-forest-light);
}
.pie-legend__dot--animal {
  background: var(--clr-coral);
}
.pie-legend__dot--community {
  background: var(--clr-amber);
}

/* Trust Badge Pills */
.impact__badges {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.trust-badge-pill {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.8rem 1.5rem;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: var(--r-pill);
  color: var(--clr-teal-muted);
}
.trust-badge-pill .material-icons-outlined {
  font-size: 20px;
  color: var(--clr-teal-muted);
}
.trust-badge-pill strong {
  font-size: 0.9rem;
  color: var(--clr-teal-muted);
  display: block;
}
.trust-badge-pill small {
  font-size: 0.65rem;
  color: var(--ink-light-muted);
  display: block;
}

/* ═══════════════ REACH ═══════════════ */
.reach {
  padding: var(--sp-10) 0;
  background: var(--bg-ivory);
}
.reach__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.reach__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.reach-card {
  border-radius: var(--r-soft);
  padding: var(--sp-5);
  transition: all var(--t-normal);
}
.reach-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.reach-card__pin {
  font-size: 28px;
  color: var(--clr-coral);
  display: block;
  margin-bottom: var(--sp-2);
}
.reach-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--ink-primary);
  margin-bottom: 4px;
}
.reach-card__sub {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-teal);
  margin-bottom: var(--sp-3);
}

/* ═══════════════ GALLERY ═══════════════ */
.gallery {
  padding: var(--sp-10) 0;
  background: var(--bg-white);
}
.gallery__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  grid-auto-rows: 250px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-soft);
  cursor: pointer;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease-smooth);
}
.gallery__item:hover img {
  transform: scale(1.08);
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: var(--ink-light);
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t-fast);
}
.gallery__caption .material-icons-outlined {
  font-size: 16px;
}
.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════ FOUNDER ═══════════════ */
.founder {
  padding: var(--sp-10) 0;
  background: var(--bg-ivory);
}
.founder__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.founder__card {
  display: flex;
  gap: var(--sp-6);
  border-radius: var(--r-soft);
  padding: var(--sp-6);
  align-items: flex-start;
}
.founder__avatar {
  flex-shrink: 0;
  width: 200px;
  height: 240px;
  overflow: hidden;
  border-radius: var(--r-organic-1);
}
.founder__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.founder__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ink-primary);
  margin-bottom: 4px;
}
.founder__role-detail {
  font-size: 0.85rem;
  color: var(--ink-tertiary);
  margin-bottom: var(--sp-3);
}
.founder__award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clr-coral-bg);
  padding: 0.5rem 1rem;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  color: var(--clr-coral-deep);
  margin-bottom: var(--sp-3);
}
.founder__award .material-icons-outlined {
  font-size: 18px;
  color: var(--clr-coral);
}
.founder__bio {
  font-size: 1rem;
  color: var(--ink-secondary);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}
.founder__trustees-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-tertiary);
  margin-bottom: var(--sp-2);
}
.founder__trustees-names {
  display: flex;
  gap: var(--sp-2);
}
.founder__trustee-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-pill);
  font-size: 0.82rem;
  background: var(--clr-teal-bg);
  color: var(--clr-teal-deep);
  font-weight: 500;
}
.founder__trustee-chip .material-icons-outlined {
  font-size: 16px;
}

/* ═══════════════ CSR ═══════════════ */
.csr {
  padding: var(--sp-10) 0;
  background: var(--bg-white);
}
.csr__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
}
.csr__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.csr-card {
  border-radius: var(--r-soft);
  padding: var(--sp-6) var(--sp-5);
  transition: all var(--t-normal);
}
.csr-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.csr-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-teal-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-3);
}
.csr-card__icon .material-icons-outlined {
  font-size: 24px;
  color: var(--clr-teal);
}
.csr-card__num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-teal);
  opacity: 0.4;
  margin-bottom: var(--sp-2);
}
.csr-card__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-primary);
  margin-bottom: var(--sp-2);
}

.csr__partner {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--clr-teal-bg);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: var(--r-soft);
}
.csr__partner .material-icons-outlined {
  font-size: 28px;
  color: var(--clr-teal);
  flex-shrink: 0;
}
.csr__partner p {
  font-size: 0.95rem;
  color: var(--ink-secondary);
}

/* ═══════════════ VOLUNTEER ═══════════════ */
.volunteer {
  padding: var(--sp-12) 0;
  background: var(--bg-ivory);
}
.volunteer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-10);
  align-items: center;
}
.volunteer__headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink-primary);
  margin-bottom: var(--sp-3);
}
.volunteer__headline em {
  color: var(--clr-teal);
}
.volunteer__sub {
  font-size: 1.05rem;
  color: var(--ink-secondary);
  line-height: 1.6;
}

.volunteer__cards {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.action-card {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--bg-white);
  border-radius: var(--r-soft);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  transition: all var(--t-normal) var(--ease-smooth);
  align-items: flex-start;
}
.action-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--clr-teal);
}
.action-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--clr-coral-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.action-card__icon .material-icons-outlined {
  font-size: 24px;
  color: var(--clr-coral);
}
.action-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink-primary);
  margin-bottom: 4px;
}
.action-card p {
  font-size: 0.9rem;
  color: var(--ink-secondary);
}
.action-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: var(--sp-2);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--clr-teal);
  letter-spacing: 0.04em;
}
.action-card__link .material-icons-outlined {
  font-size: 16px;
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  position: relative;
}
.footer__wave {
  line-height: 0;
  overflow: hidden;
}
.footer__wave svg {
  display: block;
  width: 100%;
}
.footer__body {
  background: var(--clr-forest-deep);
  color: var(--ink-light);
  padding-top: var(--sp-8);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-5) var(--sp-8);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--sp-6);
}
.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--ink-light);
  display: block;
}
.footer__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  display: block;
  margin-bottom: var(--sp-3);
}
.footer__tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: var(--sp-3);
}
.footer__social {
  display: flex;
  gap: var(--sp-2);
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t-fast);
}
.footer__social a:hover {
  border-color: var(--clr-teal);
  background: rgba(37, 99, 235, 0.15);
}
.footer__social .material-icons-outlined {
  font-size: 18px;
  color: var(--ink-light);
}
.footer__col-title {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: var(--sp-3);
}
.footer__links li {
  margin-bottom: var(--sp-2);
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.88);
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 2px;
}
.footer__links a:hover {
  color: #fff;
}
.footer__links .material-icons-outlined {
  font-size: 16px;
}
.footer-cert {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-cert .material-icons-outlined {
  font-size: 16px;
  color: #fff;
}
.footer-cert strong {
  color: var(--clr-teal-muted);
}
.footer__contact-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: var(--sp-2);
  font-size: 0.88rem;
}
.footer__contact-detail .material-icons-outlined {
  font-size: 18px;
  color: #fff;
}
.footer__contact-detail a {
  color: #fff;
  font-weight: 500;
}
.footer__contact-detail a:hover {
  text-decoration: underline;
}
.footer__newsletter {
  display: flex;
  gap: 0;
  margin-top: var(--sp-3);
}
.footer__newsletter-input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  border-radius: var(--r-pill) 0 0 var(--r-pill);
  outline: none;
  transition: border-color var(--t-fast);
}
.footer__newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.55);
}
.footer__newsletter-input:focus {
  border-color: var(--clr-teal);
}
.footer__newsletter-btn {
  padding: 0.7rem 1.2rem;
  background: var(--clr-teal);
  color: var(--ink-light);
  border: none;
  border-radius: 0 var(--r-pill) var(--r-pill) 0;
  cursor: pointer;
  transition: background var(--t-fast);
  display: flex;
  align-items: center;
}
.footer__newsletter-btn:hover {
  background: var(--clr-teal-deep);
}
.footer__newsletter-btn .material-icons-outlined {
  font-size: 20px;
}
.footer__bottom {
  background: #0b1f3a;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: var(--sp-3) var(--sp-5) var(--sp-4);
  max-width: none;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 1024px) {
  .pillars__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-4);
  }
  .pillars__grid > :nth-child(2) {
    transform: none;
  }
  .pillars__grid > :nth-child(2):hover {
    transform: translateY(-8px);
  }
  .mission__grid {
    grid-template-columns: 1fr;
  }
  .program-row {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .program-row--reverse {
    direction: ltr;
  }
  .programs__pair {
    grid-template-columns: 1fr;
  }
  .impact__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .reach__cards {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .gallery__item--wide {
    grid-column: span 1;
  }
  .csr__grid {
    grid-template-columns: 1fr;
  }
  .volunteer__inner {
    grid-template-columns: 1fr;
  }
  .founder__card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .founder__avatar {
    width: 160px;
    height: 200px;
  }
  .founder__trustees-names {
    justify-content: center;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --sp-5: 1.5rem;
  }
  .nav__logo-img {
    width: auto;
    height: 88px;
  }
  .nav__links {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-4);
    z-index: 99;
    padding: var(--sp-4);
  }
  .nav__links.open {
    display: flex;
  }
  .nav__links.open .nav__link {
    color: var(--ink-primary);
    font-size: 1.1rem;
  }
  .nav__hamburger {
    display: flex;
  }
  .nav__dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    padding: 0;
    min-width: 0;
  }

  .hero__headline {
    font-size: 2.3rem;
  }
  .hero__content {
    padding-top: var(--sp-12);
  }
  .hero__govt-bar {
    font-size: 0.65rem;
    padding: 0.4rem 1rem;
  }

  .impact__grid {
    grid-template-columns: 1fr 1fr;
  }
  .impact__badges {
    flex-direction: column;
    align-items: center;
  }
  .infographic__row {
    flex-direction: column;
  }

  .reach__cards {
    grid-template-columns: 1fr;
  }
  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }
  .footer__inner {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--sp-1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 5000;
  background: var(--bg-white);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(11, 31, 77, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateY(120%);
  opacity: 0;
  transition:
    transform 0.45s var(--ease-bounce),
    opacity 0.35s ease;
  max-width: 1100px;
  margin: 0 auto;
}
.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding: 1.1rem 1.4rem;
}
.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-secondary);
}
.cookie-banner__text strong {
  display: block;
  color: var(--clr-forest-deep);
  margin-bottom: 0.2rem;
  font-size: 1rem;
}
.cookie-banner__text a {
  color: var(--clr-teal);
  text-decoration: underline;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner__btn {
  padding: 0.65rem 1.2rem;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  font-family: var(--font-body);
}
.cookie-banner__btn--accept {
  background: var(--clr-teal);
  color: #fff;
}
.cookie-banner__btn--accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}
.cookie-banner__btn--learn {
  background: transparent;
  color: var(--clr-forest-deep);
  border: 1px solid var(--border-soft);
}
.cookie-banner__btn--learn:hover {
  background: var(--bg-surface);
}
@media (max-width: 560px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cookie-banner__actions {
    justify-content: center;
  }
}

/* ── WhatsApp Floating Action Button ── */
.wa-fab {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 4000;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.1rem 0.75rem 0.9rem;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow:
    0 10px 28px rgba(37, 211, 102, 0.45),
    0 4px 10px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    bottom 0.35s ease;
}
.wa-fab:hover {
  transform: translateY(-3px);
  box-shadow:
    0 18px 40px rgba(37, 211, 102, 0.55),
    0 6px 14px rgba(0, 0, 0, 0.22);
}
.wa-fab:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.55);
  outline-offset: 3px;
}
.wa-fab__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.wa-fab__label {
  letter-spacing: 0.5px;
}
.wa-fab--lifted {
  bottom: 6.25rem;
} /* lift above cookie banner */
.wa-chat-boat--lifted {
  bottom: 10rem; /* lifts panel above the elevated FAB when cookie banner is visible */
}

/* ── WhatsApp "Chat Boat" (side panel next to icon) ── */
.wa-chat-boat {
  position: fixed;
  left: 1.5rem;
  bottom: 5.25rem; /* clears the wa-fab button (≈56px) + 1.5rem base + 0.5rem gap */
  z-index: 3999; /* behind wa-fab slightly */
  width: 320px;
  max-width: calc(100vw - 3rem);
  transform-origin: left bottom;
}

.wa-chat-boat__panel {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 18px;
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 20px 60px rgba(11, 31, 77, 0.22);
  overflow: hidden;
  transform: translateX(-8px);
}

.wa-chat-boat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(37, 99, 235, 0.18));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.wa-chat-boat__title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  color: #0b1f4d;
}

.wa-chat-boat__title .material-icons-outlined {
  color: #25d366;
  font-size: 20px !important;
}

.wa-chat-boat__close {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.65);
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.55);
}

.wa-chat-boat__close:hover {
  background: rgba(37, 99, 235, 0.08);
  color: var(--clr-teal-deep);
}

.wa-chat-boat__close .material-icons-outlined {
  font-size: 18px !important;
}

.wa-chat-boat__body {
  padding: 0.85rem 0.9rem 0.9rem;
}

.wa-chat-boat__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}

.wa-chat-boat__chip {
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.75);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink-primary);
  transition: transform 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.wa-chat-boat__chip:hover {
  transform: translateY(-1px);
  border-color: rgba(37, 211, 102, 0.35);
  background: rgba(37, 211, 102, 0.08);
}

.wa-chat-boat__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.55rem;
  align-items: center;
}

.wa-chat-boat__input {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.10);
  border-radius: 12px;
  padding: 0.65rem 0.75rem;
  font-family: inherit;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink-primary);
  outline: none;
}

.wa-chat-boat__input:focus {
  border-color: rgba(37, 211, 102, 0.6);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.14);
}

.wa-chat-boat__send {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 0;
  background: #25d366;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-chat-boat__send:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.35);
}

.wa-chat-boat__send .material-icons-outlined {
  font-size: 20px !important;
}

/* Collapsed state */
.wa-chat-boat[data-open="false"] .wa-chat-boat__panel {
  display: none;
}

/* Mobile: hide panel, keep icon only (avoids overlap) */
@media (max-width: 600px) {
  .wa-chat-boat {
    display: none;
  }
  .wa-fab__label {
    display: none;
  }
  .wa-fab {
    padding: 0.85rem;
  }
  .wa-fab__icon {
    width: 26px;
    height: 26px;
  }
  .wa-fab--lifted {
    bottom: 7rem;
  }
}

@media print {
  .wa-fab,
  .wa-chat-boat {
    display: none;
  }
}


/* ═══════════════════════════════════════════════════════
   LANGUAGE SWITCHER  (en / hi / mr)
   ═══════════════════════════════════════════════════════ */
.nav__lang {
  position: relative;
  display: flex;
  align-items: center;
}
.nav__lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-primary);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-soft);
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast);
}
.nav__lang-btn:hover {
  background: #fff;
  border-color: var(--clr-teal);
  color: var(--clr-teal);
}
.nav__lang-btn .material-icons-outlined {
  font-size: 18px !important;
}
.nav__lang-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 0.4rem;
  box-shadow: 0 12px 36px rgba(9, 30, 80, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity var(--t-fast),
    transform var(--t-fast),
    visibility var(--t-fast);
  z-index: 300;
}
.nav__lang.is-open .nav__lang-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}
.nav__lang-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--ink-primary);
  background: none;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition:
    background var(--t-fast),
    color var(--t-fast);
}
.nav__lang-menu button:hover {
  background: var(--clr-teal-bg);
  color: var(--clr-teal);
}
.nav__lang-menu button.is-active {
  background: var(--clr-teal);
  color: #fff;
}
.nav__lang-menu button .lang-tag {
  font-size: 0.7rem;
  opacity: 0.7;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav__lang-menu button.is-active .lang-tag {
  opacity: 0.9;
}

/* Mobile: lang switcher inside hamburger menu */
@media (max-width: 1024px) {
  .nav__lang {
    width: 100%;
    justify-content: center;
    padding: 0.5rem 0;
  }
  .nav__lang-btn {
    width: 80%;
    justify-content: center;
    min-height: 44px;
    padding: 0.6rem 1rem;
  }
  .nav__lang-menu {
    position: relative;
    top: auto;
    right: auto;
    width: 80%;
    margin: 0.4rem auto 0;
    /* Must sit above other drawer content */
    z-index: 1006;
    /* Visible as a static block inside the drawer, not a floating popup */
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  }
  /* Only show lang menu when switcher is open */
  .nav__lang-menu {
    display: none;
  }
  .nav__lang.is-open .nav__lang-menu {
    display: block;
  }
}

/* ═══════════════════════════════════════════════════════
   TRANSPARENCY DASHBOARD  —  live impact counters
   ═══════════════════════════════════════════════════════ */
.tx-dash {
  position: relative;
  padding: 6rem 5% 5rem;
  background: linear-gradient(135deg, #0b1f4d 0%, #1e3a8a 60%, #0b1f4d 100%);
  color: #fff;
  overflow: hidden;
}
.tx-dash::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 20% 0%, rgba(37, 99, 235, 0.3), transparent 60%),
    radial-gradient(
      50% 50% at 90% 100%,
      rgba(217, 74, 71, 0.18),
      transparent 70%
    );
  pointer-events: none;
}
.tx-dash__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}
.tx-dash__header {
  text-align: center;
  margin-bottom: 3rem;
}
.tx-dash .eyebrow {
  color: #fcd34d;
}
.tx-dash__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin: 0.5rem 0 1rem;
}
.tx-dash__heading em {
  color: #fcd34d;
  font-style: italic;
}
.tx-dash__sub {
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.02rem;
}
.tx-dash__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.tx-counter {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition:
    transform var(--t-fast),
    border-color var(--t-fast),
    background var(--t-fast);
}
.tx-counter:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}
.tx-counter__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(252, 211, 77, 0.18);
  color: #fcd34d;
  margin-bottom: 1rem;
}
.tx-counter__icon .material-icons-outlined {
  font-size: 30px !important;
}
.tx-counter__value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.tx-counter__value .tx-counter__plus {
  font-size: 0.6em;
  color: #fcd34d;
}
.tx-counter__label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 0.6rem;
  font-weight: 500;
}
.tx-dash__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}
.tx-dash__footer .material-icons-outlined {
  font-size: 16px !important;
}
.tx-dash__live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
  animation: tx-pulse 2s infinite;
}
@keyframes tx-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(34, 197, 94, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

/* ═══════════════════════════════════════════════════════
   WHERE YOUR MONEY GOES  —  donut breakdown
   ═══════════════════════════════════════════════════════ */
.wymg {
  padding: 6rem 5% 5rem;
  background: var(--bg-ivory);
}
.wymg__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.wymg__header {
  text-align: center;
  margin-bottom: 3rem;
}
.wymg__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink-primary);
  margin: 0.5rem 0 1rem;
}
.wymg__heading em {
  color: var(--clr-coral);
  font-style: italic;
}
.wymg__sub {
  color: var(--ink-secondary);
  max-width: 720px;
  margin: 0 auto;
}
.wymg__grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.2fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 880px) {
  .wymg__grid {
    grid-template-columns: 1fr;
  }
}
.wymg__chart-wrap {
  display: flex;
  justify-content: center;
}
.wymg__chart {
  position: relative;
  width: min(360px, 100%);
  aspect-ratio: 1;
  max-width: 360px;
}
.wymg__chart svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.wymg__chart circle {
  fill: none;
  stroke-width: 24;
  transition: stroke-width var(--t-fast);
  transform-origin: center;
}
.wymg__chart-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
}
.wymg__chart-center .big {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--ink-primary);
  line-height: 1;
}
.wymg__chart-center .small {
  font-size: 0.72rem;
  color: var(--ink-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 0.4rem;
}
.wymg__legend {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wymg__legend-item {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.1rem 1.25rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  transition:
    transform var(--t-fast),
    box-shadow var(--t-fast);
}
.wymg__legend-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}
.wymg__swatch {
  width: 14px;
  height: 14px;
  border-radius: 4px;
}
.wymg__legend-text strong {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-primary);
  margin-bottom: 0.2rem;
}
.wymg__legend-text span {
  font-size: 0.82rem;
  color: var(--ink-tertiary);
  line-height: 1.5;
}
.wymg__legend-pct {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink-primary);
}
.wymg__audit {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1rem;
  border-top: 1px dashed var(--border-soft);
  color: var(--ink-tertiary);
  font-size: 0.82rem;
}
.wymg__audit .material-icons-outlined {
  font-size: 14px !important;
  vertical-align: -2px;
  color: var(--clr-teal);
}

/* ═══════════════════════════════════════════════════════
   PHILOSOPHY (about.html)
   ═══════════════════════════════════════════════════════ */
.philosophy-page {
  padding: 7rem 5% 5rem;
  background: var(--bg-ivory);
}
.philosophy-page__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.philosophy-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.philosophy-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--ink-primary);
  margin: 0.5rem 0 1.25rem;
}
.philosophy-hero h1 em {
  color: var(--clr-coral);
  font-style: italic;
}
.philosophy-hero p {
  font-size: 1.15rem;
  color: var(--ink-secondary);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.75;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.philosophy-card {
  background: #fff;
  border: 1px solid var(--border-soft);
  border-radius: 24px;
  padding: 2rem;
  transition:
    transform var(--t-fast),
    box-shadow var(--t-fast);
}
.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.philosophy-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--clr-teal-bg);
  color: var(--clr-teal);
  margin-bottom: 1.25rem;
}
.philosophy-card__icon .material-icons-outlined {
  font-size: 30px !important;
}
.philosophy-card--coral .philosophy-card__icon {
  background: var(--clr-coral-bg);
  color: var(--clr-coral);
}
.philosophy-card--amber .philosophy-card__icon {
  background: var(--clr-amber-bg);
  color: var(--clr-amber);
}
.philosophy-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink-primary);
  margin-bottom: 0.6rem;
}
.philosophy-card p {
  color: var(--ink-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.philosophy-founder {
  margin-top: 5rem;
  background: #fff;
  border-radius: 28px;
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-soft);
}
@media (max-width: 780px) {
  .philosophy-founder {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem;
  }
  .philosophy-founder img {
    margin: 0 auto;
  }
}
.philosophy-founder img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--bg-ivory);
  box-shadow: var(--shadow-soft);
}
.philosophy-founder h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink-primary);
  margin: 0.4rem 0 0.8rem;
}
.philosophy-founder p {
  color: var(--ink-secondary);
  line-height: 1.7;
}
.philosophy-cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════
   ACCESSIBILITY — skip link + focus styles
   ═══════════════════════════════════════════════════════ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--clr-forest-deep);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
  outline: 3px solid #fcd34d;
  outline-offset: 2px;
}

:focus-visible {
  outline: 3px solid var(--clr-teal);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 3px;
}
/* Nav-specific focus-visible — matches nav link border-radius */
.nav__link:focus-visible,
.nav__dropdown-trigger:focus-visible,
.nav__dropdown-link:focus-visible,
.nav__lang-btn:focus-visible {
  outline: 3px solid var(--clr-teal);
  outline-offset: 3px;
  border-radius: 8px;
}
/* Skip focus styles on mouse click; show only on keyboard */
.nav__link:focus:not(:focus-visible),
.nav__dropdown-trigger:focus:not(:focus-visible),
.nav__dropdown-link:focus:not(:focus-visible) {
  outline: none;
}

/* ═══════════════════════════════════════════════════════
   IMPACT MAP (Maharashtra)
   ═══════════════════════════════════════════════════════ */
.impact-map {
  padding: 6rem 5% 5rem;
  background: linear-gradient(180deg, #fdf8f0 0%, #f5ebe0 100%);
}
.impact-map__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.impact-map__header {
  text-align: center;
  margin-bottom: 3rem;
}
.impact-map__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink-primary);
  margin: 0.5rem 0 1rem;
}
.impact-map__heading em {
  color: var(--clr-coral);
  font-style: italic;
}
.impact-map__sub {
  color: var(--ink-secondary);
  max-width: 720px;
  margin: 0 auto;
}
.impact-map__layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 980px) {
  .impact-map__layout {
    grid-template-columns: 1fr;
  }
}
.impact-map__svg-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}
.impact-map__svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Pin styling */
.map-pin {
  cursor: pointer;
  transition: transform 0.25s var(--ease-bounce);
  transform-box: fill-box;
  transform-origin: center;
}
.map-pin:hover,
.map-pin.is-active,
.map-pin:focus-visible {
  transform: scale(1.15);
  outline: none;
}
.map-pin__halo {
  fill: var(--clr-teal);
  opacity: 0.18;
  animation: map-pulse 2.4s ease-out infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.map-pin__dot {
  fill: var(--clr-teal);
  stroke: #fff;
  stroke-width: 3;
}
.map-pin--featured .map-pin__halo {
  fill: var(--clr-coral);
}
.map-pin--featured .map-pin__dot {
  fill: var(--clr-coral);
}
.map-pin.is-active .map-pin__dot {
  fill: var(--clr-amber);
}
.map-pin.is-active .map-pin__halo {
  fill: var(--clr-amber);
  opacity: 0.28;
}
.map-pin__label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  fill: var(--ink-primary);
}
@keyframes map-pulse {
  0% {
    r: 18;
    opacity: 0.45;
  }
  100% {
    r: 32;
    opacity: 0;
  }
}

/* District info card */
.impact-map__panel {
  position: relative;
}
.map-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  animation: map-card-in 0.35s var(--ease-smooth);
}
.map-card[hidden] {
  display: none;
}
@keyframes map-card-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.map-card__tag {
  display: inline-block;
  background: var(--clr-coral-bg);
  color: var(--clr-coral);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
}
.map-card h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink-primary);
  margin: 0.6rem 0 0.2rem;
}
.map-card__loc {
  color: var(--ink-tertiary);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.map-card__bio {
  color: var(--ink-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}
.map-card__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-soft);
}
.map-card__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--clr-coral);
  line-height: 1;
}
.map-card__stats span {
  font-size: 0.78rem;
  color: var(--ink-tertiary);
  margin-top: 0.3rem;
  display: block;
}
.impact-map__hint {
  text-align: center;
  font-size: 0.78rem;
  color: var(--ink-tertiary);
  margin-top: 1rem;
}
.impact-map__hint .material-icons-outlined {
  font-size: 14px !important;
  vertical-align: -2px;
  margin-right: 4px;
}

/* ═══════════════════════════════════════════════════════
   SPONSOR (sponsor.html + index preview)
   ═══════════════════════════════════════════════════════ */
.sponsor-hero {
  padding: 9rem 5% 5rem;
  background: linear-gradient(135deg, #fdf8f0 0%, #f5e6e5 100%);
}
.sponsor-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) {
  .sponsor-hero__inner {
    grid-template-columns: 1fr;
  }
}
.sponsor-hero__h {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: var(--ink-primary);
  margin: 0.6rem 0 1.25rem;
}
.sponsor-hero__h em {
  color: var(--clr-coral);
  font-style: italic;
}
.sponsor-hero__sub {
  color: var(--ink-secondary);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.sponsor-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.sponsor-hero__image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  border: 6px solid #fff;
}

.sponsor-profiles {
  padding: 5rem 5%;
  background: var(--bg-white);
}
.sponsor-profiles__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sponsor-profiles__header {
  text-align: center;
  margin-bottom: 3rem;
}
.sponsor-profiles__h {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink-primary);
  margin: 0.5rem 0 1rem;
}
.sponsor-profiles__sub {
  color: var(--ink-secondary);
  max-width: 720px;
  margin: 0 auto;
}
.sponsor-profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.sponsor-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition:
    transform var(--t-fast),
    box-shadow var(--t-fast);
}
.sponsor-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.sponsor-card__image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--bg-white);
}
.sponsor-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.sponsor-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--ink-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}
.sponsor-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.sponsor-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ink-primary);
  margin-bottom: 0.4rem;
}
.sponsor-card__loc {
  font-size: 0.85rem;
  color: var(--ink-tertiary);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 1rem;
}
.sponsor-card__loc .material-icons-outlined {
  font-size: 16px !important;
}
.sponsor-card__bio {
  color: var(--ink-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
  flex: 1;
}
.sponsor-card__needs {
  display: grid;
  gap: 0.5rem;
  margin: 1.25rem 0;
  padding: 1rem;
  background: var(--bg-surface);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--ink-secondary);
}
.sponsor-card__needs li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.sponsor-card__needs .material-icons-outlined {
  font-size: 18px !important;
  color: var(--clr-teal);
}
.sponsor-card__cost {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.sponsor-card__cost .cost-amt {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--clr-coral);
}
.sponsor-card__cost .cost-label {
  color: var(--ink-tertiary);
  font-size: 0.78rem;
}
.sponsor-card__cta {
  width: 100%;
}
.sponsor-profiles__note {
  text-align: center;
  margin-top: 2.5rem;
  padding: 1rem;
  color: var(--ink-tertiary);
  font-size: 0.92rem;
}
.sponsor-profiles__note a {
  color: var(--clr-teal);
  font-weight: 600;
}

.sponsor-how {
  padding: 5rem 5%;
  background: var(--bg-ivory);
}
.sponsor-how__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.sponsor-how__h {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--ink-primary);
  margin: 0.5rem 0 1rem;
}
.sponsor-how__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 0;
}
.sponsor-how__step {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  border: 1px solid var(--border-soft);
}
.sponsor-how__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.sponsor-how__step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink-primary);
  margin-bottom: 0.5rem;
}
.sponsor-how__step p {
  color: var(--ink-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
}

.sponsor-trust {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #0b1f4d 0%, #1e3a8a 100%);
  color: #fff;
}
.sponsor-trust__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.sponsor-trust__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  margin: 1.5rem 0 1rem;
}
.sponsor-trust__inner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.sponsor-trust__badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Sponsor preview (homepage strip) */
.sponsor-preview {
  padding: 6rem 5%;
  background: var(--bg-white);
}
.sponsor-preview__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.sponsor-preview__header {
  text-align: center;
  margin-bottom: 3rem;
}
.sponsor-preview__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ink-primary);
  margin: 0.5rem 0 1rem;
}
.sponsor-preview__heading em {
  color: var(--clr-coral);
  font-style: italic;
}
.sponsor-preview__sub {
  color: var(--ink-secondary);
  max-width: 720px;
  margin: 0 auto;
}
.sponsor-preview__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.sponsor-mini {
  background: var(--bg-surface);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  transition:
    transform var(--t-fast),
    box-shadow var(--t-fast);
}
.sponsor-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.sponsor-mini img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: contain;
  background: var(--bg-white);
}
.sponsor-mini__body {
  padding: 1.25rem;
}
.sponsor-mini__body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-primary);
  margin-bottom: 0.4rem;
}
.sponsor-mini__body p {
  font-size: 0.88rem;
  color: var(--ink-secondary);
  line-height: 1.5;
}
.sponsor-mini__cost {
  display: inline-block;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--clr-coral);
}
.sponsor-preview__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* ═══════════════════════════════════════════════════════
   CORPORATE IMPACT REPORT (gate)
   ═══════════════════════════════════════════════════════ */
.corp-report {
  padding: 6rem 5%;
  background: linear-gradient(135deg, #1e3a8a 0%, #0b1f4d 100%);
  color: #fff;
}
.corp-report__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 880px) {
  .corp-report__inner {
    grid-template-columns: 1fr;
  }
}
.corp-report__copy .eyebrow {
  color: #fcd34d;
}
.corp-report__h {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin: 0.5rem 0 1.2rem;
}
.corp-report__h em {
  color: #fcd34d;
  font-style: italic;
}
.corp-report__p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.corp-report__bullets {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.corp-report__bullets li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}
.corp-report__bullets .material-icons-outlined {
  color: #22c55e;
  font-size: 20px !important;
}
.corp-report__visual {
  display: flex;
  justify-content: center;
}
.corp-report__doc {
  width: 280px;
  aspect-ratio: 3/4;
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 12px 30px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
  transition: transform 0.4s var(--ease-smooth);
  display: flex;
  flex-direction: column;
}
.corp-report__doc:hover {
  transform: rotate(0deg) scale(1.04);
}
.corp-report__doc-header {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--clr-coral);
  margin-bottom: 1.2rem;
}
.corp-report__doc-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.corp-report__doc-header small {
  display: block;
  font-size: 0.55rem;
  letter-spacing: 0.16em;
  color: var(--ink-tertiary);
}
.corp-report__doc-header strong {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-primary);
  line-height: 1.2;
  margin-top: 0.1rem;
}
.corp-report__doc-bar {
  height: 8px;
  background: #f0e6d6;
  border-radius: 4px;
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.corp-report__doc-bar span {
  display: block;
  height: 100%;
  background: var(--clr-teal);
  border-radius: 4px;
}
.corp-report__doc-bar:nth-of-type(3) span {
  background: var(--clr-coral);
}
.corp-report__doc-bar:nth-of-type(4) span {
  background: var(--clr-amber);
}
.corp-report__doc-bar:nth-of-type(5) span {
  background: var(--clr-teal-light);
}
.corp-report__doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-soft);
}
.corp-report__doc-grid > div {
  text-align: center;
}
.corp-report__doc-grid strong {
  display: block;
  font-family: var(--font-display);
  color: var(--clr-coral);
  font-size: 1.1rem;
}
.corp-report__doc-grid span {
  font-size: 0.6rem;
  color: var(--ink-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Modal */
.corp-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.corp-modal[hidden] {
  display: none;
}
.corp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 31, 77, 0.75);
  backdrop-filter: blur(6px);
  animation: corp-fade 0.25s ease;
}
.corp-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 2.5rem;
  width: min(480px, calc(100% - 2rem));
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
  animation: corp-pop 0.35s var(--ease-bounce);
}
@keyframes corp-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes corp-pop {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.corp-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg-surface);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink-secondary);
}
.corp-modal__close:hover {
  background: var(--clr-coral);
  color: #fff;
}
.corp-modal__panel h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink-primary);
  margin-bottom: 0.5rem;
}
.corp-modal__panel > p {
  color: var(--ink-secondary);
  font-size: 0.92rem;
  margin-bottom: 1.5rem;
}
.corp-modal__form {
  display: grid;
  gap: 1rem;
}
.corp-field {
  display: grid;
  gap: 0.4rem;
}
.corp-field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-primary);
}
.corp-field input[type="text"],
.corp-field input[type="email"] {
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  transition: border-color var(--t-fast);
}
.corp-field input:focus {
  outline: none;
  border-color: var(--clr-teal);
  box-shadow: 0 0 0 3px var(--clr-teal-bg);
}
.corp-field--check {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  display: flex;
  font-size: 0.88rem;
  color: var(--ink-secondary);
}
.corp-field--check input {
  width: 18px;
  height: 18px;
}
.corp-modal__legal {
  font-size: 0.75rem;
  color: var(--ink-tertiary);
  text-align: center;
  margin-top: 0.5rem;
}
.corp-modal__success {
  display: none;
  padding: 1rem;
  background: #ecfdf5;
  border-radius: 12px;
  color: #047857;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
}
.corp-modal__success[hidden] {
  display: none !important;
}
.corp-modal__form.is-success > *:not(.corp-modal__success) {
  display: none;
}
.corp-modal__form.is-success .corp-modal__success {
  display: flex;
}

/* ═══════════════════════════════════════════════════════
   RTL SUPPORT  —  applied when [dir="rtl"] (Arabic)
   ═══════════════════════════════════════════════════════ */
html[dir="rtl"] body {
  text-align: right;
  font-family: "Tajawal", "Noto Naskh Arabic", "DM Sans", system-ui, sans-serif;
}
html[dir="rtl"] em {
  font-style: normal;
} /* Arabic doesn't visually use italic */

/* Nav layout flip */
html[dir="rtl"] .nav__links {
  margin-left: 0;
  margin-right: auto;
}
html[dir="rtl"] .nav__logo {
  grid-template-columns: 1fr auto;
  column-gap: 0.75rem;
}
html[dir="rtl"] .nav__logo-img {
  grid-column: 2;
  grid-row: 1/3;
}
html[dir="rtl"] .nav__logo-name,
html[dir="rtl"] .nav__logo-sub {
  grid-column: 1;
  text-align: right;
}

/* Lang switcher menu — anchor to the left for RTL */
html[dir="rtl"] .nav__lang-menu {
  right: auto;
  left: 0;
}
html[dir="rtl"] .nav__lang-menu button {
  text-align: right;
}

/* Skip link mirror */
html[dir="rtl"] .skip-link {
  left: auto;
  right: 1rem;
}

/* Hero RTL */
html[dir="rtl"] .hero__ctas,
html[dir="rtl"] .hero__badge-row {
  justify-content: flex-end;
  flex-wrap: wrap;
}
html[dir="rtl"] .hero__impact-grid {
  direction: rtl;
}
html[dir="rtl"] .hero__headline {
  text-align: right;
}

/* Buttons: keep icons inline but flow naturally in RTL */
html[dir="rtl"] .btn {
  flex-direction: row-reverse;
}
html[dir="rtl"] .btn .material-icons-outlined {
  transform: scaleX(-1);
} /* mirror arrows */

/* Cards — flip image/badge corner */
html[dir="rtl"] .sponsor-card__badge {
  left: auto;
  right: 1rem;
}
html[dir="rtl"] .sponsor-card__needs {
  direction: rtl;
}
html[dir="rtl"] .sponsor-card__loc {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Modal close button — flip to top-left */
html[dir="rtl"] .corp-modal__close {
  right: auto;
  left: 1rem;
}

/* Map — flip layout but keep SVG as-is (the map itself is geographic) */
html[dir="rtl"] .impact-map__layout {
  direction: rtl;
}
html[dir="rtl"] .impact-map__svg-wrap {
  direction: ltr;
}

/* Footer */
html[dir="rtl"] .footer__inner {
  direction: rtl;
}
html[dir="rtl"] .footer__social {
  flex-direction: row-reverse;
}
html[dir="rtl"] .footer__links li a {
  flex-direction: row-reverse;
}

/* Pillars / philosophy cards */
html[dir="rtl"] .pillars__grid,
html[dir="rtl"] .philosophy-grid {
  direction: rtl;
}

/* Pie chart legend — text aligns right */
html[dir="rtl"] .wymg__legend-item {
  direction: rtl;
}

/* Counter digits stay LTR even in RTL doc */
html[dir="rtl"] .tx-counter__value,
html[dir="rtl"] .map-card__stats strong,
html[dir="rtl"] .corp-report__doc-grid strong,
html[dir="rtl"] .sponsor-card__cost {
  direction: ltr;
}

/* Cookie banner */
html[dir="rtl"] .cookie-banner__inner {
  direction: rtl;
}
html[dir="rtl"] .cookie-banner__actions {
  flex-direction: row-reverse;
}

/* Generic: flip chevron arrows in dropdowns */
html[dir="rtl"] .nav__chevron {
  transform: scaleX(-1);
}

/* Cookie banner — extra button variant + GDPR-aware tweaks */
.cookie-banner__btn--essential {
  background: transparent !important;
  color: var(--ink-primary) !important;
  border: 1px solid var(--border-soft) !important;
}
.cookie-banner__btn--essential:hover {
  background: var(--bg-surface) !important;
}
.cookie-banner__actions {
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   PAN-INDIA FOOTPRINT SECTION
   Communicates the NGO's national reach: states, districts,
   communities, and direct vs partner-led operations.
   ═══════════════════════════════════════════════════════════ */

.pan-india {
  padding: 6rem 5% 7rem;
  background: linear-gradient(
    180deg,
    var(--bg-white) 0%,
    var(--bg-surface) 100%
  );
  position: relative;
  overflow: hidden;
}
.pan-india::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      60% 50% at 15% 0%,
      rgba(37, 99, 235, 0.05),
      transparent 60%
    ),
    radial-gradient(
      50% 40% at 90% 100%,
      rgba(217, 74, 71, 0.04),
      transparent 70%
    );
  pointer-events: none;
}
.pan-india__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.pan-india__header {
  text-align: center;
  margin-bottom: 3rem;
}
.pan-india__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--ink-primary);
  line-height: 1.15;
  margin: 0.65rem 0 1rem;
}
.pan-india__heading em {
  font-style: italic;
  background: linear-gradient(
    135deg,
    var(--clr-teal) 0%,
    var(--clr-forest-deep) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pan-india__sub {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-secondary);
}

/* Headline stats */
.pan-india__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin: 3rem 0 3.5rem;
}
.pan-india__stat {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(11, 31, 77, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.pan-india__stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 31, 77, 0.1);
}
.pan-india__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.pan-india__stat span {
  font-size: 0.92rem;
  color: var(--ink-secondary);
  font-weight: 500;
}

/* States grid */
.pan-india__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.state-card {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 1.5rem 1.5rem 1.75rem;
  box-shadow: 0 6px 18px rgba(11, 31, 77, 0.05);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.state-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(11, 31, 77, 0.12);
}
.state-card--primary {
  grid-column: span 1;
  border: 1.5px solid rgba(37, 99, 235, 0.18);
  background: linear-gradient(180deg, var(--bg-white) 0%, #f8fbff 100%);
}
@media (min-width: 720px) {
  .state-card--primary {
    grid-column: span 2;
  }
}
.state-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  flex-wrap: wrap;
}
.state-card__tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 20px;
}
.state-card__tag--direct {
  background: rgba(37, 99, 235, 0.12);
  color: var(--clr-teal);
}
.state-card__tag--partner {
  background: rgba(217, 74, 71, 0.1);
  color: var(--clr-coral);
}
.state-card__region {
  font-size: 0.78rem;
  color: var(--ink-secondary);
  font-weight: 500;
}
.state-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink-primary);
  margin: 0 0 0.55rem;
}
.state-card__lead {
  font-size: 0.95rem;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin: 0 0 1rem;
}
.state-card p {
  font-size: 0.92rem;
  color: var(--ink-secondary);
  line-height: 1.6;
  margin: 0;
}
.state-card__sites {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.state-card__sites li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--ink-secondary);
  line-height: 1.5;
}
.state-card__sites li strong {
  color: var(--ink-primary);
  font-weight: 600;
}
.state-card__sites .material-icons-outlined {
  font-size: 18px;
  color: var(--clr-teal);
  margin-top: 1px;
  flex-shrink: 0;
}

/* Communities served chips */
.pan-india__communities {
  background: var(--bg-white);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 2rem 2rem 1.75rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 20px rgba(11, 31, 77, 0.05);
}
.pan-india__communities-h {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-primary);
  margin: 0 0 1rem;
  text-align: center;
}
.pan-india__chips {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.pan-india__chips li {
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.08) 0%,
    rgba(13, 148, 136, 0.08) 100%
  );
  color: var(--clr-forest-deep);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

/* Global donors CTA strip */
.pan-india__cta-text {
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-secondary);
  line-height: 1.65;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  flex-wrap: wrap;
}
.pan-india__cta-text .material-icons-outlined {
  color: var(--clr-teal);
  font-size: 22px;
}

/* Mobile tweaks */
@media (max-width: 640px) {
  .pan-india {
    padding: 4rem 5% 5rem;
  }
  .pan-india__stat strong {
    font-size: 1.9rem;
  }
  .state-card {
    padding: 1.25rem 1.25rem 1.5rem;
  }
  .state-card h3 {
    font-size: 1.3rem;
  }
  .pan-india__communities {
    padding: 1.5rem 1.25rem;
  }
}

/* ═══════════════════════════════════════════════════════════
   DONATION FLOW + CONSENT MODAL
   Extracted from contact.html inline styles for maintainability.
   ═══════════════════════════════════════════════════════════ */

@keyframes scan {
  0% {
    top: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bank-detail PAN block: smaller text */
.bank-value--pan {
  font-size: 0.85rem;
  line-height: 1.5;
}

/* QR generator section */
.donation-qr-section {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2.5rem;
}
.donation-qr-section__head {
  text-align: center;
  margin-bottom: 2rem;
}
.donation-qr-section__head .material-icons-outlined {
  font-size: 28px;
  color: var(--clr-teal-light);
  margin-bottom: 0.5rem;
}
.donation-qr-section__head h4 {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 1.3rem;
  color: var(--bg-white);
}
.donation-qr-section__head p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.5rem;
}
.donation-qr-form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.donation-qr-form .form-group {
  text-align: left;
}
.donation-qr-form .form-group label {
  color: var(--bg-white);
  font-weight: 600;
}
.donation-qr-input {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink-primary);
  border: none;
}
.donation-qr-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.donation-qr-form__continue-wrap {
  position: relative;
  margin-top: 0.5rem;
}
.btn--continue-consent {
  justify-content: center;
  width: 100%;
  opacity: 0.55;
  cursor: not-allowed;
  transition: all 0.3s ease;
}
.donation-qr-form__hint {
  font-size: 0.85rem;
  color: #fca5a5;
  margin: 0;
  text-align: center;
  line-height: 1.5;
  min-height: 1.2em;
  transition: color 0.25s ease;
}
.donation-qr-form__legal {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
  text-align: center;
  line-height: 1.5;
}

/* QR display block (revealed after consent) */
.donation-qr-block {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 3rem;
  background: rgba(0, 0, 0, 0.2);
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  animation: fadeIn 0.5s ease forwards;
}
.donation-qr-block__head {
  font-size: 1.1rem;
  color: var(--bg-white);
}
.donation-qr-block__amount {
  color: var(--clr-teal-light);
  font-size: 1.4rem;
}
.donation-qr-block__type {
  font-weight: 600;
}
.donation-qr-block__frame {
  position: relative;
  margin-top: 1rem;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}
.donation-qr-block__scanner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(96, 165, 250, 0.8);
  box-shadow: 0 0 15px 4px rgba(96, 165, 250, 0.6);
  animation: scan 2s linear infinite;
}
.donation-qr-block__timer {
  margin-top: 1rem;
  color: #ef6461;
  font-weight: 600;
  font-family: monospace;
  font-size: 1.2rem;
  background: rgba(239, 100, 97, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

/* Consent modal — overlay + panel */
.consent-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(11, 31, 77, 0.92);
  backdrop-filter: blur(6px);
  padding: 1rem;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
}
.consent-modal__panel {
  background: #fff;
  color: #1a1a1a;
  max-width: 780px;
  width: 100%;
  margin: 2rem auto;
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.consent-modal__header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.consent-modal__title {
  margin: 0;
  font-family: "Lora", serif;
  font-size: 1.45rem;
  color: #0b1f4d;
}
.consent-modal__intro {
  margin: 0.35rem 0 0;
  color: #4a4a4a;
  font-size: 0.92rem;
}
.consent-modal__close {
  background: transparent;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  cursor: pointer;
  color: #64748b;
}
.consent-modal__close .material-icons-outlined {
  font-size: 20px;
}

/* Recap bar */
.consent-modal__recap {
  padding: 1rem 1.75rem;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.88rem;
  color: #334155;
}
.consent-modal__recap strong {
  color: #0f172a;
}
.consent-modal__recap .recap-amount {
  color: #1d4ed8;
  font-weight: 700;
}
.consent-modal__recap .recap-type {
  font-weight: 600;
}

/* Consent steps */
.consent-section {
  padding: 1.5rem 1.75rem 0;
}
.consent-section--privacy {
  padding-top: 1.25rem;
}
.consent-section--signature {
  padding: 1.5rem 1.75rem;
}
.consent-section h3 {
  font-family: "Lora", serif;
  font-size: 1.1rem;
  color: #0b1f4d;
  margin: 0 0 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.consent-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.82rem;
  font-weight: 700;
}
.consent-step-num--kyc {
  background: #fef3c7;
  color: #b45309;
}
.consent-step-num--blue {
  background: #dbeafe;
  color: #1d4ed8;
}
.consent-section__lead {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.55;
}
.consent-section__doc-status {
  margin-left: auto;
  font-size: 0.78rem;
  color: #94a3b8;
}

/* Aadhaar fields */
.aadhaar-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}
.aadhaar-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.35rem;
}
.aadhaar-input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "JetBrains Mono", Consolas, monospace;
  letter-spacing: 0.05em;
}
.aadhaar-error {
  display: none;
  margin: 0.35rem 0 0;
  color: #dc2626;
  font-size: 0.8rem;
}
.aadhaar-ok {
  display: none;
  margin: 0.35rem 0 0;
  color: #10b981;
  font-size: 0.8rem;
}
.aadhaar-photo-preview {
  border: 1.5px dashed #cbd5e1;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  min-height: 120px;
  display: grid;
  place-items: center;
  color: #94a3b8;
  background: #f8fafc;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.aadhaar-photo-preview .material-icons-outlined {
  font-size: 36px;
  display: block;
  margin-bottom: 0.35rem;
}
.aadhaar-photo-preview span {
  font-size: 0.85rem;
}
.aadhaar-photo-input {
  display: none;
}
.aadhaar-photo-clear {
  display: none;
  background: none;
  border: none;
  color: #dc2626;
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}
.aadhaar-photo-clear .material-icons-outlined {
  font-size: 14px;
  vertical-align: middle;
}

/* Scrollable doc viewers (terms / privacy) */
.consent-doc-scroll {
  overflow-y: auto;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.86rem;
  line-height: 1.65;
  background: #fff;
  color: #334155;
}
.consent-doc-scroll--terms {
  height: 280px;
}
.consent-doc-scroll--privacy {
  height: 220px;
}
.consent-doc-scroll p[data-loading] {
  text-align: center;
  color: #94a3b8;
}

/* Locked declarations notice */
.cb-locked-msg {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: #b45309;
  background: #fef3c7;
  padding: 0.55rem 0.85rem;
  border-radius: 8px;
}
.cb-locked-msg .material-icons-outlined {
  font-size: 16px;
  vertical-align: middle;
}

/* Checkbox rows */
.cb-row {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 0.5rem;
  cursor: not-allowed;
  opacity: 0.55;
}
.cb-row.cb-row--enabled {
  cursor: pointer;
  opacity: 1;
}
.cb-row input[type="checkbox"] {
  margin-top: 0.2rem;
  transform: scale(1.25);
  accent-color: #1d4ed8;
}
.cb-row__text {
  font-size: 0.9rem;
  line-height: 1.55;
}

/* Signature input */
.consent-section__signature-lead {
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  color: #64748b;
}
.consent-signature-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Lora", serif;
  font-style: italic;
}
.sig-error {
  display: none;
  margin: 0.4rem 0 0;
  color: #dc2626;
  font-size: 0.82rem;
}

/* Consent footer */
.consent-modal__footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  gap: 0.65rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.consent-btn {
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}
.consent-btn--cancel {
  border: 1.5px solid #cbd5e1;
  background: #fff;
  color: #475569;
}
.consent-btn--submit {
  padding: 0.7rem 1.5rem;
  border: none;
  background: #1d4ed8;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.55;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.consent-btn--submit.is-ready {
  cursor: pointer;
  opacity: 1;
}
.consent-btn--submit .material-icons-outlined {
  font-size: 18px;
}

.consent-error {
  display: none;
  margin: 0 1.75rem 1.5rem;
  padding: 0.85rem 1rem;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
  border-radius: 10px;
  font-size: 0.88rem;
}

/* Confirmation banner (post-consent, above QR) */
.consent-confirmed {
  display: none;
  max-width: 500px;
  margin: 2rem auto 0;
  padding: 1.25rem;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 12px;
  text-align: left;
}
.consent-confirmed__head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: #a7f3d0;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.consent-confirmed__body {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
}
.consent-confirmed__id {
  font-family: monospace;
  color: #a7f3d0;
}
.consent-confirmed__body a {
  color: #a7f3d0;
  text-decoration: underline;
}
