/* ==========================================================================
   WE ARE WITH YOU — FOUNDATION HOMEPAGE STYLESHEET
   Pure HTML5 & CSS3 Design System
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
  /* Typography */
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;

  /* Color Palette */
  --color-primary: #E65F2B;
  --color-primary-hover: #D04F1D;
  --color-primary-light: #FFF4F0;

  --color-navy: #0A1220;
  --color-navy-card: #121D30;
  --color-navy-light: #1A273D;

  --color-bg-light: #FAF8F5;
  --color-bg-alt: #F3F4F6;
  --color-white: #FFFFFF;

  --color-text-main: #1D2939;
  --color-text-muted: #475467;
  --color-text-light: #667085;
  --color-text-white: #FFFFFF;

  --color-border: #EAECF0;
  --color-border-dark: rgba(255, 255, 255, 0.12);

  /* Layout & Spacing */
  --max-width: 1240px;
  --header-height: 80px;
  --section-padding: 6rem 0;
  --section-padding-mobile: 3.5rem 0;

  /* Borders & Shadows */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(16, 24, 40, 0.05);
  --shadow-md: 0 4px 16px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 12px 28px rgba(16, 24, 40, 0.12);

  --transition-fast: all 0.2s ease;
  --transition-normal: all 0.3s ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  color: var(--color-text-main);
  background-color: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul,
ol {
  list-style: none;
}

/* --------------------------------------------------------------------------
   3. LAYOUT & CONTAINER
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 3vw, 1.5rem);
  padding-right: clamp(1rem, 3vw, 1.5rem);
}

section {
  padding: var(--section-padding);
  position: relative;
}

/* --------------------------------------------------------------------------
   4. TYPOGRAPHY & BUTTONS
   -------------------------------------------------------------------------- */
.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}

.section-tag.tag-light {
  color: #F97316;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text-main);
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: clamp(0.9375rem, 1.4vw, 1.125rem);
  color: var(--color-text-muted);
  max-width: 680px;
  margin-top: 0.75rem;
}

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

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

.text-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition-normal);
  white-space: nowrap;
}

.btn .arrow {
  transition: transform 0.2s ease;
}

.btn:hover .arrow {
  transform: translateX(4px);
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 12px rgba(230, 95, 43, 0.4);
  opacity: 1;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow: 0 6px 20px rgba(230, 95, 43, 0.5);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
  padding: 0.875rem 2rem;
  font-size: 1rem;
}

.btn-full {
  width: 100%;
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1rem;
}

.btn-link:hover {
  color: var(--color-primary-hover);
}

.btn-link:hover .arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   0. WELCOME INTRO ANIMATION: STAGE 1 (FLAG) & STAGE 2 (BRAND LOGO)
   -------------------------------------------------------------------------- */
.welcome-intro-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999999;
  pointer-events: none;
  overflow: hidden;
  animation: introOverlayMaster 4.2s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

/* STAGE 1: THE TRICOLOR FLAG LAYER */
.intro-flag-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 2;
  animation: flagLayerDismiss 4.2s ease forwards;
}

.flag-stripe-line {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* 1. Saffron: Slide Left to Right */
.stripe-saffron {
  background: #FF9933;
  animation: slideLeftToRight 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 2. White: Slide Right to Left with spinning Ashoka Chakra */
.stripe-white {
  background: #FFFFFF;
  animation: slideRightToLeft 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 3. Green: Slide Left to Right */
.stripe-green {
  background: #138808;
  animation: slideLeftToRightGreen 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Ashoka Chakra Wheel Animation */
.ashoka-chakra-wheel {
  width: clamp(90px, 13vw, 140px);
  height: clamp(90px, 13vw, 140px);
  animation: spinChakra 2s linear infinite;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 128, 0.2));
}

/* STAGE 2: DARK LOGO BRAND REVEAL LAYER (MATCHING USER SCREENSHOT) */
.intro-brand-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0E1118;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 4.5rem 2rem 3rem;
  z-index: 1;
  animation: brandLayerSequence 4.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.intro-brand-center {
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-reveal-logo {
  width: clamp(80px, 11vw, 110px);
  height: clamp(80px, 11vw, 110px);
  object-fit: contain;
  margin-bottom: 1.35rem;
  filter: brightness(0) invert(1);
  animation: logoFloatPulse 2.5s ease-in-out infinite;
}

.brand-reveal-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin: 0;
}

.brand-reveal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
  margin: 0.4rem 0 0.6rem;
}

.brand-reveal-divider .line {
  width: 38px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.35);
}

