/* ══════════════════════════════════════════════════════════════
   IMPACT PAGE
   ══════════════════════════════════════════════════════════════ */


body {
  font-family: 'Gilroy', 'DM Sans', sans-serif !important;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}

p {
  font-family: 'DM Sans', sans-serif;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.imp-hero {
  background: #eef6e3;
  padding: 148px 80px 80px;
  overflow: hidden;
}

.imp-hero-inner {
  max-width: 1469px;
  margin: 0 auto;
}

/* ── Top row: pill left | heading right ──────────────────────── */
.imp-hero-top {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(28px);
}

/* Back pill — matches .goa-back-pill / .srv-back exactly */
.imp-back-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid #b8ccb0;
  border-radius: 50px;
  background: transparent;
  color: #1a1a1a;
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  width: fit-content;
  margin-top: 14px;
  white-space: nowrap;
  transition: background 0.28s, border-color 0.28s;
  -webkit-tap-highlight-color: transparent;
}

.imp-back-pill:hover {
  background: rgba(46, 125, 50, 0.07);
  border-color: #2e7d32;
}

.imp-back-pill svg {
  flex-shrink: 0;
}

/* ── Heading ──────────────────────────────────────────────────── */
.imp-heading-wrap {
  align-self: center;
}

.imp-heading {

  font-size: clamp(2.6rem, 4.8vw, 4.8rem);
  font-weight: 800;
  color: #0c2d18;
  line-height: 1.06;
  margin: 0;
  letter-spacing: -0.5px;
}

.imp-hl {
  background: linear-gradient(105deg, #5cb82a 0%, #9ed01e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Bottom description ───────────────────────────────────────── */
.imp-hero-bottom {

  opacity: 0;
  transform: translateY(20px);
}

@media (max-width: 540px) {
  .imp-hero-bottom {
    opacity: 1;
    transform: none;
  }
}

.imp-desc {

  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.75;
  color: #0B6340;
  font-weight: 300;
  margin: 0;
  max-width: 600px;
}

.imp-desc strong {
  font-weight: 600;
  color: #0c2d18;
  display: block;
  margin-bottom: 6px;
}

/* ══════════════════════════════════════════════════════════════
   CLEAN ENERGY BANNER
   ══════════════════════════════════════════════════════════════ */
.imp-banner {
  background: #eef6e3;
  padding: 0 80px 100px;
}

.imp-banner-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  height: 580px;
  max-width: 1469px;
  margin: 0 auto;
}

/* Background image */
.imp-banner-bg {
  position: absolute;
  inset: 0;
  background: url('assets/images/impact-banner.jpg') center / cover no-repeat;
  z-index: 0;
  transform: scale(1.25);
  /* headroom for parallax travel — must exceed yPercent/2 */
  will-change: transform;
}

/* Subtle dark overlay at bottom for stat readability */
.imp-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.04) 35%,
      rgba(0, 0, 0, 0.38) 100%);
  z-index: 1;
}

/* ── Oversized title — fades vertically like homepage ── */
.imp-banner-title-wrap {
  position: absolute;
  z-index: 3;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  white-space: nowrap;
}

.imp-banner-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  display: block;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 0.92) 30%,
      rgba(255, 255, 255, 0.18) 68%,
      rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Stat boxes — bottom right, matching homepage .stat-box ── */
.imp-banner-stats {
  position: absolute;
  z-index: 4;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 14px;
}

