/* ============================================================
   CRY School Supplies Fund — Landing Page Stylesheet
   Brand: #F7941D (orange), #1A2B5F (navy), #ffffff (white)
   ============================================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
select { font-family: inherit; font-size: 0.92rem; padding: 12px 14px; border: 2px solid #e5e7eb; border-radius: 12px; outline: none; color: #1f2937; background: #fff; transition: border-color 0.25s; width: 100%; }
select:focus { border-color: #F7941D; }

:root {
  --orange:   #F7941D;
  --orange-d: #d97a0a;
  --navy:     #1A2B5F;
  --navy-d:   #0f1a3d;
  --white:    #ffffff;
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --green:    #2e7d32;
  --radius:   12px;
  --radius-lg:20px;
  --shadow:   0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:0 12px 48px rgba(0,0,0,0.18);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
input, button { font-family: inherit; }

/* ---- Utility ---- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(247,148,29,0.40);
}
.btn-primary:hover {
  background: var(--orange-d);
  box-shadow: 0 8px 24px rgba(247,148,29,0.50);
}

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

.btn-nav {
  background: var(--orange);
  color: var(--white);
  padding: 10px 22px;
  font-size: 0.88rem;
}

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-full { width: 100%; justify-content: center; border-radius: 14px; }

.btn-donate {
  width: 100%;
  justify-content: center;
  background: #003087;
  color: #fff;
  font-size: 1.05rem;
  padding: 18px;
  border-radius: 50px;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(0,48,135,0.30);
}
.btn-donate:hover {
  background: #001f6b;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,48,135,0.40);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--navy-d);
  color: #fff;
  text-align: center;
  padding: 10px 24px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-cta {
  background: var(--orange);
  color: #fff;
  padding: 4px 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
  transition: background var(--transition);
}
.top-bar-cta:hover { background: var(--orange-d); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: box-shadow var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: -1px;
}
.logo-c { color: var(--orange); }
.logo-r { color: var(--navy); }
.logo-y { color: var(--orange); }
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-full { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; color: var(--navy); }
.logo-tagline { font-size: 0.7rem; color: var(--gray-600); }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
}
.nav-links a { color: var(--gray-800); transition: color var(--transition); }
.nav-links a:hover { color: var(--orange); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px 24px 20px;
  gap: 14px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
}
.mobile-menu a { color: var(--navy); padding: 6px 0; border-bottom: 1px solid var(--gray-100); }
.mobile-menu.open { display: flex; }

/* ============================================================
   HERO — VIDEO BACKGROUND
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-d);
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  display: block;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,26,61,0.92) 0%,
    rgba(26,43,95,0.75) 50%,
    rgba(247,148,29,0.20) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-top: 80px;
  padding-bottom: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(247,148,29,0.25);
  border: 1px solid rgba(247,148,29,0.60);
  color: #ffb74d;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.hero-accent { color: var(--orange); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 32px;
  max-width: 560px;
}
.hero-sub strong { color: #fff; }
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.hero-trust span { display: flex; align-items: center; gap: 6px; }
.hero-trust i { color: var(--orange); }

.hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll a {
  color: rgba(255,255,255,0.50);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(8px); }
}

/* ============================================================
   STATS BAND
   ============================================================ */
.stats-band {
  background: var(--orange);
  padding: 40px 24px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item { color: #fff; }
.stat-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0.88;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 96px 0; }
.section-alt { background: var(--gray-50); }
.section-orange {
  background: linear-gradient(135deg, var(--navy-d) 0%, var(--navy) 100%);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  background: rgba(247,148,29,0.12);
  color: var(--orange-d);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.light-tag {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.90);
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.section-alt .section-title,
.section-orange .section-title { color: var(--navy); }
.section-orange .section-title { color: #fff; }
.section-sub { color: var(--gray-600); font-size: 1rem; }

/* ============================================================
   IMPACT CARDS
   ============================================================ */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.impact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.impact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}
.featured-card { border-color: var(--orange); }
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 30px;
  white-space: nowrap;
}
.impact-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.impact-amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--orange);
  margin-bottom: 8px;
}
.impact-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.impact-card p { font-size: 0.88rem; color: var(--gray-600); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}
.step-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}
.step-item:hover { transform: translateY(-4px); }
.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 12px 0;
  color: var(--orange);
  font-size: 1.2rem;
  opacity: 0.6;
}
.step-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 4px;
}
.step-icon {
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 14px;
}
.step-item h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.step-item p { font-size: 0.82rem; color: var(--gray-600); }