.brand-reveal-divider .trust {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 3.5px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.brand-reveal-together {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  letter-spacing: 0.5px;
}

.brand-reveal-footer {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 5px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  margin-top: auto;
}

/* Keyframes for Flag Slider Animations */
@keyframes introOverlayMaster {
  0%, 88% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes flagLayerDismiss {
  0%, 46% {
    opacity: 1;
    visibility: visible;
  }
  52%, 100% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

@keyframes slideLeftToRight {
  0% {
    transform: translateX(-100%);
  }
  20%, 75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes slideRightToLeft {
  0% {
    transform: translateX(100%);
  }
  24%, 75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes slideLeftToRightGreen {
  0% {
    transform: translateX(-100%);
  }
  28%, 75% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

@keyframes spinChakra {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes brandLayerSequence {
  0%, 44% {
    opacity: 0;
    transform: scale(0.96);
  }
  52%, 88% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.03);
  }
}

@keyframes logoFloatPulse {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: brightness(0) invert(1) drop-shadow(0 2px 10px rgba(255, 255, 255, 0.25));
  }
  50% {
    transform: translateY(-4px) scale(1.05);
    filter: brightness(0) invert(1) drop-shadow(0 6px 20px rgba(255, 255, 255, 0.5));
  }
}

/* --------------------------------------------------------------------------
   5. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  background-color: transparent;
  backdrop-filter: none;
  border-bottom: none;
  z-index: 1000;
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 10;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  animation: logoGlow 4s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 2px 6px rgba(230, 95, 43, 0.35));
  }
  50% {
    filter: drop-shadow(0 4px 14px rgba(230, 95, 43, 0.75));
  }
}

.brand-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.2px;
  color: var(--color-white);
  white-space: nowrap;
}

.site-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.nav-actions-mobile {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 10;
}

.btn-outline-nav {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 0.5rem 1.35rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.btn-outline-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #FFFFFF;
  color: #FFFFFF;
}

.btn-primary-nav {
  background-color: var(--color-primary);
  color: #FFFFFF;
  padding: 0.5rem 1.45rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: var(--transition-fast);
}

.btn-primary-nav:hover {
  background-color: var(--color-primary-hover);
}

/* Responsive Hamburger Toggle (CSS Only) */
.nav-toggle-input {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger-bar {
  width: 100%;
  height: 2.5px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: var(--transition-normal);
}

/* --------------------------------------------------------------------------
   6. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: clamp(6.5rem, 11vh, 9rem);
  padding-bottom: clamp(2rem, 5vh, 3.5rem);
  background-color: #0A1220;
  color: var(--color-text-white);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.98);
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(10, 18, 32, 0.52) 0%, rgba(10, 18, 32, 0.22) 45%, rgba(10, 18, 32, 0.04) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
}

.hero-content {
  max-width: 680px;
}

.hero-doc-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.35rem, 5.5vw, 4.15rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.35rem;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2.25rem;
  max-width: 520px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  flex-wrap: wrap;
}

.btn-hero-volunteer {
  background-color: #E65F2B;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.85rem 2.15rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 20px rgba(230, 95, 43, 0.4);
  transition: var(--transition-fast);
}

.btn-hero-volunteer:hover {
  background-color: #D3501E;
  transform: translateY(-2px);
  color: #FFFFFF;
}

.btn-hero-donate {
  background-color: #FFFFFF;
  color: #101828;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.85rem 2.15rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  transition: var(--transition-fast);
}

.btn-hero-donate:hover {
  background-color: #F4F5F7;
  transform: translateY(-2px);
  color: #101828;
}

/* Floating Stat Card */
.hero-stat-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  padding: 1.6rem 2rem;
  min-width: 195px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-stat-number {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.hero-stat-plus {
  color: #E65F2B;
  font-weight: 700;
  margin-left: 2px;
}

.hero-stat-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.hero-stat-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* --------------------------------------------------------------------------
   7. IMPACT STATISTICS
   -------------------------------------------------------------------------- */
.stats-section {
  background-color: #FAFAFA;
  background-image: radial-gradient(#D0D5DD 1.2px, transparent 1.2px);
  background-size: 24px 24px;
  border-bottom: 1px solid var(--color-border);
  padding: 3.75rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  position: relative;
  padding: 0 1rem;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(208, 213, 221, 0.6);
}

.stat-number {
  font-family: var(--font-body);
  font-size: 3.25rem;
  font-weight: 700;
  color: #101828;
  line-height: 1;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}

.stat-symbol {
  color: var(--color-primary);
  font-weight: 600;
  margin-left: 2px;
}

.stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  color: #475467;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* --------------------------------------------------------------------------
   8. MISSION SECTION
   -------------------------------------------------------------------------- */
.mission-section {
  background-color: var(--color-bg-light);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.mission-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
}

.mission-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mission-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mission-description {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-top: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   9. FOUR COMMITMENTS
   -------------------------------------------------------------------------- */
.commitments-section {
  background-color: var(--color-white);
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.commitment-card {
  background-color: #F8F9FA;
  border: 1px solid #EAECF0;
  border-radius: 18px;
  overflow: hidden;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.commitment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(16, 24, 40, 0.06);
  border-color: #D0D5DD;
}

.commitment-img-box {
  position: relative;
  height: 230px;
  overflow: hidden;
  margin: 0.85rem 0.85rem 0 0.85rem;
  border-radius: 12px;
}

.commitment-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.commitment-card:hover .commitment-img-box img {
  transform: scale(1.03);
}

.commitment-body {
  padding: 1.25rem 1.25rem 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.commitment-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  flex-shrink: 0;
}

.icon-badge-green {
  background-color: #E8F8EE;
  color: #16A34A;
}

.icon-badge-blue {
  background-color: #EBF3FE;
  color: #2563EB;
}

.icon-badge-purple {
  background-color: #F5EEFD;
  color: #9333EA;
}

.icon-badge-orange {
  background-color: #FFF0E6;
  color: #EA580C;
}

.commitment-title {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: 0.35rem;
}

.commitment-text {
  font-size: 0.875rem;
  color: #667085;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   10. HOW YOU CAN HELP
   -------------------------------------------------------------------------- */
.how-you-can-help-section {
  background-color: var(--color-bg-light);
}

.timeline-vertical {
  position: relative;
  margin-top: 3.5rem;
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.timeline-vertical::before {
  content: '';
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 17px;
  width: 1px;
  background-color: #D0D5DD;
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.step-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #FAF8F5;
  border: 1px solid #D0D5DD;
  color: #667085;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}

.step-details {
  padding-top: 0.3rem;
}

.step-heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: 0.35rem;
}

.step-text {
  font-size: 0.9375rem;
  color: #475467;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   11. SUCCESS STORIES
   -------------------------------------------------------------------------- */
.success-stories-section {
  background-color: var(--color-navy);
  color: var(--color-text-white);
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.stories-showcase-grid {
  display: grid;
  grid-template-columns: 60% calc(40% - 1.5rem);
  gap: 1.5rem;
  align-items: stretch;
  margin-top: 3rem;
}

.story-split-card {
  background-color: #131E2E;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 46% 54%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.story-card-image {
  height: 100%;
  min-height: 340px;
  overflow: hidden;
}

.story-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.story-card-body {
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-quote {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.45;
  margin-bottom: 1.15rem;
}

.story-description {
  font-size: 0.8125rem;
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.story-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.story-author-name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
}

.story-author-meta {
  font-size: 0.75rem;
  color: #64748B;
}

.story-image-card {
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  min-height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.story-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.stories-footer-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.75rem;
}

.read-all-stories-link {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #94A3B8;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s ease;
}

.read-all-stories-link:hover {
  color: #FFFFFF;
}

.read-all-stories-link:hover .arrow {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   12. LIFE IN THE FIELD (A YEAR IN THE FIELD)
   -------------------------------------------------------------------------- */
.field-gallery-section {
  background-color: var(--color-white);
  padding: 5.5rem 0;
}

.field-mosaic-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 3rem;
}

.mosaic-top-row {
  display: grid;
  grid-template-columns: 1fr 0.48fr 0.52fr;
  gap: 14px;
  align-items: stretch;
}

.mosaic-item {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.mosaic-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mosaic-item-left {
  height: 410px;
}

.mosaic-item-middle-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 410px;
}

.mosaic-stack-top,
.mosaic-stack-bottom {
  flex: 1;
  height: calc(205px - 7px);
}

.mosaic-item-right {
  height: 410px;
}

.mosaic-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mosaic-bottom-left,
.mosaic-bottom-right {
  height: 410px;
}

/* --------------------------------------------------------------------------
   13. FOUR WEEKS FROM SIGN-UP TO FIELD
   -------------------------------------------------------------------------- */
.joining-section {
  background-color: #F6F8FB;
  padding: 5.5rem 0;
}

.volunteer-timeline-wrapper {
  position: relative;
  margin-top: 4rem;
}

.volunteer-timeline-line {
  position: absolute;
  top: 22px;
  left: 30px;
  right: 30px;
  height: 1px;
  background-color: #E2E8F0;
  z-index: 1;
}

.volunteer-steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.volunteer-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.volunteer-step-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid #E2E8F0;
  color: #64748B;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.volunteer-step-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: #101828;
  margin-bottom: 0.5rem;
}

.volunteer-step-desc {
  font-size: 0.875rem;
  color: #64748B;
  line-height: 1.55;
}

/* --------------------------------------------------------------------------
   14. COME STAND WITH US
   -------------------------------------------------------------------------- */
.stand-with-us-section {
  background-color: var(--color-white);
  padding: 5.5rem 0;
}

.opportunities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.opportunity-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background-color: var(--color-bg-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.opportunity-card:hover {
  background-color: var(--color-white);
  box-shadow: var(--shadow-md);
  border-color: rgba(230, 95, 43, 0.3);
}

.opp-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.opp-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.35rem;
}

.opp-desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.partners-bar {
  margin-top: 4.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.partner-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #98A2B3;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
}

.partners-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.partner-brand {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: #8C9CAE;
  letter-spacing: 0.2px;
  transition: var(--transition-fast);
}

.partner-brand:hover {
  color: var(--color-navy);
}

/* --------------------------------------------------------------------------
   15. STORIES THAT INSPIRE CHANGE
   -------------------------------------------------------------------------- */
.stories-section {
  background-color: #FAF9F6;
  padding: 5.5rem 0;
}

.stories-section .section-subtitle {
  max-width: 980px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #475467;
  margin-top: 0.75rem;
}

.news-clippings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.news-clipping-card {
  background-color: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #EAECF0;
  transition: var(--transition-normal);
}

.news-clipping-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.news-clipping-card img {
  width: 100%;
  height: 490px;
  object-fit: cover;
  object-position: top;
  display: block;
}

.in-their-words-card {
  margin: 3.5rem auto 0;
  max-width: 820px;
  background-color: var(--color-white);
  border: 1px solid #EAECF0;
  border-radius: 20px;
  padding: 2.25rem 2.75rem;
  display: flex;
  align-items: center;
  gap: 2.25rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.words-avatar {
  width: 130px;
  height: 130px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.words-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.words-content {
  display: flex;
  flex-direction: column;
}

.words-tag {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #98A2B3;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.words-quote {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-style: italic;
  color: #1D2939;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.words-author .author-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #101828;
}

.words-author .author-title {
  font-size: 0.8125rem;
  color: #667085;
}

/* --------------------------------------------------------------------------
   16. QUESTIONS WORTH ASKING (FAQ)
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: var(--color-white);
  padding: 5.5rem 0;
}

.faq-editorial-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-row {
  border-bottom: 1px solid #EAECF0;
  background: transparent;
  padding: 0;
  transition: var(--transition-fast);
}

.faq-row:first-child {
  border-top: 1px solid #EAECF0;
}

.faq-row-question {
  padding: 1.35rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #101828;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  list-style: none;
}

.faq-row-question::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  color: #667085;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.faq-row[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-row-answer {
  padding: 0 0 1.35rem 0;
  font-size: 0.875rem;
  color: #667085;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   17. CONTACT SECTION
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: #FAF8F5;
  padding: 6rem 0 7rem;
}

.contact-header {
  margin-bottom: 3.5rem;
}

.contact-container-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4.5rem;
  align-items: center;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item-group {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
}

.contact-circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid #EAECF0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

.contact-item-label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #98A2B3;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-item-val {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #1D2939;
  line-height: 1.45;
}

.contact-social-pills {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-pill-btn {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #667085;
  background-color: var(--color-white);
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1px solid #EAECF0;
  transition: var(--transition-fast);
}

.social-pill-btn:hover {
  border-color: #D0D5DD;
  color: #101828;
}

.contact-form-box {
  background-color: var(--color-white);
  border: 1px solid #EAECF0;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

.contact-card-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-dual-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

.form-single-row {
  width: 100%;
}

.form-clean-input {
  width: 100%;
  padding: 0.85rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #101828;
  background-color: var(--color-white);
  border: 1px solid #EAECF0;
  border-radius: 12px;
  outline: none;
  transition: var(--transition-fast);
}

.form-clean-input::placeholder {
  color: #98A2B3;
}

.form-clean-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(230, 95, 43, 0.12);
}

.form-clean-textarea {
  resize: vertical;
  min-height: 110px;
}

.form-btn-row {
  margin-top: 0.5rem;
}

.btn-submit {
  padding: 0.75rem 1.75rem;
  font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   18. FINAL CTA SECTION
   -------------------------------------------------------------------------- */
.final-cta-section {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(5rem, 8vw, 8.5rem) 0;
  background-color: var(--color-navy);
  color: var(--color-text-white);
  text-align: center;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.final-cta-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.1) contrast(1.05);
  opacity: 1;
}

.final-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(10, 18, 32, 0.25) 0%, rgba(10, 18, 32, 0.55) 100%);
}

.final-cta-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.final-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2.25rem;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-navy);
  color: var(--color-text-white);
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 2.5rem;
  border-top: 1px solid var(--color-border-dark);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-logo-block {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.footer-logo-img {
  width: 104px;
  height: 104px;
  object-fit: contain;
  margin-bottom: 0.35rem;
}

.footer-brand-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.8px;
  color: #FFFFFF;
  line-height: 1.15;
  text-align: center;
}

.footer-brand-sub {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-text-light);
  line-height: 1;
  text-align: center;
}

.footer-desc {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  max-width: 320px;
  text-align: center;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-contact-item {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.75rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--color-border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE MEDIA QUERIES (FOR ALL VIEWPORTS)
   -------------------------------------------------------------------------- */

/* Laptop & Small Desktop (<= 1199px) */
@media (max-width: 1199px) {
  .hero-title {
    font-size: clamp(2.75rem, 5vw, 3.5rem);
  }

  .nav-list {
    gap: 1.25rem;
  }

  .faq-editorial-layout,
  .contact-container-grid {
    gap: 3rem;
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* Tablet Landscape & Portrait (<= 991px) */
@media (max-width: 991px) {
  section {
    padding: var(--section-padding-mobile);
  }

  .logo-img {
    width: 44px;
    height: 44px;
  }

  /* Mobile Header Navigation Drawer */
  .nav-toggle-label {
    display: flex;
  }

  .nav-actions {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 90px;
    left: 0;
    transform: translateY(-120%);
    width: 100%;
    background-color: var(--color-navy);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    border-bottom: 1px solid var(--color-border-dark);
    box-shadow: var(--shadow-lg);
    gap: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
  }

  .nav-toggle-input:checked~.site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle-input:checked~.nav-toggle-label .hamburger-bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .nav-toggle-input:checked~.nav-toggle-label .hamburger-bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle-input:checked~.nav-toggle-label .hamburger-bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1rem;
  }

  .nav-link {
    color: var(--color-white);
    font-size: 1rem;
  }

  .nav-actions-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .nav-actions-mobile .btn {
    width: 100%;
    text-align: center;
  }

  /* Hero */
  .hero-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
    padding-bottom: 3rem;
  }

  .hero-stat-card {
    align-self: flex-start;
  }

  /* Statistics 2x2 */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .stat-item:nth-child(2)::after {
    display: none;
  }

  /* Section Grids */
  .mission-grid,
  .faq-editorial-layout,
  .contact-container-grid,
  .stories-showcase-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-split-card {
    grid-template-columns: 1fr;
  }

  .story-card-image {
    height: 280px;
    min-height: auto;
  }

  .story-image-card {
    height: 320px;
    min-height: auto;
  }

  .mosaic-top-row {
    grid-template-columns: 1fr;
  }

  .mosaic-bottom-row {
    grid-template-columns: 1fr;
  }

  .mosaic-item-left,
  .mosaic-item-middle-stack,
  .mosaic-item-right,
  .mosaic-bottom-left,
  .mosaic-bottom-right {
    height: 300px;
  }

  .mosaic-stack-top,
  .mosaic-stack-bottom {
    height: 140px;
  }

  .volunteer-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .volunteer-timeline-line {
    display: none;
  }

  .news-clippings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .in-their-words-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Mobile Devices (<= 767px) */
@media (max-width: 767px) {
  .hero-section {
    padding-top: 6rem;
    min-height: auto;
    height: auto;
    padding-bottom: 4rem;
  }

  .hero-title {
    font-size: clamp(2.15rem, 6.5vw, 2.75rem);
    margin-bottom: 1rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .hero-actions {
    width: 100%;
  }

  .btn-hero-volunteer,
  .btn-hero-donate {
    width: 100%;
    text-align: center;
  }

  .hero-stat-card {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
  }

  .hero-stat-divider {
    width: 1px;
    height: 36px;
  }

  .commitments-grid,
  .opportunities-grid,
  .news-clippings-grid {
    grid-template-columns: 1fr;
  }

  .news-clipping-card img {
    height: 380px;
  }

  .volunteer-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .form-dual-row {
    grid-template-columns: 1fr;
  }

  .contact-form-box {
    padding: 1.5rem;
  }

  .partners-list {
    gap: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

/* Small Mobile & Compact Devices (<= 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 2.15rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 1rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .stat-label {
    font-size: 0.6875rem;
    letter-spacing: 1px;
  }

  .mosaic-item-left,
  .mosaic-item-middle-stack,
  .mosaic-item-right,
  .mosaic-bottom-left,
  .mosaic-bottom-right {
    height: 240px;
  }

  .mosaic-stack-top,
  .mosaic-stack-bottom {
    height: 110px;
  }

  .words-avatar {
    width: 90px;
    height: 90px;
  }

  .in-their-words-card {
    padding: 1.5rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }
}

/* Very Small Mobile (<= 360px & 320px) */
@media (max-width: 360px) {
  .container {
    padding-left: 0.85rem;
    padding-right: 0.85rem;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .hero-stat-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.25rem;
  }

  .hero-stat-divider {
    width: 100%;
    height: 1px;
  }

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

  .stat-item:nth-child(1)::after,
  .stat-item:nth-child(3)::after {
    display: none;
  }
}