.imp-stat-box {
  background: rgba(15, 30, 40, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 28px 44px;
  min-width: 148px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.imp-stat-num {
  display: block;
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.imp-stat-lbl {
  display: block;

  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   IMPACT PHILOSOPHY
   ══════════════════════════════════════════════════════════════ */
.imp-phil {
  background: #fff;
  padding: 100px 80px 120px;
}

.imp-phil-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* ── Header ── */
.imp-phil-header {
  text-align: center;
  margin-bottom: 56px;
}

.imp-phil-title {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.3px;
  margin: 0 0 16px;
  line-height: 1.1;
}

.imp-phil-hl {
  color: #1a5c38;
}

.imp-phil-rule {
  width: 52px;
  height: 2px;
  background: #888;
  margin: 0 auto;
}

/* ── 2×2 grid ── */
.imp-phil-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* ── Card ── */
.imp-phil-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 340px;
  cursor: default;
}

.imp-phil-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
  -webkit-user-drag: none;
}

.imp-phil-card:hover .imp-phil-img {
  transform: scale(1.05);
}

/* Dark gradient overlay — light at top, stronger at bottom for text legibility */
.imp-phil-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.18) 40%,
      rgba(0, 0, 0, 0.52) 100%);
  z-index: 1;
}

/* ── Text content ── */
.imp-phil-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.imp-phil-num {
  display: block;
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.70);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  align-self: flex-start;
  /* push number to top */
  position: absolute;
  top: 28px;
  left: 28px;
}

.imp-phil-card-title {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 12px;
}

.imp-phil-card-desc {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(0.80rem, 1vw, 0.92rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0;
  max-width: 320px;
}

/* ══════════════════════════════════════════════════════════════
   ENVIRONMENTAL IMPACT
   ══════════════════════════════════════════════════════════════ */
.imp-env {
  background: radial-gradient(ellipse at 65% 35%, #1e5c36 0%, #0b2416 60%);
  padding: 100px 80px 120px;
}

.imp-env-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* ── Title ── */
.imp-env-title {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #fff;
  text-align: center;
  letter-spacing: -0.3px;
  margin: 0 0 56px;
  line-height: 1.1;
}

.imp-env-hl {
  color: #c8f135;
}

/* ── 3-col grid ── */
.imp-env-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
}

/* ══ BASE CARD ══ */
.imp-env-card {
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* ── Light cards (1 & 3) ── */
.imp-env-card--light {
  background: #f9faf7;
}

.imp-env-card-top {
  padding: 28px 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.imp-env-card-img-wrap {
  flex: 1;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  min-height: 220px;
  margin: 0;
  /* no side gaps — image fills card width flush */
}

.imp-env-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
  -webkit-user-drag: none;
}

.imp-env-card:hover .imp-env-card-img-wrap img {
  transform: scale(1.05);
}

/* ── Tag pill ── */
.imp-env-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #b8d970;
  border-radius: 50px;
  padding: 5px 13px 5px 9px;
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: #3a7a18;
  width: fit-content;
}

.imp-env-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ec62a;
  flex-shrink: 0;
}

.imp-env-tag--dark {
  border-color: rgba(0, 0, 0, 0.20);
  color: #1a3a08;
}

.imp-env-tag-dot--dark {
  background: #2a6010;
}

/* ── Card title ── */
.imp-env-card-title {

  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  margin: 0;
}

/* ══ FEATURED card (center, lime green) ══ */
.imp-env-card--featured {
  background: #c8f135;
}

.imp-env-card-img-wrap--featured {
  flex: 1;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  min-height: 260px;
}

.imp-env-card-img-wrap--featured img {
  border-radius: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Bottom text area of featured card */
.imp-env-card-bottom {
  padding: 24px 26px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.imp-env-card-title--featured {
  color: #0c2a06;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
}

/* ══════════════════════════════════════════════════════════════
   CIRCULARITY & RESOURCE RESPONSIBILITY
   ══════════════════════════════════════════════════════════════ */
.imp-circ {
  background: #fff;
  padding: 100px 80px 120px;
}

.imp-circ-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* ── Header row: title left | desc right ── */
.imp-circ-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  align-items: center;
  margin-bottom: 56px;
}

.imp-circ-title {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  font-weight: 800;
  color: #111;
  line-height: 1.15;
  letter-spacing: -0.3px;
  margin: 0;
}

.imp-circ-hl {
  color: #1a5c38;
}

.imp-circ-desc {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  font-weight: 400;
  color: #888;
  line-height: 1.72;
  margin: 0;
  max-width: 420px;
}

/* ── 3-col card grid ── */
.imp-circ-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ── Card: image background + floating white panel ── */
.imp-circ-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  height: 380px;
}