/* ============================================================
   PHOTO STRIP
   ============================================================ */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 260px;
}
.photo-item {
  position: relative;
  overflow: hidden;
}
.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-item:hover img { transform: scale(1.06); }
.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(26,43,95,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.photo-item:hover .photo-overlay { opacity: 1; }
.photo-overlay span {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
}

/* ============================================================
   STORIES
   ============================================================ */
.stories-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 24px;
  align-items: start;
}
.story-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 4px solid var(--gray-200);
  transition: border-color var(--transition), transform var(--transition);
}
.story-card:hover { border-color: var(--orange); transform: translateY(-4px); }
.story-card-featured { border-color: var(--orange); }
.story-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
}
blockquote {
  font-size: 0.95rem;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}
blockquote::before { content: '\201C'; font-size: 2rem; color: var(--orange); line-height: 0; vertical-align: -0.5rem; margin-right: 4px; }
.story-credit strong { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.story-credit span { font-size: 0.8rem; color: var(--gray-600); }

/* ============================================================
   DONATION SECTION
   ============================================================ */
.donate-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.donate-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
}
.donate-sub { color: rgba(255,255,255,0.78); font-size: 0.98rem; margin-bottom: 28px; }
.donate-perks { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.donate-perks li { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.85); font-size: 0.92rem; }
.donate-perks li i { color: #66bb6a; font-size: 1rem; }
.partner-logos { display: flex; align-items: center; gap: 14px; }
.partner-logos span { color: rgba(255,255,255,0.55); font-size: 0.8rem; }
.partner-logo { height: 32px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }

/* Donation Card */
.donate-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
}

/* Frequency Toggle */
.freq-toggle {
  display: flex;
  background: var(--gray-100);
  border-radius: 50px;
  padding: 4px;
  margin-bottom: 24px;
  gap: 4px;
}
.freq-btn {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: transparent;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-600);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.freq-btn.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

/* Amount Grid */
.amount-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}
.amount-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 12px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), box-shadow var(--transition);
}
.amount-btn:hover { border-color: var(--orange); background: rgba(247,148,29,0.05); }
.amount-btn.active {
  border-color: var(--orange);
  background: rgba(247,148,29,0.08);
  box-shadow: 0 0 0 3px rgba(247,148,29,0.20);
}
.amount-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--navy);
}
.amount-desc { font-size: 0.72rem; color: var(--gray-600); margin-top: 2px; font-weight: 600; }

/* Custom Amount */
.custom-amount-wrap { margin-bottom: 20px; }
.custom-amount-wrap label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 6px;
}
.custom-input-group {
  display: flex;
  align-items: center;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.custom-input-group:focus-within { border-color: var(--orange); }
.currency-sign {
  padding: 12px 14px;
  background: var(--gray-100);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--gray-600);
  border-right: 1px solid var(--gray-200);
}
.custom-input {
  flex: 1;
  padding: 12px 14px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  color: var(--navy);
}

/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--gray-600); }
.form-group input {
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.92rem;
  outline: none;
  transition: border-color var(--transition);
  color: var(--navy);
}
.form-group input:focus { border-color: var(--orange); }

/* Dedication */
.dedication-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px dashed var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--gray-600);
  cursor: pointer;
  margin-bottom: 8px;
  transition: border-color var(--transition), color var(--transition);
  user-select: none;
}
.dedication-toggle:hover { border-color: var(--orange); color: var(--orange-d); }
.dedication-toggle i:first-child { color: #e53935; }
.dedication-toggle i:last-child { margin-left: auto; transition: transform var(--transition); }
.dedication-toggle.open i:last-child { transform: rotate(180deg); }
.dedication-field { display: none; margin-bottom: 12px; }
.dedication-field.open { display: block; }
.dedication-field input {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  font-size: 0.92rem;
  outline: none;
  color: var(--navy);
}

.donate-disclaimer {
  font-size: 0.72rem;
  color: var(--gray-600);
  margin-top: 12px;
  display: flex;
  gap: 6px;
  line-height: 1.5;
}
.donate-disclaimer i { flex-shrink: 0; margin-top: 2px; color: var(--gray-600); }

/* ============================================================
   TRANSPARENCY
   ============================================================ */
.transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trans-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}
.trans-card:hover { transform: translateY(-4px); }
.trans-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
  margin: 14px 0 8px;
}
.trans-card p { font-size: 0.85rem; color: var(--gray-600); line-height: 1.6; }
.trans-icon { font-size: 2rem; color: var(--orange); margin-bottom: 4px; }
.trans-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.trans-link:hover { color: var(--orange-d); }

