:root {
  --brand-950: #0b2f55;
  --brand-900: #0f3f6f;
  --brand-800: #1a548d;
  --brand-700: #2d6ca8;
  --brand-500: #4f8fc2;
  --accent-gold: #d8b35a;
  --accent-gold-bright: #f1d487;
  --bg-page: #f4f7fb;
  --ink-900: #1a2940;
  --ink-700: #41536f;
  --line: #d7e1ef;
  --white: #ffffff;
  --success: #1f9d67;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink-900);
  font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
  background:
    radial-gradient(circle at 2% 0%, rgba(101, 172, 226, 0.2) 0%, transparent 25%),
    radial-gradient(circle at 96% 14%, rgba(35, 96, 155, 0.16) 0%, transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg-page) 100%);
}

.mission-page {
  width: 100%;
  margin: 0 0 56px;
  padding: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background:
    linear-gradient(130deg, rgba(12, 47, 85, 0.97), rgba(28, 95, 156, 0.95)),
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.18), transparent 44%);
  padding: 38px 34px 30px;
  color: #f6faff;
  box-shadow: 0 14px 28px rgba(12, 52, 94, 0.2);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 400px;
  height: 400px;
  right: -160px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2), transparent 72%);
}

.hero::after {
  width: 320px;
  height: 320px;
  left: -130px;
  top: -170px;
  background: radial-gradient(circle, rgba(90, 157, 215, 0.33), transparent 72%);
}

.pill {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 7px 14px;
  color: #e8f2ff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 600;
}

.eyebrow {
  margin: 16px 0 8px;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: var(--accent-gold-bright);
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.hero-copy {
  max-width: 790px;
  margin: 14px 0 20px;
  color: #dceafe;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.48;
}

.progress-wrap {
  margin-bottom: 12px;
}

.progress-track {
  height: 16px;
  border-radius: 999px;
  background: rgba(233, 240, 251, 0.33);
  overflow: hidden;
}

.progress-fill {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #f3df9a, var(--accent-gold));
  background-size: 180% 100%;
  animation: shimmer 3.2s linear infinite;
  transition: width 1s cubic-bezier(.25,.8,.25,1);
}

.progress-caption {
  margin: 8px 2px 0;
  color: #d8e6fa;
  font-size: 13px;
  letter-spacing: 0.3px;
}

.progress-caption span {
  color: #fff1c2;
  font-weight: 700;
}

.hero-tags {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #e7f0fe;
  font-size: 12px;
  font-weight: 600;
  animation: floatTag 4s ease-in-out infinite;
}

.hero-tags span:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-tags span:nth-child(3) {
  animation-delay: 0.8s;
}

.hero-metrics .metric-top {
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}

.raised {
  color: #ffe6a7;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 4px 16px rgba(255, 214, 130, 0.26);
}

.goal-text {
  color: #e0e9f8;
  font-size: 22px;
}

.goal-text strong {
  color: #ffffff;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.metric-card {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 12px;
  padding: 16px 14px 12px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  text-align: center;
}

.metric-card h3 {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
}

.metric-card p {
  margin: 0;
  color: #d8e5f8;
  letter-spacing: 1.7px;
  font-size: 12px;
  font-weight: 700;
}

.insights {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.insight-card {
  border-radius: 15px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, #ffffff, #f2f6fd);
  padding: 15px 16px;
  box-shadow: 0 8px 18px rgba(32, 72, 117, 0.1);
  position: relative;
  overflow: hidden;
}

.insight-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(79, 143, 194, 0.18), transparent 72%);
}

.insight-label {
  margin: 0;
  color: #6a7f9b;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.insight-card h3 {
  margin: 8px 0 0;
  color: var(--brand-900);
  font-size: 30px;
  line-height: 1.1;
  position: relative;
  z-index: 1;
}

/* Hero docs + join CTA */
.hero-docs {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-docs-label {
  margin: 0;
  color: #cde0f9;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 6px;
}

.hero-doc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  padding: 11px 18px;
  background: rgba(255, 255, 255, 0.18);
  color: #eef6ff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.hero-doc-btn:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-1px);
}