.imp-circ-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s ease;
  -webkit-user-drag: none;
}

.imp-circ-card:hover .imp-circ-img {
  transform: scale(1.05);
}

/* Floating white panel — left ~65%, sits over image */
.imp-circ-panel {
  position: absolute;
  top: 20px;
  left: 20px;
  bottom: 20px;
  width: 62%;
  background: #fff;
  border-radius: 16px;
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 2;
}

/* Tag */
.imp-circ-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #b8d970;
  border-radius: 50px;
  padding: 5px 13px 5px 9px;
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: #3a7a18;
  width: fit-content;
  white-space: nowrap;
}

.imp-circ-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ec62a;
  flex-shrink: 0;
}

/* Card title */
.imp-circ-card-title {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 800;
  color: #111;
  line-height: 1.22;
  margin: 0;
}

/* Card desc */
.imp-circ-card-desc {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(0.78rem, 0.95vw, 0.88rem);
  font-weight: 400;
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   SOCIAL & ECONOMIC IMPACT
   ══════════════════════════════════════════════════════════════ */
.imp-soc {
  background: #eef6e3;
  padding: 100px 80px 120px;
}

.imp-soc-inner {
  max-width: 1320px;
  margin: 0 auto;
}

/* ── Title ── */
.imp-soc-title {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.3px;
  margin: 0 0 56px;
  line-height: 1.1;
}

.imp-soc-hl {
  color: #4a8c1c;
}

/* ── 2-col body: image | accordion ── */
.imp-soc-body {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}

/* ── Image ── */
.imp-soc-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  line-height: 0;
}

.imp-soc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  -webkit-user-drag: none;
}

/* ── Accordion ── */
.imp-soc-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.imp-soc-item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
}

/* Trigger button */
.imp-soc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-tap-highlight-color: transparent;
}

.imp-soc-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(74, 140, 28, 0.10);
  color: #4a8c1c;
  flex-shrink: 0;
}

.imp-soc-label {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(0.88rem, 1.1vw, 1rem);
  font-weight: 600;
  color: #1a1a1a;
  flex: 1;
}

.imp-soc-plus {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: #888;
  line-height: 1;
  transition: transform 0.3s ease, color 0.3s;
  flex-shrink: 0;
}

.imp-soc-item.is-open .imp-soc-plus {
  transform: rotate(45deg);
  color: #4a8c1c;
}

/* Expand panel */
.imp-soc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 20px 0 70px;
}

.imp-soc-item.is-open .imp-soc-panel {
  max-height: 200px;
  padding: 0 20px 18px 70px;
}

.imp-soc-panel p {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  color: #555;
  line-height: 1.68;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════
   IMPACT CTA
   ══════════════════════════════════════════════════════════════ */
.imp-cta {
  position: relative;
  overflow: hidden;
  padding: 140px 80px;
  text-align: center;
  background: url('assets/images/impact-bg.webp') center / cover no-repeat;
}

/* Dark overlay to ensure text readability over the image */
.imp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 28, 16, 0.62);
  z-index: 0;
}

/* Diagonal grid texture — same as clients CTA */
.imp-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
  z-index: 1;
}

.imp-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
}

.imp-cta-title {
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: clamp(1.8rem, 3.8vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  letter-spacing: -0.3px;
  margin: 0 0 52px;
}

.imp-cta-hl {
  color: #b8f04a;
}

.imp-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.imp-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Gilroy', 'Inter', sans-serif;
  font-size: 0.96rem;
  font-weight: 600;
  padding: 16px 44px;
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.imp-cta-btn--primary {
  background: #c8f135;
  color: #1a1a1a;
  border: none;
}

.imp-cta-btn--primary:hover {
  background: #d4ff4a;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(180, 240, 40, 0.30);
}

.imp-cta-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.imp-cta-btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #fff;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .imp-hero {
    padding: 130px 48px 64px;
  }

  .imp-banner {
    padding: 0 40px 80px;
  }

  .imp-banner-card {
    height: 480px;
  }
}