/* SVG Pie Chart */
.pie-chart { width: 90px; height: 90px; margin: 0 auto 8px; }
.circular-chart { transform: rotate(-90deg); }
.circle-bg {
  fill: none;
  stroke: var(--gray-200);
  stroke-width: 3.8;
}
.circle {
  fill: none;
  stroke: var(--orange);
  stroke-width: 3.8;
  stroke-linecap: round;
  animation: progress 1.5s ease-out forwards;
}
.percentage {
  fill: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.38rem;
  font-weight: 900;
  text-anchor: middle;
  transform: rotate(90deg);
  transform-origin: 18px 18px;
}
@keyframes progress {
  0%   { stroke-dasharray: 0, 100; }
  100% { stroke-dasharray: 82, 100; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 760px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: var(--orange); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 20px;
  background: var(--white);
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-icon { flex-shrink: 0; color: var(--orange); transition: transform var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding: 0 20px 18px;
  background: var(--white);
}
.faq-item.open .faq-a { display: block; }
.faq-a p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.7; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-d);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { font-size: 0.87rem; line-height: 1.7; margin: 14px 0 20px; max-width: 280px; }
.footer-logo {
  display: flex;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -1px;
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.social-links a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.footer-links h4,
.footer-contact h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--orange); }
.footer-contact p { font-size: 0.83rem; line-height: 1.7; margin-bottom: 10px; display: flex; gap: 8px; }
.footer-contact i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   PAYPAL MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,40,0.72);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: slideUp 0.3s ease;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--gray-600);
  line-height: 1;
  transition: color var(--transition);
}
.modal-close:hover { color: var(--navy); }

.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.modal-paypal-logo { height: 32px; width: auto; }
.modal-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--navy);
}

.modal-summary {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 24px;
}
.modal-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  padding: 4px 0;
}
.modal-summary-row.muted { font-weight: 500; color: var(--gray-600); font-size: 0.82rem; }

.modal-notice {
  border: 2px solid #ffd54f;
  background: #fffde7;
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}
.notice-icon { font-size: 2rem; margin-bottom: 8px; }
.modal-notice h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.modal-notice p { font-size: 0.87rem; color: var(--gray-600); line-height: 1.6; }
.modal-notice strong { color: var(--navy); }