.hero-join-btn {
  margin-left: auto;
  display: inline-block;
  border: 1px solid rgba(255, 230, 167, 0.45);
  border-radius: 11px;
  padding: 11px 22px;
  background: linear-gradient(120deg, #d8b35a, #c89f46);
  color: #1a2f4d;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.3px;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(11, 32, 58, 0.3);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-join-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

@media (max-width: 900px) {
  .hero-docs {
    align-items: stretch;
  }

  .hero-docs-label {
    width: 100%;
    margin-right: 0;
    margin-bottom: 2px;
  }

  .hero-join-btn {
    margin-left: 0;
  }
}

/* Video split layout */
.video-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.video-split .video-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #c6d5ea;
  box-shadow: 0 12px 24px rgba(17, 55, 94, 0.18);
  background: #0f243f;
}

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

.how-steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.how-steps li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #ffffff, #f4f8fe);
  box-shadow: 0 4px 10px rgba(30, 65, 105, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.how-steps li:hover {
  transform: translateX(3px);
  box-shadow: 0 6px 14px rgba(30, 65, 105, 0.12);
}

.how-step-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.how-step-text strong {
  display: block;
  color: var(--brand-900);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}

.how-step-text span {
  color: var(--ink-700);
  font-size: 13px;
  line-height: 1.4;
}

.support-mission-btn {
  display: inline-block;
  align-self: flex-start;
  border-radius: 11px;
  padding: 12px 24px;
  background: linear-gradient(130deg, var(--brand-800), var(--brand-700));
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(20, 65, 115, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.support-mission-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(20, 65, 115, 0.35);
}

.impact-strip {
  margin-top: 14px;
  margin-inline: 22px;
  border: 1px solid #c4d4ea;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(130deg, #eef4fd, #e0ebfa);
}

.impact-marquee {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 11px 16px;
  width: max-content;
  min-width: 100%;
  animation: marquee 22s linear infinite;
  white-space: nowrap;
  color: #355477;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.impact-marquee strong {
  color: #123f70;
}

.section {
  margin-top: 30px;
  padding-inline: 22px;
}

h2 {
  margin: 0 0 12px;
  color: #9cadc5;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 17px;
  font-weight: 700;
}

.section-subtext {
  margin: -4px 0 12px;
  color: #5d6f8a;
  font-size: 15px;
}

.video-section .video-wrap {
  position: relative;
  width: min(760px, 100%);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #c6d5ea;
  box-shadow: 0 12px 24px rgba(17, 55, 94, 0.18);
  background: #0f243f;
}

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

.mou-section {
  margin-top: 22px;
  text-align: center;
}

.mou-section p {
  margin: 0;
  color: #2f4463;
  font-size: 16px;
  line-height: 1.5;
}

.mou-section a {
  color: var(--brand-900);
  font-weight: 700;
  text-decoration: underline;
}

.webinar-card {
  border: 1px solid #cad8ec;
  border-radius: 18px;
  background: linear-gradient(150deg, #ffffff, #f4f8ff);
  padding: 22px 20px;
  box-shadow: 0 10px 22px rgba(28, 63, 104, 0.12);
}

.webinar-eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #c0272d;
}

.webinar-title {
  margin: 0;
  color: #163d6a;
  font-size: 28px;
  letter-spacing: -0.2px;
  text-transform: none;
}

.webinar-subtitle {
  margin: 8px 0 0;
  color: #425874;
  font-size: 15px;
  line-height: 1.5;
}

.webinar-meta {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.webinar-meta span {
  border: 1px solid #c8d7ec;
  border-radius: 999px;
  background: #edf3fc;
  color: #274b74;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

.webinar-speakers {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.webinar-speaker {
  border: 1px solid #d2deee;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px 10px;
  text-align: center;
}

.speaker-photo-wrap {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  margin: 0 auto 10px;
  overflow: hidden;
  border: 2px solid #d0ddef;
  background: #e8eff8;
}

.speaker-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.speaker-fallback {
  display: none;
  width: 100%;
  height: 100%;
  place-items: center;
  background: #243660;
  color: #ffffff;
  font-size: 34px;
  font-weight: 700;
  line-height: 1;
}

.webinar-speaker h3 {
  margin: 0;
  color: #183b66;
  font-size: 16px;
  line-height: 1.2;
}

.webinar-speaker p {
  margin: 5px 0 0;
  color: #5a6f89;
  font-size: 12px;
  line-height: 1.4;
}

.webinar-agenda {
  margin-top: 14px;
  border: 1px solid #d2deee;
  border-radius: 12px;
  background: #ffffff;
  padding: 12px;
}

.webinar-agenda h3 {
  margin: 0 0 8px;
  color: #173f6d;
  font-size: 16px;
}

.webinar-agenda ul {
  margin: 0;
  padding-left: 16px;
  color: #405a77;
  font-size: 14px;
  line-height: 1.45;
}

.webinar-agenda li + li {
  margin-top: 5px;
}

.webinar-register-btn {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  border: 0;
  border-radius: 10px;
  background: #c0272d;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 32px;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 10px rgba(192, 39, 45, 0.28);
  transition: background 0.2s ease, transform 0.2s ease;
}

.webinar-register-btn:hover {
  background: #a21f25;
  transform: translateY(-1px);
}

.video-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.step-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: linear-gradient(150deg, #ffffff, #f5f8fe);
  color: var(--ink-900);
  box-shadow: 0 6px 14px rgba(33, 73, 116, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 20px rgba(33, 73, 116, 0.14);
}

.step-card span {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #eef5ff;
  background: var(--brand-800);
  font-size: 14px;
  font-weight: 700;
}

.step-card h3 {
  margin: 9px 0 6px;
  color: var(--ink-900);
  font-size: 24px;
  line-height: 1.18;
}

.step-card p {
  margin: 0;
  color: var(--ink-700);
  font-size: 18px;
  line-height: 1.45;
}

.load-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.load-card {
  border-radius: 12px;
  border: 1px solid #c8d8ee;
  background: linear-gradient(150deg, #214f86, #174271);
  color: #edf4ff;
  text-align: center;
  padding: 14px 8px;
  transition: transform 0.2s ease;
}

.load-card:hover {
  transform: translateY(-2px);
}

.load-card.pending {
  background: #7f8ea3;
  border-color: #74859d;
}

.load-icon {
  color: #b8d0f0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
}

.load-name {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
}

.load-value {
  display: block;
  margin-top: 5px;
  color: #f4d994;
  font-size: 21px;
  font-weight: 800;
}

.load-card.pending .load-value {
  color: #f1f5fb;
}

.customer-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-bottom: 10px;
}

#customer-search,
#customer-sort {
  border: 1px solid #c7d5ea;
  border-radius: 11px;
  padding: 12px 13px;
  background: #ffffff;
  color: #314a6d;
  font-size: 14px;
}

.customer-list {
  display: grid;
  gap: 10px;
}

.customer-list-shell {
  max-height: 560px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 6px;
  border-radius: 12px;
}

.customer-list-shell::-webkit-scrollbar {
  width: 10px;
}

.customer-list-shell::-webkit-scrollbar-track {
  background: rgba(180, 197, 221, 0.45);
  border-radius: 999px;
}

.customer-list-shell::-webkit-scrollbar-thumb {
  background: #89a6cb;
  border-radius: 999px;
}

.customer-list-shell::-webkit-scrollbar-thumb:hover {
  background: #6f90b9;
}

.customer-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  border: 1px solid #cad9ee;
  border-radius: 14px;
  padding: 13px 15px;
  background: linear-gradient(130deg, #1c3558, #263e62);
  color: #f4f8ff;
  box-shadow: 0 9px 18px rgba(18, 46, 81, 0.17);
}

.placeholder-row {
  opacity: 0.9;
}

.placeholder-row .customer-main h3 {
  color: #dce8f8;
}

.placeholder-row .customer-main p {
  color: #c7d7ef;
}

.initials {
  width: 43px;
  height: 43px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f2d98f;
  background: #1b4b86;
  font-size: 14px;
  font-weight: 700;
}

.customer-main h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.16;
}

.customer-main p {
  margin: 5px 0 0;
  color: #d9e5f7;
  font-size: 16px;
}

.faq-section {
  margin-top: 34px;
}

.faq-subtitle {
  margin: -6px 0 14px;
  color: #173f6d;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid #cad9ee;
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff, #f5f9ff);
  padding: 0;
  box-shadow: 0 6px 14px rgba(24, 58, 98, 0.08);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item[open] {
  border-color: #9eb8d9;
  box-shadow: 0 10px 20px rgba(24, 58, 98, 0.12);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 15px 44px 15px 16px;
  color: #133e6d;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.3;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #2d5f94;
  font-size: 22px;
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  color: #1c4b7b;
}

.faq-item summary:hover {
  background: rgba(62, 116, 173, 0.07);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 16px 15px;
  opacity: 0;
  transform: translateY(-5px);
  color: #395573;
  font-size: 15px;
  line-height: 1.55;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.faq-item[open] .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

.chip-new {
  display: inline-block;
  margin-left: 8px;
  border-radius: 999px;
  padding: 2px 9px;
  background: rgba(216, 179, 90, 0.26);
  color: #ffe9ae;
  font-size: 12px;
  font-weight: 700;
}

.contribution {
  color: #25c37f;
  font-size: 31px;
  font-weight: 800;
}

.cta {
  margin-top: 26px;
  border-radius: 20px;
  padding: 34px 24px;
  text-align: center;
  color: #eef5ff;
  background:
    radial-gradient(circle at 50% -14%, rgba(114, 183, 231, 0.52), transparent 46%),
    linear-gradient(130deg, #104679, #2a6ea6);
  box-shadow: 0 16px 30px rgba(18, 66, 111, 0.3);
}

.cta h3 {
  margin: 0;
  font-size: 58px;
  line-height: 1.1;
  font-weight: 700;
}

.cta p {
  margin: 10px auto 0;
  max-width: 790px;
  font-size: 31px;
  color: #d9e9fd;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 11px;
  padding: 11px 20px;
  text-decoration: none;
  color: #f4f8ff;
  background: rgba(255, 255, 255, 0.1);
  font-size: 18px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.19);
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@keyframes shimmer {
  0% { background-position: 0% 0%; }
  100% { background-position: 180% 0%; }
}

@keyframes floatTag {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .video-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1000px) {
  .metric-grid,
  .insights,
  .steps-grid,
  .webinar-speakers {
    grid-template-columns: 1fr;
  }

  .load-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .goal-text {
    font-size: 16px;
  }

  .customer-row {
    grid-template-columns: auto 1fr;
  }

  .contribution {
    grid-column: 1 / -1;
    padding-left: 56px;
  }

  .cta h3 {
    font-size: 42px;
  }

  .cta p {
    font-size: 21px;
  }
}

@media (max-width: 700px) {
  .mission-page {
    margin-top: 0;
    padding: 0 0 24px;
  }

  .hero {
    border-radius: 0 0 16px 16px;
    padding: 24px 16px 20px;
  }

  .section {
    padding-inline: 10px;
  }

  .impact-strip {
    margin-inline: 10px;
  }

  .customer-toolbar {
    grid-template-columns: 1fr;
  }

  .customer-list-shell {
    max-height: 420px;
    padding-right: 2px;
  }

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

  .step-card h3 {
    font-size: 20px;
  }

  .step-card p {
    font-size: 16px;
  }

  .faq-subtitle {
    font-size: 28px;
  }

  .cta h3 {
    font-size: 34px;
  }

  .cta p {
    font-size: 18px;
  }
}