@media (max-width: 1100px) {
  .imp-env {
    padding: 80px 40px 100px;
  }

  .imp-circ {
    padding: 80px 40px 100px;
  }

  .imp-circ-panel {
    width: 68%;
  }

  .imp-soc {
    padding: 80px 40px 100px;
  }

  .imp-soc-body {
    gap: 40px;
  }
}

@media (max-width: 860px) {
  .imp-cta {
    padding: 100px 32px;
  }

  .imp-cta-title {
    font-size: clamp(1.6rem, 5.5vw, 2.6rem);
  }

  .imp-soc {
    padding: 64px 20px 80px;
  }

  .imp-soc-body {
    grid-template-columns: 1fr;
  }

  .imp-soc-img-wrap {
    max-height: 300px;
  }

  .imp-circ {
    padding: 64px 20px 80px;
  }

  .imp-circ-header {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .imp-circ-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .imp-circ-panel {
    width: 72%;
  }

  .imp-env {
    padding: 64px 20px 80px;
  }

  .imp-env-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 520px;
    margin: 0 auto;
  }

  /* Light cards: horizontal row on mobile */
  .imp-env-card--light {
    flex-direction: row;
    align-items: stretch;
    height: 160px;
  }

  .imp-env-card-top {
    flex: 1;
    padding: 20px 18px;
    justify-content: center;
    gap: 10px;
  }

  .imp-env-card-img-wrap {
    width: 42%;
    flex: none;
    min-height: unset;
    border-radius: 0 22px 22px 0;
  }

  /* Featured card: image top, text bottom */
  .imp-env-card--featured {
    flex-direction: column;
  }

  .imp-env-card-img-wrap--featured {
    min-height: 180px;
    flex: none;
    border-radius: 22px 22px 0 0;
  }

  .imp-env-card-bottom {
    padding: 18px 20px 24px;
    flex: none;
  }

  .imp-env-card-title--featured {
    font-size: 1.3rem;
  }

  .imp-phil {
    padding: 72px 24px 88px;
  }

  .imp-phil-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .imp-phil-card {
    height: 260px;
  }

  .imp-phil-card-title {
    font-size: 1.1rem;
  }

  .imp-phil-card-desc {
    display: none;
  }

  /* too cramped on mobile */
}

@media (max-width: 540px) {

  /* Hero */
  .imp-hero {
    padding: 96px 20px 32px;
  }

  .imp-hero-top {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }

  .imp-hero-bottom {
    opacity: 1;
    transform: none;
    padding-left: 0;
  }

  .imp-back-pill {
    margin-top: 0;
  }

  .imp-heading {
    font-size: clamp(1.8rem, 7.5vw, 2.6rem);
  }

  /* Banner */
  .imp-banner {
    padding: 0 20px 64px;
  }

  .imp-banner-card {
    height: 380px;
    border-radius: 20px;
  }

  .imp-stat-box {
    padding: 18px 24px;
    border-radius: 14px;
  }

  .imp-stat-num {
    font-size: 2rem;
  }

  .imp-banner-stats {
    bottom: 24px;
    right: 20px;
    gap: 10px;
  }

  /* Philosophy */
  .imp-phil-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .imp-phil-card {
    height: 220px;
  }

  .imp-phil-card-title {
    font-size: 1.2rem;
  }

  .imp-phil-card-desc {
    display: block;
  }

  /* Env cards — keep horizontal row but tighter */
  .imp-env-card--light {
    height: 140px;
  }

  .imp-env-card-top {
    padding: 16px 14px;
    gap: 8px;
  }

  .imp-env-card-img-wrap {
    width: 40%;
  }

  .imp-env-card-title {
    font-size: 1rem;
  }

  .imp-env-tag {
    font-size: 0.68rem;
    padding: 4px 10px 4px 7px;
  }
}