.modal-notify { margin-bottom: 20px; }
.modal-notify label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-600);
  margin-bottom: 8px;
}
.notify-row { display: flex; gap: 8px; }
.notify-row input {
  flex: 1;
  padding: 12px 14px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.88rem;
  outline: none;
  transition: border-color var(--transition);
}
.notify-row input:focus { border-color: var(--orange); }
.notify-row .btn-primary { padding: 12px 20px; font-size: 0.85rem; border-radius: var(--radius); }
.notify-success {
  margin-top: 10px;
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.modal-fallback { text-align: center; border-top: 1px solid var(--gray-200); padding-top: 16px; }
.modal-fallback p { font-size: 0.8rem; color: var(--gray-600); margin-bottom: 10px; }
.modal-fallback .btn-ghost {
  color: var(--navy);
  border-color: var(--gray-200);
  font-size: 0.85rem;
}
.modal-fallback .btn-ghost:hover { background: var(--gray-50); }

/* ============================================================
   STICKY BOTTOM BAR (mobile)
   ============================================================ */
.sticky-donate {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 12px 16px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
}

/* ============================================================
   PARTNER PILL (on Hero)
   ============================================================ */
.partner-pill {
  position: absolute;
  top: 90px;
  right: 32px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.82rem;
  padding: 10px 18px;
  border-radius: 50px;
  white-space: nowrap;
}
.partner-pill-logo {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

/* ============================================================
   HERO TIMER
   ============================================================ */
.hero-timer {
  margin-bottom: 28px;
}
.timer-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.timer-boxes {
  display: flex;
  align-items: center;
  gap: 6px;
}
.timer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 60px;
}
.timer-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.timer-name {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.timer-sep {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 16px;
}
.hero-double {
  background: linear-gradient(90deg, #F7941D, #ffb74d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ============================================================
   ORANGE INDIA PARTNER BANNER
   ============================================================ */
.partner-banner {
  background: linear-gradient(135deg, #0f1a3d 0%, #1A2B5F 60%, #1a3a1a 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.partner-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(247,148,29,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.partner-banner-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 48px;
  align-items: center;
}
.partner-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.partner-logo-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 2px solid rgba(247,148,29,0.50);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.partner-logo-circle img { width: 100%; filter: brightness(0) invert(1); }
.partner-logo-fallback { font-size: 2.5rem; }
.partner-badge-text { display: flex; flex-direction: column; }
.partner-badge-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); }
.partner-badge-name { font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; color: #fff; }

.partner-offer-headline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.partner-offer-headline i { color: var(--orange); flex-shrink: 0; }
.partner-offer-headline em { font-style: normal; color: var(--orange); }
.partner-offer-sub { color: rgba(255,255,255,0.72); font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }
.partner-offer-sub strong { color: #fff; }
.partner-examples {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.partner-ex {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
}
.partner-ex i { color: rgba(255,255,255,0.40); font-size: 0.72rem; }
.partner-ex.highlighted {
  background: rgba(247,148,29,0.18);
  border-color: rgba(247,148,29,0.50);
  color: #fff;
}
.ex-you { color: rgba(255,255,255,0.75); }
.ex-result { font-weight: 700; color: #66bb6a; }
.partner-ex.highlighted .ex-result { color: var(--orange); }

/* Partner Timer */
.partner-timer-wrap { text-align: center; }
.partner-timer-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}
.partner-timer-boxes {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.ptimer-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(247,148,29,0.35);
  border-radius: 10px;
  padding: 10px 12px;
  min-width: 54px;
}
.ptimer-val {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.ptimer-name {
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-top: 3px;
}
.ptimer-sep {
  font-size: 1.4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}

/* ============================================================
   IMPACT CARDS — doubles label
   ============================================================ */
.doubles {
  font-size: 0.85rem;
  color: #2e7d32;
  font-weight: 700;
  margin-left: 4px;
}
.tshirt-trigger-card { border-color: var(--orange) !important; }
.tshirt-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2e7d32, #43a047);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 30px;
  white-space: nowrap;
}

/* ============================================================
   T-SHIRT SECTION
   ============================================================ */
.tshirt-section { background: var(--gray-50); }
.tshirt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tshirt-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.tshirt-perks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--gray-800);
}
.tshirt-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.tshirt-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.tshirt-img-wrap:hover .tshirt-img { transform: scale(1.04); }
.tshirt-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 20px;
  background: linear-gradient(0deg, rgba(26,43,95,0.88) 0%, transparent 100%);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.tshirt-caption i { color: var(--orange); }

/* T-shirt callout in donation form */
.tshirt-callout {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(46,125,50,0.08), rgba(247,148,29,0.08));
  border: 2px solid rgba(46,125,50,0.30);
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-bottom: 16px;
  animation: fadeInDown 0.3s ease;
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.tshirt-mini-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.tshirt-callout div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tshirt-callout strong { font-size: 0.85rem; color: var(--navy); font-family: 'Montserrat', sans-serif; }
.tshirt-callout span { font-size: 0.75rem; color: var(--gray-600); }

/* Amount button t-shirt highlight */
.tshirt-amount-btn { border-color: #2e7d32 !important; background: rgba(46,125,50,0.04) !important; }
.tshirt-amount-btn.active { box-shadow: 0 0 0 3px rgba(46,125,50,0.20) !important; border-color: #2e7d32 !important; }

/* ============================================================
   DONATION FORM — matching banner
   ============================================================ */
.form-matching-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 20px;
}
.matching-logo {
  height: 28px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
  flex-shrink: 0;
}
.form-matching-banner strong { color: #fff; font-size: 0.9rem; display: block; margin-bottom: 2px; }
.matching-timer-row { font-size: 0.78rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
.mini-timer {
  background: rgba(247,148,29,0.25);
  color: var(--orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 1px 7px;
  border-radius: 6px;
  min-width: 28px;
  text-align: center;
}
.amount-match {
  font-size: 0.7rem;
  color: #2e7d32;
  font-weight: 700;
  margin-top: 1px;
}

/* ============================================================
   TRUST BADGES BAR (Footer)
   ============================================================ */
.trust-badges-bar {
  background: #111827;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 40px 0;
}
.trust-badges-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  max-width: 140px;
}
.trust-badge-img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(247,148,29,0.40);
  background: rgba(255,255,255,0.04);
  padding: 4px;
  transition: border-color 0.25s, transform 0.25s;
}
.trust-badge-item:hover .trust-badge-img {
  border-color: var(--orange);
  transform: scale(1.06);
}
.trust-badge-item span {
  color: rgba(255,255,255,0.72);
  font-size: 0.78rem;
  line-height: 1.45;
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .partner-banner-inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .partner-logo-wrap { flex-direction: row; justify-content: center; }
  .partner-examples { justify-content: center; }
  .partner-timer-wrap { display: flex; flex-direction: column; align-items: center; }
  .tshirt-inner { grid-template-columns: 1fr; gap: 32px; }
  .tshirt-img { height: 360px; }
  .impact-grid { grid-template-columns: repeat(2, 1fr); }
  .transparency-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
  }
  .step-connector { display: none; }
}

@media (max-width: 900px) {
  .stories-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .donate-wrap { grid-template-columns: 1fr; gap: 32px; }
  .donate-left { text-align: center; }
  .donate-perks { align-items: center; }
  .partner-logos { justify-content: center; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 100svh; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-strip { grid-template-columns: repeat(2, 1fr); height: 360px; }

  .impact-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .donate-card { padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .modal-box { padding: 28px 20px; }

  .sticky-donate { display: block; }
  section.section, section.section-alt, section.section-orange { padding: 64px 0; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .photo-strip { height: 300px; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .transparency-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ============================================================
   PHOTO GALLERY (6 items, 3-col on desktop)
   ============================================================ */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  height: 240px;
}
.photo-gallery .photo-item { position: relative; overflow: hidden; }
.photo-gallery .photo-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; }
.photo-gallery .photo-item:hover img { transform:scale(1.07); }
.photo-gallery .photo-overlay {
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(26,43,95,0.80) 0%, transparent 55%);
  display:flex; align-items:flex-end; padding:12px;
  opacity:0; transition:opacity 0.3s;
}
.photo-gallery .photo-item:hover .photo-overlay { opacity:1; }
.photo-gallery .photo-overlay span { color:#fff; font-family:'Montserrat',sans-serif; font-size:0.78rem; font-weight:700; }

/* ============================================================
   PHOTO MOSAIC
   ============================================================ */
.photo-mosaic-section { padding: 0 0 96px; }
.photo-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
}
.mosaic-item { position:relative; overflow:hidden; border-radius: var(--radius); }
.mosaic-item img { width:100%; height:100%; object-fit:cover; transition:transform 0.5s ease; display:block; }
.mosaic-item:hover img { transform:scale(1.05); }
.mosaic-wide { grid-column: 1; grid-row: 1 / 3; }
.mosaic-tall { grid-row: 1 / 3; }
.mosaic-caption {
  position:absolute; bottom:0; left:0; right:0;
  padding:10px 14px;
  background:linear-gradient(0deg, rgba(0,0,0,0.65) 0%, transparent 100%);
  color:#fff; font-size:0.75rem; font-family:'Montserrat',sans-serif; font-weight:700;
  transform:translateY(100%); transition:transform 0.3s;
}
.mosaic-item:hover .mosaic-caption { transform:translateY(0); }

/* ============================================================
   MISSION SECTION — GAMIFIED FUNDRAISING BOARD
   ============================================================ */

/* Section wrapper — dark navy, grid texture, glow orbs */
.mission-section {
  background: linear-gradient(135deg, #07112b 0%, #1a2b5f 55%, #0b1935 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
  isolation: isolate;
}
.mission-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(247,148,29,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,148,29,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none; z-index: 0;
}
.mission-glow-orb { position:absolute; border-radius:50%; filter:blur(80px); pointer-events:none; z-index:0; }
.mission-glow-1 { width:480px;height:480px; background:radial-gradient(circle,rgba(247,148,29,.16) 0%,transparent 70%); top:-120px;left:-120px; }
.mission-glow-2 { width:320px;height:320px; background:radial-gradient(circle,rgba(61,90,254,.14) 0%,transparent 70%); bottom:-80px;right:-40px; }
.mission-section .container, .mission-head, .mission-grid { position:relative; z-index:1; }

/* Head */
.mission-head { text-align:center; margin-bottom:48px; }
.mission-live-chip {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(239,68,68,.12); border:1px solid rgba(239,68,68,.25);
  color:#f87171; font-family:'Montserrat',sans-serif;
  font-size:.72rem; font-weight:800; letter-spacing:.1em;
  padding:6px 16px; border-radius:30px; margin-bottom:16px;
}
.mission-live-dot {
  width:8px; height:8px; border-radius:50%; background:#ef4444;
  display:inline-block; animation:liveBlink 1.1s infinite;
}
@keyframes liveBlink { 0%,100%{opacity:1} 50%{opacity:.2} }
.mission-h2 {
  font-family:'Montserrat',sans-serif;
  font-size:clamp(1.7rem,4vw,2.6rem); font-weight:900;
  color:#fff; line-height:1.2; margin-bottom:12px;
}
.mission-h2 em { font-style:normal; color:#F7941D; }
.mission-desc { color:rgba(255,255,255,.6); font-size:.97rem; }

/* Grid layout */
.mission-grid {
  display:grid;
  grid-template-columns:1fr 400px;
  gap:24px; align-items:start;
}

/* Panels — glass cards */
.mission-panel {
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.09);
  border-radius:20px;
  backdrop-filter:blur(10px);
  overflow:hidden;
}
.mission-panel-progress { padding:32px 28px 28px; }

/* Raised counter */
.mission-counter-wrap { text-align:center; margin-bottom:18px; }
.counter-badge {
  display:inline-block;
  background:rgba(247,148,29,.12); border:1px solid rgba(247,148,29,.25);
  border-radius:30px; padding:4px 16px; margin-bottom:10px;
  font-family:'Montserrat',sans-serif; font-size:.68rem; font-weight:800;
  letter-spacing:.08em; color:#F7941D; text-transform:uppercase;
}
.counter-value {
  display:block;
  font-family:'Montserrat',sans-serif;
  font-size:clamp(2.4rem,5vw,3.2rem); font-weight:900; line-height:1;
  background:linear-gradient(135deg,#F7941D 0%,#ffcc80 50%,#F7941D 100%);
  background-size:200% auto;
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
  animation:goldShine 4s linear infinite;
  margin-bottom:6px;
}
@keyframes goldShine { 0%{background-position:0% center} 100%{background-position:200% center} }
.counter-goal { font-size:.88rem; color:rgba(255,255,255,.5); }
.counter-goal strong { color:rgba(255,255,255,.82); }

/* Level pill */
.mission-level-wrap {
  display:flex; align-items:center; justify-content:center;
  gap:10px; flex-wrap:wrap; margin-bottom:24px;
}
.level-pill {
  display:inline-flex; align-items:center; gap:7px;
  background:linear-gradient(135deg,rgba(247,148,29,.15),rgba(247,148,29,.05));
  border:1px solid rgba(247,148,29,.3); border-radius:30px;
  padding:5px 16px; font-family:'Montserrat',sans-serif;
}
.level-num  { font-size:.65rem; font-weight:900; letter-spacing:.1em; color:#F7941D; text-transform:uppercase; }
.level-sep  { color:rgba(255,255,255,.2); }
.level-name { font-size:.8rem; font-weight:700; color:rgba(255,255,255,.8); }
.level-next-hint { font-size:.74rem; color:rgba(255,255,255,.38); }

/* Milestone row */
.milestone-row {
  display:flex; align-items:flex-start;
  margin-bottom:16px; padding:0 4px;
}
.mstone { display:flex; flex-direction:column; align-items:center; gap:5px; flex-shrink:0; }
.mstone-line { flex:1; height:2px; background:rgba(255,255,255,.1); margin:20px 3px 0; }
.mstone-icon {
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.05); border:2px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  font-size:1.15rem; transition:all .5s ease; cursor:default;
}
.mstone-label { font-size:.63rem; color:rgba(255,255,255,.32); font-family:'Montserrat',sans-serif; font-weight:700; }
/* Unlocked state */
.mstone-done .mstone-icon,
.mstone.unlocked .mstone-icon {
  background:rgba(247,148,29,.15); border-color:#F7941D;
  box-shadow:0 0 18px rgba(247,148,29,.55),0 0 40px rgba(247,148,29,.18);
}
.mstone-done .mstone-label,
.mstone.unlocked .mstone-label { color:#F7941D; }
/* Pop animation on unlock */
.mstone.newly-unlocked .mstone-icon {
  animation:mstoneUnlock .8s cubic-bezier(.34,1.56,.64,1);
}
@keyframes mstoneUnlock {
  0%   { transform:scale(1); }
  35%  { transform:scale(1.5); box-shadow:0 0 44px rgba(247,148,29,.9); }
  65%  { transform:scale(.92); }
  100% { transform:scale(1); }
}

/* Big progress bar */
.mission-bar-outer { margin-bottom:22px; }
.mission-bar-track {
  height:36px; background:rgba(255,255,255,.07);
  border-radius:18px; border:1px solid rgba(255,255,255,.09);
  position:relative; overflow:hidden; margin-bottom:10px;
}
.mission-bar-fill {
  position:absolute; left:0; top:0; bottom:0;
  border-radius:18px; min-width:6px;
  background:linear-gradient(90deg,#d96f00 0%,#F7941D 55%,#ffb347 100%);
  box-shadow:0 0 28px rgba(247,148,29,.7),0 0 56px rgba(247,148,29,.28);
  transition:width 1.4s cubic-bezier(.25,.46,.45,.94);
  overflow:hidden;
}
.mission-bar-fill::before {
  content:''; position:absolute; top:0; left:-100%; width:55%; bottom:0;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.28),transparent);
  animation:barShimmer 2.2s ease-in-out infinite;
}
@keyframes barShimmer { 0%{left:-100%} 100%{left:150%} }
.bar-tip-orb {
  position:absolute; right:-1px; top:50%; transform:translateY(-50%);
  width:14px; height:14px; border-radius:50%;
  background:#fff; box-shadow:0 0 14px 5px rgba(247,148,29,.85);
}
/* Notch separators on track */
.bar-notch {
  position:absolute; top:20%; bottom:20%; width:2px;
  background:rgba(255,255,255,.18); border-radius:1px;
  transform:translateX(-50%); pointer-events:none;
}
.bar-pct-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:0 2px;
}
.bar-start,.bar-end { font-size:.72rem; color:rgba(255,255,255,.32); font-family:'Montserrat',sans-serif; font-weight:700; }
.bar-pct-chip {
  display:inline-block;
  background:rgba(247,148,29,.12); border:1px solid rgba(247,148,29,.22);
  color:#F7941D; font-family:'Montserrat',sans-serif;
  font-size:.76rem; font-weight:800; padding:4px 14px;
  border-radius:30px; letter-spacing:.04em;
}

/* Stats trio */
.mission-stats-trio {
  display:grid; grid-template-columns:1fr 1fr 1fr;
  background:rgba(255,255,255,.04); border-radius:14px;
  border:1px solid rgba(255,255,255,.07);
  padding:18px 0; margin-bottom:20px; gap:0;
}
.trio-stat { display:flex; flex-direction:column; align-items:center; gap:4px; padding:0 10px; }
.trio-mid  { border-left:1px solid rgba(255,255,255,.08); border-right:1px solid rgba(255,255,255,.08); }
.trio-icon { font-size:1.15rem; }
.trio-val  { font-family:'Montserrat',sans-serif; font-size:1.2rem; font-weight:900; color:#fff; }
.orange-val { color:#F7941D; }
.green-val  { color:#4ade80; }
.trio-lbl   { font-size:.66rem; color:rgba(255,255,255,.42); text-align:center; font-weight:600; }

/* Child dots */
.child-counter-wrap { margin-bottom:22px; }
.child-counter-label {
  font-size:.76rem; color:rgba(255,255,255,.45); font-weight:600;
  margin-bottom:8px; display:flex; align-items:center; gap:5px;
}
.child-counter-label i { color:#F7941D; }
.child-dots { display:flex; flex-wrap:wrap; gap:5px; }
.child-dot {
  width:14px; height:14px; border-radius:50%;
  background:rgba(247,148,29,.38); border:1px solid rgba(247,148,29,.55);
  transition:background .3s;
}
.child-dot.new-dot { animation:dotPop .5s cubic-bezier(.34,1.56,.64,1); background:#F7941D; }
@keyframes dotPop { 0%{transform:scale(0)} 60%{transform:scale(1.4)} 100%{transform:scale(1)} }

/* CTA button */
.mission-cta-btn {
  display:flex; align-items:center; justify-content:center; gap:8px;
  width:100%; padding:16px 24px; border-radius:12px;
  background:linear-gradient(135deg,#F7941D 0%,#d96f00 100%);
  color:#fff; font-family:'Montserrat',sans-serif;
  font-size:1rem; font-weight:800; text-decoration:none;
  box-shadow:0 4px 24px rgba(247,148,29,.45);
  transition:all .3s ease; letter-spacing:.02em;
}
.mission-cta-btn:hover {
  transform:translateY(-2px); color:#fff;
  box-shadow:0 8px 40px rgba(247,148,29,.65);
}

/* bump animation for raised amount */
@keyframes bump {
  0%  { transform:scale(1); }
  40% { transform:scale(1.18); }
  100%{ transform:scale(1); }
}
.bump { animation:bump .55s ease; -webkit-text-fill-color:#F7941D !important; }

/* ——— LIVE FEED PANEL ——— */
.mission-panel-feed { display:flex; flex-direction:column; }
.feed-panel-header {
  display:flex; justify-content:space-between; align-items:center;
  padding:18px 20px; border-bottom:1px solid rgba(255,255,255,.07);
  background:rgba(0,0,0,.15);
}
.feed-live-badge {
  display:flex; align-items:center; gap:8px;
  font-family:'Montserrat',sans-serif;
  font-size:.72rem; font-weight:800; letter-spacing:.1em; color:#f87171;
}
.feed-live-dot {
  width:8px; height:8px; border-radius:50%; background:#ef4444;
  display:inline-block; animation:liveBlink 1.1s infinite;
}
.feed-update-hint { font-size:.72rem; color:rgba(255,255,255,.3); }

/* Feed scroll area */
.live-feed {
  flex:1; overflow-y:auto; padding:4px 0; max-height:430px;
  scrollbar-width:thin; scrollbar-color:rgba(255,255,255,.1) transparent;
}
.live-feed::-webkit-scrollbar { width:3px; }
.live-feed::-webkit-scrollbar-thumb { background:rgba(255,255,255,.15); border-radius:4px; }

/* Feed items */
.feed-item {
  display:flex; align-items:center; gap:13px;
  padding:13px 20px; border-bottom:1px solid rgba(255,255,255,.05);
  transition:background .25s;
}
.feed-item:hover { background:rgba(255,255,255,.03); }
.feed-item.feed-new {
  animation:feedSlideIn .45s cubic-bezier(.34,1.56,.64,1);
  background:rgba(247,148,29,.07);
}
@keyframes feedSlideIn {
  from { opacity:0; transform:translateY(-18px) scale(.95); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.feed-avatar {
  width:38px; height:38px; border-radius:50%;
  background:linear-gradient(135deg,#F7941D,#d96f00);
  color:#fff; font-weight:800; font-size:.95rem;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; font-family:'Montserrat',sans-serif;
}
.feed-details {
  flex:1; min-width:0; display:flex; flex-direction:column; gap:2px;
}
.feed-details strong { font-size:.87rem; font-weight:700; color:#fff; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.feed-location { font-size:.74rem; color:rgba(255,255,255,.42); }
.feed-amount {
  text-align:right; flex-shrink:0; font-weight:900; color:#F7941D;
  font-family:'Montserrat',sans-serif; font-size:.95rem; line-height:1.4;
}
.feed-amount small { display:block; font-weight:400; color:rgba(255,255,255,.35); font-size:.7rem; font-family:'Open Sans',sans-serif; }

/* Feed footer */
.feed-match-footer {
  display:flex; align-items:center; gap:14px;
  padding:16px 20px;
  background:rgba(247,148,29,.07);
  border-top:1px solid rgba(247,148,29,.15);
}
.feed-2x-badge {
  width:42px; height:42px; border-radius:50%;
  background:linear-gradient(135deg,#F7941D,#d96f00);
  color:#fff; font-family:'Montserrat',sans-serif;
  font-size:1rem; font-weight:900; display:flex;
  align-items:center; justify-content:center; flex-shrink:0;
  box-shadow:0 0 18px rgba(247,148,29,.45);
}
.feed-match-copy { display:flex; flex-direction:column; gap:2px; }
.feed-match-copy strong { font-size:.82rem; color:rgba(255,255,255,.85); }
.feed-match-copy span  { font-size:.74rem; color:rgba(255,255,255,.42); }

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
  .mission-grid { grid-template-columns:1fr; }
  .photo-gallery { grid-template-columns:repeat(3,1fr); height:360px; }
  .impact-photo-strip { grid-template-columns:1fr; }
}

@media (max-width: 768px) {
  .photo-gallery { grid-template-columns:repeat(2,1fr); height:400px; }
  .photo-mosaic { grid-template-columns:1fr 1fr; }
  .mosaic-wide { grid-column:1/3; }
  .mosaic-tall { grid-row:auto; }
  .mission-grid { grid-template-columns:1fr; }
  .mission-panel-feed { max-height:380px; }
  .progress-stats-row { gap:0; }
  .pstat-num { font-size:1rem; }
}

@media (max-width: 480px) {
  .photo-gallery { grid-template-columns:1fr 1fr; height:320px; }
  .photo-gallery .photo-item:nth-child(n+5) { display:none; }
}

/* ============================================================
   MISSION SECTION — MOBILE RESPONSIVE
   ============================================================ */
@media (max-width: 640px) {
  .mission-panel-progress { padding: 24px 18px 22px; }
  .mstone-icon { width: 36px; height: 36px; font-size: 1rem; }
  .mstone-label { font-size: .58rem; }
  .mission-stats-trio { padding: 14px 0; }
  .trio-val { font-size: 1.05rem; }
  .mission-cta-btn { font-size: .9rem; padding: 14px 16px; }
  .counter-value { font-size: 2.2rem; }
  .bar-tip-orb { display: none; }
}

/* ============================================================
   HOW IT WORKS — PHOTO-ENHANCED STEPS
   ============================================================ */
.step-item-photo { overflow: hidden; }
.step-photo-wrap {
  position: relative;
  width: 100%; height: 160px;
  border-radius: var(--radius) var(--radius) 0 0;
  overflow: hidden;
  margin: -28px -24px 20px;
  width: calc(100% + 48px);
}
.step-photo {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.step-item-photo:hover .step-photo { transform: scale(1.06); }
.step-photo-wrap .step-num {
  position: absolute; bottom: 10px; left: 14px;
  background: var(--orange); color: #fff;
  font-family: 'Montserrat', sans-serif; font-weight: 900;
  font-size: 0.72rem; padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* ============================================================
   IMPACT PHOTO STRIP — 3-column contextual
   ============================================================ */
.impact-photo-strip-section {
  padding: 60px 0 80px;
  background: var(--gray-50);
}
.impact-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ips-card {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ips-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ips-card-featured {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--orange);
}
.ips-card-featured:hover { transform: translateY(-12px); }
.ips-img-wrap {
  position: relative; width: 100%; height: 220px; overflow: hidden;
}
.ips-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.ips-card:hover .ips-img-wrap img { transform: scale(1.05); }
.ips-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(26,43,95,0.85);
  color: #fff; font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 4px 10px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.ips-tag-orange { background: var(--orange); }
.ips-body {
  padding: 20px 22px 24px;
}
.ips-body h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem; font-weight: 800;
  color: var(--navy); margin-bottom: 8px;
}
.ips-body p {
  font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; margin: 0;
}

@media (max-width: 900px) {
  .impact-photo-strip { grid-template-columns: 1fr; }
  .ips-card-featured { transform: none; }
  .step-photo-wrap { height: 140px; }
}
